We're asking you to run fsck in recovery mode for every partition you have. I doubt you have any disk errors, but I want to confirm this first. Only then will I walk you through the steps for remounting your file system as read-write so that you can fix the broken packages.
The output you showed in post #11 indicates that /dev/sda3 and /dev/sda6 have no errors. This is good. Now check your other partitions. The next question, of course, is "What are they called?" Allow me to tutor you a bit more. In the past, before the advent of UEFI and GPT, we could use the fdisk -l command for a nice, clean list. This won't work on newer machines with GPT style disks, and gdisk, the GPT partition editor, doesn't have a nice clean output. sudo parted -l works for both types of disk. Another way is to simply look directly at the list of devices. Here's how:
We are interested in the items that end with numbers. The above is from my machine, which you can see has three partitions: /dev/sda1, /dev/sda2, and /dev/sda3.
On your machine, while in recovery mode, run the same command: ls -l /dev/sd*. For each item that ends with a number, run fsck and indicate the partition name in the command. Continuing to use my machine as an example, that would be these three commands:
Report back here with the results. Once we confirm that your partitions are healthy, I'll let you know what to do next.
The output you showed in post #11 indicates that /dev/sda3 and /dev/sda6 have no errors. This is good. Now check your other partitions. The next question, of course, is "What are they called?" Allow me to tutor you a bit more. In the past, before the advent of UEFI and GPT, we could use the fdisk -l command for a nice, clean list. This won't work on newer machines with GPT style disks, and gdisk, the GPT partition editor, doesn't have a nice clean output. sudo parted -l works for both types of disk. Another way is to simply look directly at the list of devices. Here's how:
Code:
steve@t520:~$ [B]ls -l /dev/sd*[/B] brw-rw---- 1 root disk 8, 0 Jan 30 19:54 /dev/sda brw-rw---- 1 root disk 8, 1 Jan 30 19:40 /dev/sda1 brw-rw---- 1 root disk 8, 2 Jan 30 19:40 /dev/sda2 brw-rw---- 1 root disk 8, 3 Jan 30 19:40 /dev/sda3
On your machine, while in recovery mode, run the same command: ls -l /dev/sd*. For each item that ends with a number, run fsck and indicate the partition name in the command. Continuing to use my machine as an example, that would be these three commands:
Code:
fsck /dev/sda1 fsck /dev/sda2 fsck /dev/sda3
Comment