
apt - How do I search for available packages from the command …
apt-file search part_of_package_name | grep another_part_of_name Example of searching for ssh server package if I do not know the name is ssh-server or sshserver or server-ssh etc.: apt …
apt - Installing packages into local directory? - Ask Ubuntu
2012年9月27日 · This is, in general, not doable, because you would mess with the apt dependencies system. There are two solutions: Install the source package, change into the …
What protocol does apt-get use? - Ask Ubuntu
2018年3月7日 · See apt-secure(8) for details. https (apt-transport-https(1)) The https scheme specifies an HTTPS server for an archive and is very similar in use and available options to …
apt - Installing suggested/recommended packages? - Ask Ubuntu
2014年2月21日 · I ran the following code and got this package needs these packages, now it also says these packages are suggested, and theses are recommended. How do I get those up to …
apt - How to delete broken packages in ubuntu - Ask Ubuntu
2014年9月17日 · sudo apt-get update then cleanup any partial packages . sudo apt-get autoclean Now clean the apt cache. sudo apt-get clean Now remove any unnecessary dependancies . …
apt - Find (and reinstall) packages with corrupted files (without ...
sudo apt-get install --reinstall $(dpkg -S $(sudo debsums -c) | cut -d : -f 1 | sort -u) Reinstalls packages with changed files. My disk were randomly corrupted while I was experimenting with …
Is Not Installed (Residual config) safe to remove all?
2015年5月6日 · So, when you remove package(s) usually by using Ubuntu-Software-Center or by sudo apt-get remove, it leaves its configuration files on system. From community help , While …
How to list installed package and its details on ubuntu?
apt list --manual-installed | awk -F/ -v ORS=" " 'NR>1 {print $1}' > apt_packages.txt Now all your apt-packages are ready to install on another or new installed Ubuntu system. sudo apt-get …
apt - How to list manually installed packages? - Ask Ubuntu
2017年8月10日 · Commandline: apt install postgresql-9.5-plv8 Commandline: aptdaemon role='role-install-file' sender=':1.85' Commandline: apt install task Commandline: apt …
Using apt-get to remove packages and dependencies
2015年12月12日 · Yes, there is a possibility of adverse side effects which I noted. I find myself using this method from time to time as a last ditch effort when remove PACKAGENAME, …