Last active
July 28, 2020 16:36
-
-
Save fnovoac/9109eb12439fdfc51a21fab8bb139ee0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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