Page 1 of 3 123 LastLast
Results 1 to 10 of 30

Thread: missing hard drive.

  1. #1
    Join Date
    Sep 2008
    Beans
    65

    missing hard drive.

    I had a harddrive that I formated for extra space. It hasn't recognized or shown it in ages. I'm trying to figure out how to get it to show.

    I had some data on it because I was going to use it to store all my large data like games. How do you get it to find it again and set it up properly as a second harddrive for storage purposes only?

    I beleive it still shows up in lshw or some other command. But I have no idea what to do and mounting hard drives and stuff like this is very new to me.

    Thanks for any help.

  2. #2
    Join Date
    Nov 2011
    Location
    /dev/root
    Beans
    Hidden!

    Re: missing hard drive.

    Quote Originally Posted by Newuser901 View Post
    I had a harddrive that I formated for extra space. It hasn't recognized or shown it in ages. I'm trying to figure out how to get it to show.

    I had some data on it because I was going to use it to store all my large data like games. How do you get it to find it again and set it up properly as a second harddrive for storage purposes only?

    I beleive it still shows up in lshw or some other command. But I have no idea what to do and mounting hard drives and stuff like this is very new to me.

    Thanks for any help.
    Please post the output of
    Code:
    sudo fdisk -lu
    and await further help

  3. #3
    Join Date
    Sep 2008
    Beans
    65

    Re: missing hard drive.

    Code:
    Disk /dev/sda: 250.1 GB, 250059350016 bytes
    255 heads, 63 sectors/track, 30401 cylinders, total 488397168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x00065a77
    
       Device Boot      Start         End      Blocks   Id  System
    /dev/sda1   *        2048   488396799   244197376   83  Linux
    
    Disk /dev/sdb: 250.1 GB, 250058268160 bytes
    255 heads, 63 sectors/track, 30401 cylinders, total 488395055 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x00000000
    
    Disk /dev/sdb doesn't contain a valid partition table
    Last edited by Newuser901; July 21st, 2012 at 02:11 AM.

  4. #4
    Join Date
    Feb 2012
    Location
    Athens/Greece
    Beans
    Hidden!
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: missing hard drive.

    Quote Originally Posted by Newuser901 View Post
    Disk /dev/sda: 250.1 GB, 250059350016 bytes
    255 heads, 63 sectors/track, 30401 cylinders, total 488397168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x00065a77

    Device Boot Start End Blocks Id System
    /dev/sda1 * 2048 488396799 244197376 83 Linux

    Disk /dev/sdb: 250.1 GB, 250058268160 bytes
    255 heads, 63 sectors/track, 30401 cylinders, total 488395055 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x00000000

    Disk /dev/sdb doesn't contain a valid partition table
    Hi ,
    it seems that your second hard drive (sdb) has a problem with partition table.
    Run this command and post back the results
    Code:
    sudo parted -l
    Please put the results inside [CODE] tags , by highlighting the text and click # symbol on top of message pane.
    Thanks.

  5. #5
    Join Date
    Sep 2008
    Beans
    65

    Re: missing hard drive.

    Code:
    Model: ATA ST3250310AS (scsi)
    Disk /dev/sda: 250GB
    Sector size (logical/physical): 512B/512B
    Partition Table: msdos
    
    Number  Start   End    Size   Type     File system  Flags
     1      1049kB  250GB  250GB  primary  ext4         boot
    
    
    Error: /dev/sdb: unrecognised disk label                                  
    
    Warning: Unable to open /dev/sr0 read-write (Read-only file system).  /dev/sr0
    has been opened read-only.
    Error: /dev/sr0: unrecognised disk label
    Last edited by Newuser901; July 21st, 2012 at 02:11 AM.

  6. #6
    Join Date
    Feb 2012
    Location
    Athens/Greece
    Beans
    Hidden!
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: missing hard drive.

    Hi ,
    you can try to fix this problem .
    2 suggestions:

    1.)
    With Fdisk tool.

    Open a terminal and
    Code:
    sudo su 
    fdisk /dev/sdb
    n= create a new partition
    1 = partition number
    w= write changes to disk
    click "m" for more options.

    2.)
    With e2fsck tool.
    e2fsck tool its a check and repair tool for Linux filesystems.
    Open a terminal and
    Code:
    sudo e2fsck  -f -v /dev/sdb

    Post the results back here.
    Code:
    man e2fsck
    for more.


    Attention:
    Both ways pose risks to lose all your data .

    Thanks
    Last edited by NikTh; July 21st, 2012 at 02:42 AM.

  7. #7
    Join Date
    Sep 2008
    Beans
    65

    Re: missing hard drive.

    Code:
    Model: ATA ST3250310AS (scsi)
    Disk /dev/sda: 250GB
    Sector size (logical/physical): 512B/512B
    Partition Table: msdos
    
    Number  Start   End    Size   Type     File system  Flags
     1      1049kB  250GB  250GB  primary  ext4         boot
    
    
    Model: ATA WDC WD2500JD-00F (scsi)
    Disk /dev/sdb: 250GB
    Sector size (logical/physical): 512B/512B
    Partition Table: msdos
    
    Number  Start   End    Size   Type      File system  Flags
     1      1049kB  250GB  250GB  extended
    
    
    Warning: Unable to open /dev/sr0 read-write (Read-only file system).  /dev/sr0
    has been opened read-only.
    Error: /dev/sr0: unrecognised disk label

  8. #8
    Join Date
    Feb 2012
    Location
    Athens/Greece
    Beans
    Hidden!
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: missing hard drive.

    Hi ,
    what result is that ? from what command ? sudo parted -l ?
    Did you try the e2fsck tool ?
    As you can see , you still have no file-system at /dev/sdb .
    Thanks

  9. #9
    Join Date
    Sep 2009
    Location
    San Diego, CA
    Beans
    166
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: missing hard drive.

    I find GParted a much easier tool to use, try this tutorial after installing gparted:

    sudo apt-get install gparted

    http://www.dedoimedo.com/computers/gparted.html

    good luck and cheers,
    To Doubt is infinitely more important that adoration, To question is much more Important than to believe....
    Anthony DeMello

  10. #10
    Join Date
    Sep 2008
    Beans
    65

    Re: missing hard drive.

    Code:
     sudo parted -l
    Model: ATA ST3250310AS (scsi)
    Disk /dev/sda: 250GB
    Sector size (logical/physical): 512B/512B
    Partition Table: msdos
    
    Number  Start   End    Size   Type     File system  Flags
     1      1049kB  250GB  250GB  primary  ext4         boot
    
    
    Model: ATA WDC WD2500JD-00F (scsi)
    Disk /dev/sdb: 250GB
    Sector size (logical/physical): 512B/512B
    Partition Table: msdos
    
    Number  Start   End    Size   Type      File system  Flags
     1      1049kB  250GB  250GB  extended
    
    
    Warning: Unable to open /dev/sr0 read-write (Read-only file system).  /dev/sr0
    has been opened read-only.
    Error: /dev/sr0: unrecognised disk label
    I ran the e2fsck command you gave me first but it make me hold enter down forever and seem to need me to answer thousands up on throusands of things and never stoppped. So I stopped the process and did fdisk.


    I'll check out gparted.

    after gparted.

    Code:
    sudo gparted
    ======================
    libparted : 2.3
    ======================
    aital@aital-EP35-DS3R:~$ sudo parted -l
    Model: ATA ST3250310AS (scsi)
    Disk /dev/sda: 250GB
    Sector size (logical/physical): 512B/512B
    Partition Table: msdos
    
    Number  Start   End    Size   Type     File system  Flags
     1      1049kB  250GB  250GB  primary  ext4         boot
    
    
    Model: ATA WDC WD2500JD-00F (scsi)
    Disk /dev/sdb: 250GB
    Sector size (logical/physical): 512B/512B
    Partition Table: msdos
    
    Number  Start   End    Size   Type      File system  Flags
     1      1049kB  250GB  250GB  extended
     5      2097kB  250GB  250GB  logical   ext4
    
    
    Warning: Unable to open /dev/sr0 read-write (Read-only file system).  /dev/sr0
    has been opened read-only.
    Error: /dev/sr0: unrecognised disk label
    Now it shows up in my home folder but i can't access it. It have the option to mount but it doesn't do anything when I click it. Is it bad there are two 250gig partitions seemingly on the same drive? It's only 250gigs to start.
    Last edited by Newuser901; July 21st, 2012 at 05:59 AM.

Page 1 of 3 123 LastLast

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
  •