this post was submitted on 27 Feb 2024
100 points (91.0% liked)

Linux

55478 readers
744 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Successful_Try543@feddit.de 14 points 1 year ago* (last edited 1 year ago) (1 children)

If you can boot into terminal session, e.g. by pressing Ctrl + Alt + F2, you can try:

sudo apt clean
sudo apt -f install
sudo apt clean
sudo apt dist-upgrade
sudo apt clean

If sudo apt -f install doesn't work properly, you can create an apt-cache folder on, e.g. your home partition, assuming this is the one with sufficient amounts of free storage.

sudo apt clean
sudo mkdir /home/apt-cache
sudo nano /etc/fstab

In the fstab you specify where this directory shall be mounted:

/home/apt-cache    /var/cache/apt/archives    none    bind    0    0

Now you copy the files in place and mount the partition:

sudo cp -r /var/cache/apt/archives/* /home/apt-cache
sudo mount -a

Nou you should be able to run the fix-installation and update commands without the errors:

sudo apt -f install
sudo apt dist-upgrade
[–] mariah@feddit.rocks 12 points 1 year ago (1 children)
[–] Successful_Try543@feddit.de 2 points 1 year ago (1 children)
[–] mariah@feddit.rocks 1 points 1 year ago (1 children)
[–] Successful_Try543@feddit.de 1 points 1 year ago (1 children)

Do you have sufficient disk space now? Or did the mounting procedure work? Did sudo apt -f install work?

[–] mariah@feddit.rocks 1 points 1 year ago (1 children)

Mounting and sudo apt -f install worked. So does stuff install in /home/apt-cache now? I do want to combine / and /home

[–] Successful_Try543@feddit.de 1 points 1 year ago (1 children)

My recommendation would be to copy your entire home directory with rsync -a onto another (external) drive, as you anyway don't want to modify your partitions without having a backup. Then boot into a live distribution and open a partition editor, delete the home partition (the data on it will be lost), expand the root partition (/) onto the entire disk. Finally copy the backup back into the home folder using rsync -a

[–] mariah@feddit.rocks 2 points 1 year ago (1 children)

Ok. Does rync -a copy hardlinks

[–] Successful_Try543@feddit.de 1 points 1 year ago* (last edited 1 year ago) (1 children)

No, only softlinks. See it's man page. AfaIk, rsync -a is usually used for backup.

[–] mariah@feddit.rocks 1 points 1 year ago