"init:sreadahead main process terminated with status 1 init"
and
"One or more of the mounts listed in /etc/fstab cannot yet be mounted:
(ESC for recovery shell)
/: waiting for /dev/disk/by-uuid/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
To solve the first issue find the follwing lines in your /etc/init/sreadahead.conf file
“start on starting mountall
stop on stopped rc” And replace the first line like this:
“#start on starting mountall
start on filesystem”To solve the second issue edit the following in your /etc/fstab file:
- Disable fsck on vfat by setting to "0" the value in the last column of you vfat entry this way
“UUID=XXXX-XXX /media/hda1 vfat defaults,utf8,umask=007,gid=46 0 0”
- Replace all UUID by /dev/sdxx
After this changes the error was still there, then I noticed that during startup my old kernels were the only option in the grub menu and I couldn´t access the one installed during the upgrade. Googling the issue resulted in a forum thread that describes this solution:
- Make your devices writable again:
“mount -n -o remount,rw /”
- Install broken packages (it took a while for me):
“sudo dpkg --configure -a”
- Now you should be able to reboot the system and access 9.10!
In case you want more info about the fstab file you can check this link.
That´s it for now!
- Install broken packages (it took a while for me):
“sudo dpkg --configure -a”
- Now you should be able to reboot the system and access 9.10!
In case you want more info about the fstab file you can check this link.
That´s it for now!