Apt-Get system completely broken. possible to completely reinstall it? [closed]
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
3
down vote
favorite
I just recently noticed my apt-get system is broken. I have tried everything I can to fix it but everything I'm told just ends up with a message saying that the apt-get system is corrupt and unfixable. When I try to install a package, it says it can't find it. How can I completely reinstall apt-get? Is there even such a thing?
apt
closed as unclear what you're asking by Ravan, Pilot6, Charles Green, hg8, David Foerster Dec 23 '15 at 10:49
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |Â
up vote
3
down vote
favorite
I just recently noticed my apt-get system is broken. I have tried everything I can to fix it but everything I'm told just ends up with a message saying that the apt-get system is corrupt and unfixable. When I try to install a package, it says it can't find it. How can I completely reinstall apt-get? Is there even such a thing?
apt
closed as unclear what you're asking by Ravan, Pilot6, Charles Green, hg8, David Foerster Dec 23 '15 at 10:49
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
1
could you please do a sudo apt-get update and copy paste the result
â albertoefg
Dec 22 '15 at 4:07
What is your Ubuntu architecture? amd64 or i386?
â Tung Tran
Dec 22 '15 at 4:32
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I just recently noticed my apt-get system is broken. I have tried everything I can to fix it but everything I'm told just ends up with a message saying that the apt-get system is corrupt and unfixable. When I try to install a package, it says it can't find it. How can I completely reinstall apt-get? Is there even such a thing?
apt
I just recently noticed my apt-get system is broken. I have tried everything I can to fix it but everything I'm told just ends up with a message saying that the apt-get system is corrupt and unfixable. When I try to install a package, it says it can't find it. How can I completely reinstall apt-get? Is there even such a thing?
apt
apt
asked Dec 22 '15 at 4:06
![](https://i.stack.imgur.com/Wc1GW.png?s=32&g=1)
![](https://i.stack.imgur.com/Wc1GW.png?s=32&g=1)
ThatPixelCherry
184
184
closed as unclear what you're asking by Ravan, Pilot6, Charles Green, hg8, David Foerster Dec 23 '15 at 10:49
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
closed as unclear what you're asking by Ravan, Pilot6, Charles Green, hg8, David Foerster Dec 23 '15 at 10:49
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
1
could you please do a sudo apt-get update and copy paste the result
â albertoefg
Dec 22 '15 at 4:07
What is your Ubuntu architecture? amd64 or i386?
â Tung Tran
Dec 22 '15 at 4:32
add a comment |Â
1
could you please do a sudo apt-get update and copy paste the result
â albertoefg
Dec 22 '15 at 4:07
What is your Ubuntu architecture? amd64 or i386?
â Tung Tran
Dec 22 '15 at 4:32
1
1
could you please do a sudo apt-get update and copy paste the result
â albertoefg
Dec 22 '15 at 4:07
could you please do a sudo apt-get update and copy paste the result
â albertoefg
Dec 22 '15 at 4:07
What is your Ubuntu architecture? amd64 or i386?
â Tung Tran
Dec 22 '15 at 4:32
What is your Ubuntu architecture? amd64 or i386?
â Tung Tran
Dec 22 '15 at 4:32
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
3
down vote
accepted
You can download apt packages from Ubuntu repos and install them manually.
At first, create a directory in ~/Downloads
and go into it:
mkdir ~/Downloads/apt-packs
cd ~/Downloads/apt-packs
And then download all apt packages corresponding to your architecture (amd64 or i386). For example, you have amd64 (Ubuntu 64bit):
Download following deb packages for apt (apt and its dependencies):
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-inst2.0_1.1.5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-pkg5.0_1.1.5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/apt-utils_1.1.5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/apt_1.1.5_amd64.deb
Finally, install them all with dpkg
:
sudo dpkg -i *.deb
I replace the version from 1.1.5 to 1.2.25 and it works too
â Yu Jiaao
Dec 25 '17 at 1:12
@YuJiaao yes that was the version I provided at that time. Now you can use the latest version.
â Tung Tran
Dec 25 '17 at 1:17
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
You can download apt packages from Ubuntu repos and install them manually.
At first, create a directory in ~/Downloads
and go into it:
mkdir ~/Downloads/apt-packs
cd ~/Downloads/apt-packs
And then download all apt packages corresponding to your architecture (amd64 or i386). For example, you have amd64 (Ubuntu 64bit):
Download following deb packages for apt (apt and its dependencies):
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-inst2.0_1.1.5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-pkg5.0_1.1.5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/apt-utils_1.1.5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/apt_1.1.5_amd64.deb
Finally, install them all with dpkg
:
sudo dpkg -i *.deb
I replace the version from 1.1.5 to 1.2.25 and it works too
â Yu Jiaao
Dec 25 '17 at 1:12
@YuJiaao yes that was the version I provided at that time. Now you can use the latest version.
â Tung Tran
Dec 25 '17 at 1:17
add a comment |Â
up vote
3
down vote
accepted
You can download apt packages from Ubuntu repos and install them manually.
At first, create a directory in ~/Downloads
and go into it:
mkdir ~/Downloads/apt-packs
cd ~/Downloads/apt-packs
And then download all apt packages corresponding to your architecture (amd64 or i386). For example, you have amd64 (Ubuntu 64bit):
Download following deb packages for apt (apt and its dependencies):
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-inst2.0_1.1.5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-pkg5.0_1.1.5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/apt-utils_1.1.5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/apt_1.1.5_amd64.deb
Finally, install them all with dpkg
:
sudo dpkg -i *.deb
I replace the version from 1.1.5 to 1.2.25 and it works too
â Yu Jiaao
Dec 25 '17 at 1:12
@YuJiaao yes that was the version I provided at that time. Now you can use the latest version.
â Tung Tran
Dec 25 '17 at 1:17
add a comment |Â
up vote
3
down vote
accepted
up vote
3
down vote
accepted
You can download apt packages from Ubuntu repos and install them manually.
At first, create a directory in ~/Downloads
and go into it:
mkdir ~/Downloads/apt-packs
cd ~/Downloads/apt-packs
And then download all apt packages corresponding to your architecture (amd64 or i386). For example, you have amd64 (Ubuntu 64bit):
Download following deb packages for apt (apt and its dependencies):
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-inst2.0_1.1.5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-pkg5.0_1.1.5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/apt-utils_1.1.5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/apt_1.1.5_amd64.deb
Finally, install them all with dpkg
:
sudo dpkg -i *.deb
You can download apt packages from Ubuntu repos and install them manually.
At first, create a directory in ~/Downloads
and go into it:
mkdir ~/Downloads/apt-packs
cd ~/Downloads/apt-packs
And then download all apt packages corresponding to your architecture (amd64 or i386). For example, you have amd64 (Ubuntu 64bit):
Download following deb packages for apt (apt and its dependencies):
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-inst2.0_1.1.5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/libapt-pkg5.0_1.1.5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/apt-utils_1.1.5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/apt_1.1.5_amd64.deb
Finally, install them all with dpkg
:
sudo dpkg -i *.deb
edited Dec 22 '15 at 5:02
answered Dec 22 '15 at 4:41
![](https://i.stack.imgur.com/QUt0k.jpg?s=32&g=1)
![](https://i.stack.imgur.com/QUt0k.jpg?s=32&g=1)
Tung Tran
2,6761925
2,6761925
I replace the version from 1.1.5 to 1.2.25 and it works too
â Yu Jiaao
Dec 25 '17 at 1:12
@YuJiaao yes that was the version I provided at that time. Now you can use the latest version.
â Tung Tran
Dec 25 '17 at 1:17
add a comment |Â
I replace the version from 1.1.5 to 1.2.25 and it works too
â Yu Jiaao
Dec 25 '17 at 1:12
@YuJiaao yes that was the version I provided at that time. Now you can use the latest version.
â Tung Tran
Dec 25 '17 at 1:17
I replace the version from 1.1.5 to 1.2.25 and it works too
â Yu Jiaao
Dec 25 '17 at 1:12
I replace the version from 1.1.5 to 1.2.25 and it works too
â Yu Jiaao
Dec 25 '17 at 1:12
@YuJiaao yes that was the version I provided at that time. Now you can use the latest version.
â Tung Tran
Dec 25 '17 at 1:17
@YuJiaao yes that was the version I provided at that time. Now you can use the latest version.
â Tung Tran
Dec 25 '17 at 1:17
add a comment |Â
1
could you please do a sudo apt-get update and copy paste the result
â albertoefg
Dec 22 '15 at 4:07
What is your Ubuntu architecture? amd64 or i386?
â Tung Tran
Dec 22 '15 at 4:32