Announcement

Collapse
No announcement yet.

secondary harddrives missing on 8.10

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    secondary harddrives missing on 8.10

    Hi folks:

    I've searched the web for 3 days now, but can't find answer to how to locate my harddrives with music on them. I used to see them via Dolphin before upgrading to 8.10, when I used 8.04. Now I can't find them anywhere on Dolphin. They were set to automount before the upgrade, and worked.

    Please help.

    Thanks!

    #2
    Re: secondary harddrives missing on 8.10

    Are the drives external, connected via USB, and are they 'Windows' formatted?
    Windows no longer obstructs my view.
    Using Kubuntu Linux since March 23, 2007.
    "It is a capital mistake to theorize before one has data." - Sherlock Holmes

    Comment


      #3
      Re: secondary harddrives missing on 8.10

      Originally posted by Snowhog
      Are the drives external, connected via USB, and are they 'Windows' formatted?
      The drives are internal, and are 'Windows' formatted. Thanks....One is SATA, and the other IDE.

      Comment


        #4
        Re: secondary harddrives missing on 8.10

        And I must say that the external 80GB harddrive that I forgot to mention does show up.

        Comment


          #5
          Re: secondary harddrives missing on 8.10

          So you have a desktop PC, yes? And you have three internal HDs, one that has Kubuntu installed (it boots), two that are "Windows" formats (Win XP or higher?), one being an IDE HD and the other a SATA HD, and one external USB HD that does show up in Kubuntu (is it a Linux formatted HD?). Is this all correct?

          And because it will be helpful, is the boot HD an IDE drive?
          Windows no longer obstructs my view.
          Using Kubuntu Linux since March 23, 2007.
          "It is a capital mistake to theorize before one has data." - Sherlock Holmes

          Comment


            #6
            Re: secondary harddrives missing on 8.10

            Originally posted by Snowhog
            So you have a desktop PC, yes? And you have three internal HDs, one that has Kubuntu installed (it boots), two that are "Windows" formats (Win XP or higher?), one being an IDE HD and the other a SATA HD, and one external USB HD that does show up in Kubuntu (is it a Linux formatted HD?). Is this all correct?

            And because it will be helpful, is the boot HD an IDE drive?
            Yes, to all your questions. It boots from a SATA harddrive. The external USB is formatted in Windows.

            Comment


              #7
              Re: secondary harddrives missing on 8.10

              Could you post your /etc/fstab please? Also the output of
              Code:
              mount -l
              Thanks.
              Once your problem is solved please mark the topic of the first post as SOLVED so others know and can benefit from your experience! / FAQ

              Comment


                #8
                Re: secondary harddrives missing on 8.10

                Originally posted by toad
                Could you post your /etc/fstab please? Also the output of
                Code:
                mount -l
                Thanks.
                Here is the output of mount -l
                root@Kbun4600:/etc# mount -l
                /dev/sdb5 on / type ext3 (rw,relatime,errors=remount-ro) []
                tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
                /proc on /proc type proc (rw,noexec,nosuid,nodev)
                sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
                varrun on /var/run type tmpfs (rw,nosuid,mode=0755)
                varlock on /var/lock type tmpfs (rw,noexec,nosuid,nodev,mode=1777)
                udev on /dev type tmpfs (rw,mode=0755)
                tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
                devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
                fusectl on /sys/fs/fuse/connections type fusectl (rw)
                lrm on /lib/modules/2.6.27-7-generic/volatile type tmpfs (rw,mode=755)
                /dev/sda1 on /sda1 type fuseblk (rw,noexec,nosuid,nodev,allow_other,blksize=4096) [400IDE]
                /dev/sdc1 on /sdc1 type fuseblk (rw,noexec,nosuid,nodev,allow_other,blksize=4096) [400GB]
                securityfs on /sys/kernel/security type securityfs (rw)
                binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)

                I can navigate to /etc. When I cd into fstab, I get:
                bash: cd: /fstab: No such file or directory

                Thanks a lot!

                Comment


                  #9
                  Re: secondary harddrives missing on 8.10

                  Yep, you cannot cd into fstab because it is a file Do a
                  Code:
                  cat /etc/fstab
                  and post the output.
                  Once your problem is solved please mark the topic of the first post as SOLVED so others know and can benefit from your experience! / FAQ

                  Comment


                    #10
                    Re: secondary harddrives missing on 8.10

                    Originally posted by toad
                    Yep, you cannot cd into fstab because it is a file Do a
                    Code:
                    cat /etc/fstab
                    and post the output.
                    Thanks so much. I've since used kate to open fstab and here is the output:

                    # /etc/fstab: static file system information.
                    #
                    # <file system> <mount point> <type> <options> <dump> <pass>
                    proc /proc proc defaults 0 0
                    # /dev/sda5
                    UUID=9e9d7522-18a8-4e81-adff-8133bf3f5ecc / ext3 nouser,relatime,errors=remount-ro,atime,auto,rw,dev,exec,suid 0 1
                    # /dev/sda6
                    UUID=cf53576b-1cc1-4410-b3a1-567c5a3e883e none swap sw 0 0
                    /dev/scd0 /media/cdrom0 udf,iso9660 user,utf8,atime,noauto,rw,dev,exec,suid 0 0
                    /dev/fd0 /media/floppy0 auto user,utf8,atime,auto,rw,dev,exec,suid 0 0
                    /dev/sda1 /sda1 auto nouser,atime,auto,rw,nodev,noexec,nosuid 0 0
                    /dev/sdc1 /sdc1 auto nouser,atime,auto,rw,nodev,noexec,nosuid 0 0

                    Comment


                      #11
                      Re: secondary harddrives missing on 8.10

                      Okay, the fstab lists those file systems to be mounted during boot. sda5 is your /, sda6 your swap and that is it really.

                      Could you post the output of
                      Code:
                      sudo blkid -L
                      This will list all available partitions seen by your system as is! Please tell us which you want mounted on boot.
                      Once your problem is solved please mark the topic of the first post as SOLVED so others know and can benefit from your experience! / FAQ

                      Comment


                        #12
                        Re: secondary harddrives missing on 8.10

                        Originally posted by toad
                        Okay, the fstab lists those file systems to be mounted during boot. sda5 is your /, sda6 your swap and that is it really.

                        Could you post the output of
                        Code:
                        sudo blkid -L
                        This will list all available partitions seen by your system as is! Please tell us which you want mounted on boot.
                        Thanks a lot again. Here is the output of sudo blkid -L
                        /dev/sda1 ntfs 400IDE /sda1 2C9404349403FF58
                        /dev/sdb1 ntfs 400GB (not mounted) 584CB4274CB3FDB6
                        /dev/sdc1 ntfs 400GB /sdc1 0A1C6D0D1C6CF4DB
                        /dev/sdb5 ext3 / 9e9d7522-18a8-4e81-adff-8133bf3f5ecc
                        /dev/sdb6 swap <swap> cf53576b-1cc1-4410-b3a1-567c5a3e883e

                        Comment


                          #13
                          Re: secondary harddrives missing on 8.10

                          Please tell us which you want mounted on boot.
                          Once your problem is solved please mark the topic of the first post as SOLVED so others know and can benefit from your experience! / FAQ

                          Comment


                            #14
                            Re: secondary harddrives missing on 8.10

                            Originally posted by toad
                            Please tell us which you want mounted on boot.
                            Thanks a lot again, and sorry for this relative late response. I'd like all the HDS mounted at bootup. I can't find the one that shows that it was mounted in Dolphin presently.

                            Thanks a lot!

                            Comment


                              #15
                              Re: secondary harddrives missing on 8.10

                              Somebody with a dual boot here come to the rescue please. Does 8.10 support ntfs out of the box? Can you supply a sample stanza for an nfts partition from your fstab?
                              Once your problem is solved please mark the topic of the first post as SOLVED so others know and can benefit from your experience! / FAQ

                              Comment

                              Working...
                              X