-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInstallApps.sh
51 lines (41 loc) · 1.07 KB
/
InstallApps.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/bash
### Installs collection of Apps
sudo dnf update
### Repositories
# RPMFusion
su -c 'dnf install -y --nogpgcheck \
http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E\
%fedora).noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusi\
on-nonfree-release-$(rpm -E %fedora).noarch.rpm'
# Google
su -c 'cat << EOF > /etc/yum.repos.d/google-chrome.repo
[google-chrome]
name=google-chrome - \$basearch
baseurl=http://dl.google.com/linux/chrome/rpm/stable/\$basearch
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
EOF'
# Numix
su -c 'dnf copr -y enable satya164/numix'
su -c 'dnf update'
### Group Install
su -c 'dnf groupinstall -y 'Development Tools' 'Fedora Eclipse' 'Engineering and Scientific''
### Apps
su -c 'dnf install -y \
google-chrome-stable \
unrar \
p7zip \
pithos \
gnome-tweak-tool \
vlc \
steam \
nautilus-open-terminal \
deluge \
snes9x \
yumex-dnf \
mariadb-server \
httpd \
php php-mysql'
## Guide to setup LAMP
google-chrome-stable https://www.atlantic.net/community/howto/install-lamp-fedora-22/