Skip to content

Instantly share code, notes, and snippets.

@arslan-ahmad
Last active March 22, 2019 10:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arslan-ahmad/8824fa555c3050564fc4a44424c0b547 to your computer and use it in GitHub Desktop.
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
#!/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
@arslan-ahmad
Copy link
Author

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment