Last active
March 22, 2019 10:20
-
-
Save arslan-ahmad/8824fa555c3050564fc4a44424c0b547 to your computer and use it in GitHub Desktop.
This gist file will allow you to Install Google Chrome, Skype and VLC all together with one bash script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# install google chrome | |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
sudo dpkg -i --force-depends google-chrome-stable_current_amd64.deb | |
sudo apt-get install -f | |
sudo rm -rf google-chrome-stable_current_amd64.deb | |
#install skype | |
wget https://go.skype.com/skypeforlinux-64.deb | |
sudo dpkg -i --force-depends skypeforlinux-64.deb | |
sudo apt-get install -f | |
sudo rm -rf skypeforlinux-64.deb | |
#install vlc | |
sudo add-apt-repository ppa:videolan/master-daily | |
sudo apt install vlc | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Instructions
Download the file
Open the terminal and go to the directory of the downloaded file
Run the following command:
sudo chmod +x ubuntuEssentials.sh
Run this command:
sudo ./ubuntuEssentials.sh