Find the answer to your Linux question:
Results 1 to 3 of 3
Hello all, I hava a scsi device from wich I run my Debian system and lately I installed an old IDE device in my Primary Master slot, but I can`t ...
  1. #1
    Just Joined!
    Join Date
    Nov 2006
    Posts
    2

    Mounting a IDE device



    Hello all,

    I hava a scsi device from wich I run my Debian system and lately I installed an old IDE device in my Primary Master slot, but I can`t find it inside Debian.
    I need help here...

    Thx,
    Stuccio

  2. #2
    Linux User
    Join Date
    Feb 2006
    Posts
    484
    see dmesg output , if your system automatically detect the hardware it will appear in dmesg output.

    if it isn't detected zou need create the device node for the device.

    cd /dev
    mknod -m 660 hda b 3 0 # for block device ,

    for character device change the "b" to "c"

    if it's a hard disk you must create the device nod for evry partition on the disk , increment the minor number by 1

    for example:
    1. partition on the device
    mknod -m 660 hda1 b 3 1
    2.
    mknod -m 660 hda2 b 3 2
    and so on

  3. #3
    Just Joined!
    Join Date
    Nov 2006
    Posts
    2
    Thanks dude!

    You were right it wasn't detecting the ide so I did as you said and it solved the question.

    Stuccio

Posting Permissions

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