Results 1 to 5 of 5

Thread: Hardy... where are my other hard drives?

  1. #1
    Join Date
    Jul 2005
    Beans
    140

    Hardy... where are my other hard drives?

    I used to find them in /media/disk after doing a mount... I don't see them anymore?

    I'm nervous as all of my backup stuff is on these disks.
    2GHz AMD Athlon 64 3000+, ECS 755-A2 Motherboard,
    BestData GeForce 400 (Nvidia) video card,
    32 or 64-bit Linux kernel (depending on headaches with Flash/Java)

  2. #2
    Join Date
    Nov 2007
    Location
    Cairo - EGYPT-
    Beans
    48
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Hardy... where are my other hard drives?

    Open terminal
    Accessories > Terminal
    and write
    Code:
    sudo fdisk -l
    it's a small l
    and post back ur results

  3. #3
    Join Date
    Jul 2005
    Beans
    140

    Re: Hardy... where are my other hard drives?

    Quote Originally Posted by El King View Post
    Open terminal
    Accessories > Terminal
    and write
    Code:
    sudo fdisk -l
    it's a small l
    and post back ur results
    fdisk -l

    Disk /dev/sda: 80.0 GB, 80026361856 bytes
    255 heads, 63 sectors/track, 9729 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x0551e1a9

    Device Boot Start End Blocks Id System
    /dev/sda1 * 1 9541 76638051 83 Linux
    /dev/sda2 9542 9729 1510110 5 Extended
    /dev/sda5 9542 9729 1510078+ 82 Linux swap / Solaris

    Disk /dev/sdb: 122.9 GB, 122942324736 bytes
    16 heads, 63 sectors/track, 238216 cylinders
    Units = cylinders of 1008 * 512 = 516096 bytes
    Disk identifier: 0x0001f968

    Device Boot Start End Blocks Id System
    /dev/sdb1 1 238216 120060832+ 83 Linux


    At least it recognizes it... I think it is /dev/sdb1
    2GHz AMD Athlon 64 3000+, ECS 755-A2 Motherboard,
    BestData GeForce 400 (Nvidia) video card,
    32 or 64-bit Linux kernel (depending on headaches with Flash/Java)

  4. #4
    Join Date
    Jul 2005
    Beans
    140

    Re: Hardy... where are my other hard drives?

    I found it... had to do the following in a perl script:


    $path = "/mnt/backup";
    $drive = "/dev/sdb1";

    # Setup for mounting the directory
    print "Making the directory:\n";
    print "mkdir $path\n";
    system ("mkdir $path");
    # Mount the disk. Older versions were in /media/disk
    print "\nMounting the disk:\nmount -t ext3 $drive $path\n";
    system ("mount -t ext3 $drive $path");
    2GHz AMD Athlon 64 3000+, ECS 755-A2 Motherboard,
    BestData GeForce 400 (Nvidia) video card,
    32 or 64-bit Linux kernel (depending on headaches with Flash/Java)

  5. #5
    Join Date
    Apr 2008
    Location
    Phil.
    Beans
    279
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Hardy... where are my other hard drives?

    Hi. Have the same problem as yours. Can you explain step by step on how did you do it. Thanks.

Bookmarks

Posting Permissions

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