Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to remove software from ubuntu

sudo apt-get purge --auto-remove package-name
Comment

how to uninstall programms on ubuntu

sudo apt remove package-name
sudo apt purge package-name
Comment

how to uninstall program on ubuntu

##all the packages installed on your system
https://vitux.com/how-to-uninstall-programs-from-your-ubuntu-system/
dpkg --list
sudo apt-get remove package-name
or
sudo apt-get purge package-name
or
sudo apt-get autoremove
Comment

how to uninstall a software in ubuntu

$ dpkg --list
Comment

how to uninstall software from ubuntu

sudo apt-get --purge remove program-name/package-name
Comment

how to uninstall in ubuntu

sudo apt-get remove package-name // to remove the package itself
sudo apt-get purge package-name // to remove the dependencies installed with the package automatically
Comment

PREVIOUS NEXT
Code Example
Shell :: unix change timestamp of file 
Shell :: copy a file from docker container to local machine 
Shell :: install jenkins in linux 
Shell :: lp list printers 
Shell :: Solve Cannot Install Dependency Error for NPM install 
Shell :: docker desktop kubernetes dashboard 
Shell :: check if service is running server 
Shell :: ssh scp 
Shell :: yarn 2 upgrade all packages 
Shell :: how to grep curl verbose 
Shell :: nohup redirect output 
Shell :: firewall-cmd add service 
Shell :: git push -u rejected 
Shell :: how to install prettier globally on mac 
Shell :: adb screenrecord 
Shell :: git undo merge 
Shell :: http sever with ssl start 
Shell :: get filename from path powershell 
Shell :: tar extract to specific location 
Shell :: node global install 
Shell :: how to copy file in root directory 
Shell :: bash get last field in line 
Shell :: copy directory command in linux 
Shell :: brew install xcode 
Shell :: git discard all unpushed commits 
Shell :: tail -f linux last 100 lines 
Shell :: linux while loop 
Shell :: clone specific branch git 
Shell :: install aws cli version 2 mac 
Shell :: linux wifi connected but no internet 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =