Skip to content

Instantly share code, notes, and snippets.

@fnovoac
Last active July 28, 2020 16:36
Show Gist options
  • Save fnovoac/9109eb12439fdfc51a21fab8bb139ee0 to your computer and use it in GitHub Desktop.
Save fnovoac/9109eb12439fdfc51a21fab8bb139ee0 to your computer and use it in GitHub Desktop.
# create two local folders
mkdir -p ~/media/plex/{config,data}
# list all the packages installed on your system
dpkg --list
# remove a package
sudo apt-get remove “package-name”
# remove a package and any personalized settings
sudo apt-get purge “package-name”
# remove any dependencies such as the applications and libraries used by the package
sudo apt-get autoremove
# run a file copy in the background
cp file.txt file.txt.bak&
# listar tareas jcutandose en fondo
jobs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment