Find the answer to your Linux question:
Page 1 of 3 1 2 3 LastLast
Results 1 to 10 of 27
Hi all, I'm a Linux idiot, so talk slow .. OK, my problem is as follows .. I've wiped a 120GB HDD to use under Linux as a storage option.. ...
  1. #1
    Just Joined!
    Join Date
    Dec 2006
    Posts
    15

    120Gb HDD Formatted and Mounted

    Hi all, I'm a Linux idiot, so talk slow ..

    OK, my problem is as follows ..

    I've wiped a 120GB HDD to use under Linux as a storage option.. I've formatted it under ext3 in YaST and then set about mounting it as /stuff ..

    This is a detailed description of what i am encountering;

    This is exactly what I'm doing, in YaST ..

    The drive is completely unmounted, all partitions are wiped ..

    I then click on create, click OK for /dev/hda and select primary partition, then format file system ext3, no mount point selected .. click OK, then apply ..

    It then formats /dev/hda ..

    Then, on /dev/hda1 i click "edit" and select "do not format" , but then select a mount point as /stuff ..

    Click OK, then apply ..

    I then get the error again saying .. "no changes made so far could be performed"

    I MUST be doing something wrong, but what? ..

    Any help would be 100% appreciated. I have another 40GB HDD, but I've backed that up with all the stuff from the 120GB i need to keep, so there is literally about 3GB left on the 40GB drive ..

    So, to get this 120GB to be fully readable and writable would be brilliant ..

    Cheers

  2. #2
    Linux Guru smolloy's Avatar
    Join Date
    Apr 2005
    Location
    CA, but from N.Ireland
    Posts
    2,413
    It sounds like you have done everything correctly, so I am a little confused.

    Questions:
    Why didn't you do the formatting and mounting as one step?
    Did you create the mount point (/stuff) before going through the steps in YAST?
    Registered Linux user #388328 || Registered LFS user #15880
    AMD 64 X2 4600+ :: 2X1GB DDR2 800 :: GeForce 9400 GT 512MB :: ASUS M2N32 Deluxe :: 4X250GB SATAII
    Need instant help? Try us on IRC -- #linuxforums on freenode

  3. #3
    Just Joined!
    Join Date
    Dec 2006
    Posts
    15
    Quote Originally Posted by smolloy
    It sounds like you have done everything correctly, so I am a little confused.

    Questions:
    Why didn't you do the formatting and mounting as one step?
    Did you create the mount point (/stuff) before going through the steps in YAST?
    Hi,

    I tried to do it all as one step, but I get the same message in YaST, so i thought i'd do it seperately and see what i could find out ..

    The mount point was created after going through the steps in YaST. I created the mount point in YaST however, by selecting "do not format harddrive" and keeping it under 0x83 linux ..

  4. #4
    Linux Guru smolloy's Avatar
    Join Date
    Apr 2005
    Location
    CA, but from N.Ireland
    Posts
    2,413
    What I meant was, have you created the folder "/stuff" where you are trying to mount your drive? The folder needs to exist before anything can be mounted there!!
    Code:
    sudo mkdir /stuff
    Type that to create the folder, then try mounting it with YAST again.
    Registered Linux user #388328 || Registered LFS user #15880
    AMD 64 X2 4600+ :: 2X1GB DDR2 800 :: GeForce 9400 GT 512MB :: ASUS M2N32 Deluxe :: 4X250GB SATAII
    Need instant help? Try us on IRC -- #linuxforums on freenode

  5. #5
    Just Joined!
    Join Date
    Dec 2006
    Posts
    15
    OK,

    did that and it told me the folder already existed, even after unmounting it and deleting the /dev/hda1 reference ..

    I then created a folder called /things .. Tried all the process again and i get the same "no changes made so far could be performed" message ..

  6. #6
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    post the output of 'fdisk -l' here. you must be 'root' to execute fdisk command.






    Casper
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  7. #7
    Just Joined!
    Join Date
    Dec 2006
    Posts
    15
    Disk /dev/hda: 120.0 GB, 120034123776 bytes
    255 heads, 63 sectors/track, 14593 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes

    Device Boot Start End Blocks Id System
    /dev/hda1 1 13056 104864737 83 Linux

    Disk /dev/hdb: 41.1 GB, 41110142976 bytes
    255 heads, 63 sectors/track, 4998 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes

    Device Boot Start End Blocks Id System
    /dev/hdb1 * 1 4998 40146403+ 83 Linux


    This is what I got ..

  8. #8
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    i assume that you already created folder /things. execute this
    Code:
    mount -t ext3 /dev/hda1 /things
    check 'things' folder.
    post the contents of /etc/fstab file.





    casper
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  9. #9
    Just Joined!
    Join Date
    Dec 2006
    Posts
    15
    In the "things" folder there was a folder called "lost+found" .. When clicked on it said :

    "could not enter folder lost+found"

    My fstab is as follows :

    /dev/hdb1 / reiserfs acl,user_xattr 1 1
    devpts /dev/pts devpts mode=0620,gid=5 0 0
    proc /proc proc defaults 0 0
    usbfs /proc/bus/usb usbfs noauto 0 0
    sysfs /sys sysfs noauto 0 0
    /dev/dvdrecorder /media/dvdrecorder subfs noauto,fs=cdfss,ro,procuid,nosuid,nodev,exec,iocha rset=utf8 0 0
    /dev/hda1 /things ext3 acl,user_xattr 1 2

  10. #10
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    okk ! create new mount point.
    Code:
    mkdir /media/things
    in /etc/fstab file, change
    Code:
    /dev/hda1 /things ext3 acl,user_xattr 1 2
    to
    Code:
    /dev/hda1    /media/things   ext3     defaults,umask=0 0 0
    save file and execute 'mount -a'.








    casper
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Page 1 of 3 1 2 3 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
  •  
...