SarCode / Ubuntu-Software-Utilities

Instructions and Commands to install software and have utilities on Ubuntu Machine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sarcode

LinkedIn

Ubuntu-Software

Instructions and Commands to install softwares on Ubuntu Machine

Anaconda

Install anaconda in few easy steps


Clean your system

Removes:

  • Cache
  • Unwanted libraries
  • Binaries
  • Kernel etc

Majority of the junk is deleted.
sudo apt-get autoclean -y && sudo apt-get autoremove -y


Complete Update and Upgrade your system

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


Ever closed a terminal that was running important command?

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.


Linux Cheat Sheet

Do more than you do on linux with this cheat-map

About

Instructions and Commands to install software and have utilities on Ubuntu Machine


Languages

Language:Python 86.1%Language:Shell 13.9%