Hi
I've been searching around for a while but cannot seem to find anything that looks like my issue, so forgive me if this question has been asked before...
I recently installed 8.04 and was able to mount all my windows partitions shortly after installation. I have now played around a bit and upgraded and installed some items. I have a 1 Gig SATA drive (sdc1) which acts as a repository for all my media - music games and movies on my machine. I can still mount any other drive, but not the repository. I have a dual boot system with 64 bit Vista ultimate, and have booted Vista and the disk is accessible under Vista. The error I get in Dolphin is "Permissions Denied". When I try do do it as root the error changes to "Could not mount device. The reported error was: No such medium". This is what prompted me to boot Vista and check it out. The disk seems fine and was mountable before. Any ideas?
Everybody seems to ask about fstab in similar cases - so here goes:
You'll see evidence there of me trying to create mount points for ISO files - i'll get to that later, got bigger fish to fry right now
I've been searching around for a while but cannot seem to find anything that looks like my issue, so forgive me if this question has been asked before...
I recently installed 8.04 and was able to mount all my windows partitions shortly after installation. I have now played around a bit and upgraded and installed some items. I have a 1 Gig SATA drive (sdc1) which acts as a repository for all my media - music games and movies on my machine. I can still mount any other drive, but not the repository. I have a dual boot system with 64 bit Vista ultimate, and have booted Vista and the disk is accessible under Vista. The error I get in Dolphin is "Permissions Denied". When I try do do it as root the error changes to "Could not mount device. The reported error was: No such medium". This is what prompted me to boot Vista and check it out. The disk seems fine and was mountable before. Any ideas?
Everybody seems to ask about fstab in similar cases - so here goes:
Code:
# /etc/fstab: static file system information. # # <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc defaults 0 0 # /dev/sdd2 UUID=d4243079-e7d4-4d3d-bc5b-9d6a95538ce9 / ext3 nouser,relatime,errors=remount-ro,atime,auto,rw,dev,exec,suid 0 1 # /dev/sdd3 UUID=6a650e6d-8af6-4a0a-8ed7-a0b31dcd6477 none swap sw 0 0 /dev/scd0 /media/cdrom0 udf,iso9660 user,utf8,atime,noauto,rw,dev,exec,suid 0 0 LABEL=isofile /media/isofile auto nouser,atime,noauto,ro,nodev,noexec,nosuid 0 0 <device> isofile iso9660 noauto,loop 0 0 <device> cdrom0 auto nouser,atime,noauto,rw,nodev,noexec,nosuid 0 0 LABEL=Repository <mount\040point> auto nouser,noauto,atime,auto,rw,nodev,noexec,nosuid 0 0 LABEL=Repository /usr/mnt/repository auto nouser,noauto,atime,rw,nodev,noexec,nosuid 0 0
Comment