Instructions and Commands to install softwares on Ubuntu Machine
Install anaconda in few easy steps
Removes:
- Cache
- Unwanted libraries
- Binaries
- Kernel etc
Majority of the junk is deleted.
sudo apt-get autoclean -y && sudo apt-get autoremove -y
Use command:
sudo apt-get update -y && sudo apt-get upgrade -y && sudo apt-get dist-upgrade -y && sudo apt-get upgrade --with-new-pkgs -y
All of us have at-least once accidentally closed a terminal which has our command running, and then we have to re-iniliaze the whole setup.
Well I give you a life-long solution to it.
nohup
command
Example:
nohup sudo apt-get upgrade
Now, even if I close the terminal, the command won't stop and will work on the background.
Nice !
You can use it to run software via terminal and then close the terminal.
Example:
nohup spyder
Just simply, run a command and close the tab.
Do more than you do on linux with this cheat-map