Find the answer to your Linux question:
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 17
I've got SUSE11 running great all drivers and software is running fine. I can see both of my hard drives in the hardware manager and partitioning sections of yast. But ...
  1. #1
    Just Joined! micro2's Avatar
    Join Date
    Feb 2008
    Posts
    73

    Can't see harddrive...

    I've got SUSE11 running great all drivers and software is running fine. I can see both of my hard drives in the hardware manager and partitioning sections of yast. But I can see it if I go into the file manager to pull files from it. It's FAT32 cause it has files from and old windows system on it. I wish to move them over onto bigger hard drive and then make it part of this system.........

  2. #2
    Just Joined! micro2's Avatar
    Join Date
    Feb 2008
    Posts
    73
    Can anyone tell me how to see this drive.... ???

  3. #3
    Linux Guru gogalthorp's Avatar
    Join Date
    Oct 2006
    Location
    West (by God) Virginia
    Posts
    3,105
    Are the partitions mounted?

  4. #4
    Just Joined! micro2's Avatar
    Join Date
    Feb 2008
    Posts
    73
    I tried to do that earlier I think by typing - mount -t /dev/sdb /mnt - and it said it was already mounted. In the file browser it showed up as a usb drive that I can't do anything with so I think my command was wrong or something but I can't even get ride of it now...

    the hard drive show up in the partition software as that - sdb and sdb1 not sure which one to mount I tried both.

  5. #5
    Linux Engineer scrarfussi's Avatar
    Join Date
    Aug 2006
    Posts
    1,029
    post contents of fdisk-l here

    my opensuse way of mounting is go to yast -> system -> partioner choose the drive labeled fat32 a window pops up here you can set up the mount point eg /Shared /windows what ever you decide under fstab options you can set permissions etc close save save your hard drive will now show under /shared an alternative method simpler of course
    mkdir /media/sdx
    mount -t fat32 /dev/sdx/ /media/sdx

    think thats correct replace x with your drive letter

  6. #6
    Just Joined! micro2's Avatar
    Join Date
    Feb 2008
    Posts
    73
    here is what it shows in the partitioning program -

    /dev/sdb1 74.5 GB Win95 Fat32 /mnt

    start and the end and the device infoormation...

    I tried to type in fdisk-l but nothing came up

  7. #7
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    There is a space between fdisk and -l. You must have root privileges to execute fdisk command.
    Code:
    su -
    fdisk -l
    Execute this
    Code:
    umount /dev/sdb1
    mkdir  /media/sdb1
    mount  -t  vfat  /dev/sdb1  /media/sdb1  -o defaults,umask=0
    ls /media/sdb1
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  8. #8
    Just Joined! micro2's Avatar
    Join Date
    Feb 2008
    Posts
    73
    you the man that worked perfect! I just didn't quiet understand how to enter it in the terminal window, Thanks to all...

  9. #9
    Just Joined! micro2's Avatar
    Join Date
    Feb 2008
    Posts
    73
    ooops, I logged into my machine this morning with a warm fuzzy knowing everything was ready for me to go and noticed that my drive was unmounted. I am however happy to say I got all the data I needed off of it. I went into the partitioner to make a regular partition for linux so I'm totally done with windows and it said I should unmount it. Could someone help me with that? I think I can get it partitioned from following the partitioning software in yast...


    ...........sorry I noticed at the top umount /dev/sdb1/ my bag !!!!!!!!!

  10. #10
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    ooops, I logged into my machine this morning with a warm fuzzy knowing everything was ready for me to go and noticed that my drive was unmounted.
    You have to edit /etc/fstab file to automount partition(s). Otherwise execute mount command on every boot up.

    Execute umount command to unmount partition.
    Code:
    umount /dev/<device_name>
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Page 1 of 2 1 2 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...