One line of your /etc/fstab was wrong:
Code:
For cat /etc/fstab:
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
/dev/sdb1 / ext4 errors=remount-ro 0 1
/dev/sdc1 /media/iKore ntfs-3g defaults,nosuid,nodev,locale=en_US.UTF-80 0
/dev/sda5 none swap sw 0 0
The correct line would be:
Code:
For cat /etc/fstab:
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
/dev/sda1 / ext4 errors=remount-ro 0 1
/dev/sdc1 /media/iKore ntfs-3g defaults,nosuid,nodev,locale=en_US.UTF-80 0
/dev/sda5 none swap sw 0 0
In any case, I recommend do not use absolute references for partitions ( /dev/sda1 ) but UUIDS:
Code:
For cat /etc/fstab:
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
UUID=c5814e7f-8c12-4bc7-9a4f-f966e807cefd / ext4 errors=remount-ro 0 1
UUID=5C8C3FF48C3FC6F4 /media/iKore ntfs-3g defaults,nosuid,nodev,locale=en_US.UTF-80 0 0
UUID=63be084f-4dfc-4e91-b77f-483e48e90fff none swap sw 0 0
Congratulations if you were able to fix your problem.
Bookmarks