Hello every one,
Today I am going to show you how to create ".txt" file for multiple software installation
I know when any one newly install Linux OS the hard to install one by one software
I am going to show you a easiest way
first you need to create one" .txt " extinction file
example.txt
Then copy this code and paste in " example.txt " file
sudo dnf -y updateecho "================================================================"
echo " Update Successfully Installed "
echo "================================================================"echo "==========================================================="
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg –i google-chrome-stable_current_amd64.deb
echo "================================================================"
echo " chrome Successfully Installed "
echo "================================================================"
sudo dnf -y install vim
echo "================================================================="
echo " Vim Successfully Installed "
echo "================================================================="
sudo dnf -y install vlc
echo "================================================================="
echo " Vlc Player Successfully Installed "
echo "================================================================="
sudo dnf -y update && sudo apt-get -y install skype
echo "================================================================="
echo " Skype Successfully Installed "
echo "================================================================="
sudo -y add-apt-repository ppa:webupd8team/atom
sudo dnf -y install atom
echo"=================================================================="
echo " Atom Successfully Installed "
echo"=================================================================="
sudo dnf -y install aptitude
echo "==========================================================="
echo " Aptitude Successfully Installed "
then save the "example.txt" file
then goto Terminal & type
injectorX@sangram ~$ chmod 744 example.txt
why need chmod 744?
chmod 744 means Everybody can read, write to, or execute example.txt.
>>$ ./example.txt
now your all software install one by one automatically
Thanks,
happy coding :-)
Thanks Sangram It Working
ReplyDeletethanks brother
Delete