Post(s) tagged Linux Mint
How to completely remove application from command line in Debian system
Using the below command to remove the application completely from any Debian based operating systems
sudo apt-get purge [packagename]
sudo apt-get autoclean
sudo apt-get autoremove
Note: remove the package name with application name going to remove
Posted on February 01, 2022
How to change linux mint PC Host Name
Open a terminal and enter sudo -s
to enable the root privileges.
user@user-pc:~$ sudo -s
Next, edit the hostname using the below command
root@user-pc:~$ nano /etc/hostname
It will show the existing hostname (PC name). Now you can edit it and save using ctrl + x
command.
Once restart your PC your hostname (PC name) will update automatically.
Posted on March 20, 2022