How do I reinstall my apartment?
You can reinstall a package with sudo apt-get install –reinstall packagename . This completely removes the package (but not the packages that depend on it), then reinstalls the package. This can be convenient when the package has many reverse dependencies.
How do I fix a corrupted package?
Try these fixes to see if you can get to the bottom of your corrupt file error.
- Perform a check disk on the hard drive. Running this tool scans the hard drive and attempts to recover bad sectors.
- Use the CHKDSK command.
- Use the SFC /scannow command.
- Change the file format.
- Use file repair software.
How to force reinstall a package in Debian?
apt-get force reinstall package. The syntax is: apt-get –reinstall install PackageNameHere. apt-get –reinstall install Package1 Package2. The –reinstall option re-install packages that are already installed and at the newest version. Pro tip: Backup all configuration files before reinstalling packages.
How to reinstall a package with a corrupted file?
The script given by PeniWize works great for corrupted files, but does not take care of packages with missing files, because debsums reports them to stderr. To reinstall packages with missing files, this worked for me: Is there a Ubuntu sanity check?: package debsums can compute MD5 hashes and compare against the deb package.
How to reinstall a package using apt-get?
How to reinstall a package using apt-get. Let us see some example that shows how to reinstall package and its installed dependencies on a Debian or Ubuntu Linux. The following command will reinstall rsync package. Open a terminal application and then type: $ sudo apt-get –reinstall install rsync OR # apt-get –reinstall install rsync Sample
What to do if you have overwritten a package in Debian?
If you’re a tinkerer and hand-edit some files for some quick tests, or if you tend to re-install newer versions of some packages from the sources, you might have overwritten some packaged files and it would be good to be able to detect this (and remedy to the problem). debsumsis the tool that makes it possible.