Find the answer to your Linux question:
Results 1 to 5 of 5
Hi, help needed. I have recently started using suse 10.2 and by and large am extremely happy with it (got my wireless working) able to play all media files (except ...
  1. #1
    Linux Newbie
    Join Date
    Dec 2006
    Posts
    153

    Adding HDD (sata)

    Hi, help needed. I have recently started using suse 10.2 and by and large am extremely happy with it (got my wireless working) able to play all media files (except quicktime - anybody know how to enable these)? Anyway back to the matter in hand. I have 3 200 GB sata drives all stand alone (not raid) suse would not boot with the 3 drives connected (dont know why) so I disconnected 2 and loaded suse to the remaining drive (dual boot with XP) I have now reconnected the remaining drives which contain important data (ntfs) so I do not want to format them, but they are not showing in my computer although if I go to partioning in Yast they are there. What I need to know is how to mount these drives without formating any help greatly appreciated.

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    execute 'fdisk -l' command and note down partition names. ( /dev/sda1, 2 ... sdb1, 2.. )
    create mount_point ( folder ) for each partition.
    let say partition name is /dev/sdb1
    Code:
    cd media
    mkdir sdb1
    mount -t ntfs /dev/sdb1 /media/sdb1 -o defaults,umask=0
    check /media/sdb1 folder.

    you can add an entry for sdb1 in /etc/fstab file for automatic mounting. add this code in /etc/fstab file.
    Code:
    /dev/sdb1 /media/sdb1 ntfs defaults,umask=0 0 0
    do the same for other partitions.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Linux Newbie
    Join Date
    Dec 2006
    Posts
    153

    Unhappy

    Thanks devils casper, tried that but all i get is permission denied, nothing shows in my computer.

  4. #4
    Linux Newbie
    Join Date
    Dec 2006
    Posts
    153

    Smile

    Sorry I lied after setting them up in Yast and rebooting all available now thanks.

  5. #5
    Linux Guru gogalthorp's Avatar
    Join Date
    Oct 2006
    Location
    West (by God) Virginia
    Posts
    3,105
    Quote Originally Posted by redbook
    Thanks devils casper, tried that but all i get is permission denied, nothing shows in my computer.
    FYI you need to be root to run the command and edit the files.

    type su at the command prompt and then enter the root password (note it will not be echoed to the screen)

Posting Permissions

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