Announcement

Collapse
No announcement yet.

mount probleam

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

    mount probleam

    Hi!

    This may sound a stupid question, but sorry, this is my first time with a Linux Dist.
    I made a partition and installed Kubuntu on a the «c:» /dev/hda5 , that also has windows NTFS. Further i have a second HD also Windows NTFS /dev/hdb1.

    Tried to mount those NTFS partitions, both apear as enabled, but i get a
    "mont error 32" if i try to acess then


    Done
    sudo mkdir /media/windows
    sudo mount /dev/hda1 /media/windows/ -t ntfs -o umask=0222

    and i get:
    mount: /dev/hda1 already mounted or /media/windows busy

    What i´m i doing wrong, and were can o find a tutorial,faq for that prob?

    Thanks!


    #2
    Re: mount probleam

    You getting this error because your HDD is already mounted directory. open /media/hda1 to access your windows partition. if you want to mount it on /media/windows directory, you must unmount it first. type sudo umount /dev/hda1 then mount it to where you want. you can also edit your /etc/fstab file to make changes permanent. post the output of cat /etc/fstab file if you need more assistance.
    cheers!
    -=|From the desk of|=-
    «•´`•.(*•.¸(`•.¸ ¸.•´)¸.•*).•´`•»
    «•´¨*•.¸¸whoiam55.¸¸.•*¨`•»
    «•´`•.(¸.•´(¸.•* *•.¸)`•.¸).•´`•»
    Reg. Linux User # 400637

    Comment


      #3
      Re: mount probleam

      Thanks for your help whoiam55!
      Worked nice! Silly me!

      Comment


        #4
        Re: mount probleam

        Originally posted by whoiam55
        You getting this error because your HDD is already mounted directory. open /media/hda1 to access your windows partition. if you want to mount it on /media/windows directory, you must unmount it first. type sudo umount /dev/hda1 then mount it to where you want. you can also edit your /etc/fstab file to make changes permanent. post the output of cat /etc/fstab file if you need more assistance.
        OK, now i hav no clue how to make those changes permant. CAnt you help me on that?

        This is the output of

        # /etc/fstab: static file system information.
        #
        # <file system> <mount point> <type> <options> <dump> <pass>
        proc /proc proc defaults 0 0
        /dev/hda5 / reiserfs notail,atime,auto,rw,dev,exec,suid,nouser 0 1
        /dev/hda1 /media/hda1 ntfs auto,uid=1000,gid=1000,rw,users,quiet 0 0
        /dev/hdb1 /media/hdb1 ntfs defaults,uid=1000,gid=1000,auto,rw,nouser 0 0
        /dev/hda6 none swap sw 0 0
        /dev/hdc /media/cdrom0 udf,iso9660 user,noauto 0 0
        /dev/hdd /media/cdrom1 udf,iso9660 user,noauto 0 0
        /dev/fd0 /media/floppy0 auto ,atime,noauto,rw,dev,exec,suid,user 0 0

        hda1 and hdb1 keep desapering each reboot

        Comment


          #5
          Re: mount probleam

          Create a folder of / and name it windows then create two subfolder in this windows folder so you have /windows/c and /windows/d. change the entries in /etc/fstab file for /dev/hda1 and /dev/hdb1 like this.
          /dev/hda1 /windows/c ntfs ro,auto,umask=022 0 0
          /dev/hdb1 /windows/d ntfs ro,auto,umask=022 0 0
          , then type sudo umount -a && mount -a to unmount /dev/hda1 and /dev/hdb1 and mount them from old locations to new one. If all goes well you will be able to access both of your partitions (they will also automatically mount on every time you boot your computer)

          ps:Please don't use the RW access for NTFS partitions, unless you risk corrupting your data.
          cheers!
          -=|From the desk of|=-
          «•´`•.(*•.¸(`•.¸ ¸.•´)¸.•*).•´`•»
          «•´¨*•.¸¸whoiam55.¸¸.•*¨`•»
          «•´`•.(¸.•´(¸.•* *•.¸)`•.¸).•´`•»
          Reg. Linux User # 400637

          Comment

          Working...
          X