>Sorry, might be /proc/mounts. # cat /proc/mounts proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0 udev /dev devtmpfs rw,nosuid,nodev,noexec,relatime 0 0 devpts /dev/pts devpts rw,nosuid,relatime,gid=5,mode=620 0 0 sysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0 /dev/sda3 / ext4 ro,relatime,data=ordered 0 0 selinuxfs /sys/fs/ selinux selinuxfs rw,relatime 0 0 tmpfs /run tmpfs rw,nodev,relatime,size=3277012k,mode=755 0 0 # mount -t ext4 -o remount,rw /dev/sda3 # cat /proc/mounts […] /dev/sda3 / ext4 rw,relatime,data=ordered 0 0 […]
So /proc/mounts is the file giving the correct information. As we can see /dev, /proc, /sys, /run are existing and mounted as planned (but maybe not fully populated?). But we can also see no other partitions are mounted. Strange is the output of mount ans lsblk both before and after remounting of /dev/sda3: # mount /dev/sdc1 on /home type ext4 (rw) /dev/sdc2 on /var type ext4 (rw) /dev/sda3 on / type none (rw) /dev/sda2 on /boot type vfat (rw) # lsblk (shortened) sda2 /boot sda3 / sdc1 /home sdc2 /var Clearly this is not the case, since all directories exist without beeing mounted.Therefore some (important files are missing). >Am typing this on my phone, so can't double check. You got the right file :) >What does your /etc/fstab look like? condensed output of # cat /etc/fstab /dev/sda2 /boot vfat defaults,ro 1 2 /dev/sda3 / ext4 defaults 0 1 /dev/sdb2 none swap sw 0 0 /dev/sdc1 /home ext4 defaults 0 0 /dev/sdc2 /var ext4 defaults 0 0 /etc/fstab isn't beautiful, because I have done some trial and error here (not the best idea I know). >Silly question, but just to be sure. >You have followed the handbook from A to Z and haven't skipped >anything? To be honest: I did not read everything this time, because I installed a somewhat working version yesterday. That time I read it all, but I copied to much from an older install (since this is a reinstall after a software upgrade), so the previous attempt did not work to well (quite some permission problems and some other small copy&paste errors). So this time O did it all again without copy&paste. The result is I skipped formating, because I just wiped the partitions from the live-cd. But I do not think I forgot something (*but* it could have happened). P.S.: I think I will learn a lot here, but if it takes too much of your time or you don't have an idea, it would not be the a huge problem for me to make yet an other install and hope it will work. Holger Wünsche