Results 1 to 7 of 7

Thread: Formatting

  1. #1
    Junior Member
    Join Date
    Oct 2003
    Location
    England
    Posts
    1

    Formatting

    K, i have installed to knoppix 3.3 onto a 20 gb hard drive, but i also installed it onto a 10 gb one. this is because it did not work from this hard drive. now the problem is how do i format the 10 gb hard drive. i booted to dos and tried typing c:/ but this did not work, what would the drive be called, on the desktop it is called hda5. i tried putting this into dos but it still didn't work?
    When i try and access the 10 gb drive it comes up with the error:
    "could not mount device
    the reported error was:
    mount: i could not determine the filesystem type, and none was specified."
    I think i partitioned the 10 gb drive wrong, making both the swap partition and the linux part logical, instead of making linux part primary.
    any 1 know how to fix this?
    Also, when i right click on any shortcut on the desktop all the icons on the desktop dissapear, whats up with that?
    another slightly annying thing, how do i make numlock come on automatically on startup?
    thanks for any help.

  2. #2
    Senior Member registered user
    Join Date
    Feb 2003
    Posts
    202
    Tools to fix partitions.
    DOS:
    Partition Magic
    Paragon Partition Manager
    fdisk

    Linux:
    Run in a terminal-console
    qtparted
    fdisk (not easy)

  3. #3
    Senior Member registered user
    Join Date
    Mar 2003
    Posts
    555

    Re: Formatting

    Quote Originally Posted by Spike
    I think i partitioned the 10 gb drive wrong, making both the swap partition and the linux
    part logical, instead of making linux part primary.any 1 know how to fix this?
    That's no problem. Linux can be installed to logical slices within extended
    partitions. For the rest, I am not sure I followed you. Are theses two disks
    installed in the same system? Then (assuming IDE), one will be hda and
    the other hdb. Take the time to explain your problem better, if you still have one.

  4. #4
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    USA, IL
    Posts
    1,041

    Re: Formatting

    --Post results of ' fdisk -l ' as root.

    --You cannot make Linux filesystems from DOS. I highly recommend you go with a journalled filesystem such as reiserfs (' man mkreiserfs ') or ext3. In order to format the partition in Linux, you have to run one of ' mkfs.blah ' on it:

    /sbin/jfs_mkfs
    /sbin/mkfs
    /sbin/mkfs.ext2
    /sbin/mkfs.ext3
    /sbin/mkfs.jfs
    /sbin/mkfs.minix
    /sbin/mkfs.msdos
    /sbin/mkfs.reiserfs
    /sbin/mkfs.vfat
    /sbin/mkfs.xfs

    --Then you need to set up an entry for it in /etc/fstab. (You also need to make sure that the filesystem is supported in the kernel - either by hardwiring it in, or as a module - but Knoppix makes this easy.) If you use reiserfs, I recommend something like this, as root of course:

    ' mkdir /mnt/mountpoint ' == Call it what you want
    ' mkreiserfs /mnt/hda5 ' == The partition you want to format

    ' jstar /etc/fstab ' and put something like this in (' man fstab ' will tell you more, as well as ' man mount ')

    Code:
    /dev/hda5 /mnt/mountpoint  reiserfs  defaults,noatime,notail,rw 0 0
    --Then ' mount /mnt/mountpoint ' after saving. Now you should make a directory that your non-root user owns and can write to.

    ' cd /mnt/mountpoint; mkdir blah '
    ' chown knoppix.knoppix blah ' == Replace knoppix with obvious userid

    --Now you can write and use files in /mnt/mountpoint/blah.

    --The numlock thing:
    Put the following entry at the end of /etc/init.d/bootmisc.sh :
    Code:
    setleds +num
    Quote Originally Posted by Spike
    K, i have installed to knoppix 3.3 onto a 20 gb hard drive, but i also installed it onto a 10 gb one. this is because it did not work from this hard drive. now the problem is how do i format the 10 gb hard drive. i booted to dos and tried typing c:/ but this did not work, what would the drive be called, on the desktop it is called hda5. i tried putting this into dos but it still didn't work?
    When i try and access the 10 gb drive it comes up with the error:
    "could not mount device
    the reported error was:
    mount: i could not determine the filesystem type, and none was specified."
    I think i partitioned the 10 gb drive wrong, making both the swap partition and the linux part logical, instead of making linux part primary.
    any 1 know how to fix this?
    Also, when i right click on any shortcut on the desktop all the icons on the desktop dissapear, whats up with that?
    another slightly annying thing, how do i make numlock come on automatically on startup?
    thanks for any help.

  5. #5
    Senior Member registered user
    Join Date
    Feb 2003
    Posts
    202

    Re: Formatting

    Quote Originally Posted by Dave_Bechtel

    --You cannot make Linux filesystems from DOS.

    Partition Magic, Partition Manager etc etc
    all them run under DOS and of course they support linux

  6. #6
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    USA, IL
    Posts
    1,041

    Re: Formatting

    (sigh) Yes, Ok technically you're right but everything from PM 7.0 on has to be started from Windoze, and is only capable of making Swap and ext2 filesystems for Linux AFAIK. I stuck with PM 7.01 personally for monetary reasons, and because I heard of people having problems with the latest ver.

    Quote Originally Posted by oscar
    Quote Originally Posted by Dave_Bechtel

    --You cannot make Linux filesystems from DOS.

    Partition Magic, Partition Manager etc etc
    all them run under DOS and of course they support linux

  7. #7
    Senior Member registered user
    Join Date
    Feb 2003
    Posts
    202

    Re: Formatting

    Quote Originally Posted by Dave_Bechtel
    (sigh) Yes, Ok technically you're right but everything from PM 7.0 on has to be started from Windoze, and is only capable of making Swap and ext2 filesystems for Linux AFAIK. I stuck with PM 7.01 personally for monetary reasons, and because I heard of people having problems with the latest ver.
    Nothing to say about money...and emule...

    Windoze is not necessary to boot partion magic or partition manager. The core part boot from a DOS floppy or may be run from real DOS HD. All versions. Look in "Make a recovery floppy" option or similar.
    Actual versions for sure support ext3. I dont remenber now if reisefers is supported too. IŽam not sure. They both are very usable. No problem yet.

    regards

Similar Threads

  1. Formatting a CD with Knoppix.
    By Chuckbaker in forum General Support
    Replies: 2
    Last Post: 09-07-2004, 09:25 PM
  2. Formatting of failed?
    By dresac in forum Hdd Install / Debian / Apt
    Replies: 4
    Last Post: 06-07-2004, 09:40 AM
  3. Formatting/Partitioning HDD
    By Ritchie in forum Hdd Install / Debian / Apt
    Replies: 3
    Last Post: 02-10-2004, 10:46 AM
  4. FAT32 formatting?
    By Li Gwai Lo in forum General Support
    Replies: 4
    Last Post: 01-18-2004, 08:53 PM
  5. Anybody been successful formatting w/ xfs?
    By rickenbacherus in forum Hdd Install / Debian / Apt
    Replies: 20
    Last Post: 06-19-2003, 08:18 AM

Posting Permissions

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


Fanxiang 4TB 2TB 1TB SSD 550MB/s 2.5'' SATA III Internal Solid State Drive lot picture

Fanxiang 4TB 2TB 1TB SSD 550MB/s 2.5'' SATA III Internal Solid State Drive lot

$219.99



Netac 1TB 2TB 512GB Internal SSD 2.5'' SATA III 6Gb/s Solid State Drive lot picture

Netac 1TB 2TB 512GB Internal SSD 2.5'' SATA III 6Gb/s Solid State Drive lot

$119.99



Fanxiang SSD 4TB 2TB 1TB PS5 SSD M.2 NVME SSD 7300MBS PCIe 4.0 Solid State Drive picture

Fanxiang SSD 4TB 2TB 1TB PS5 SSD M.2 NVME SSD 7300MBS PCIe 4.0 Solid State Drive

$269.99



Fanxiang 4TB 2TB 1TB SSD 2.5'' SATA III 560MB/s Internal Solid State Drive lot picture

Fanxiang 4TB 2TB 1TB SSD 2.5'' SATA III 560MB/s Internal Solid State Drive lot

$188.09



Patriot P210 128GB 256GB 512GB 1TB 2TB 2.5

Patriot P210 128GB 256GB 512GB 1TB 2TB 2.5" SATA 3 6GB/s Internal SSD PC/MAC Lot

$15.50



WD BLUE 3D NAND 250GB 2.5

WD BLUE 3D NAND 250GB 2.5" SATA Laptop SSD Solid State Tested,Wiped -WDS250G2B0A

$16.00



1080PRO 4TB SSD Solid State Hard Drive Ngff M.2 SSD Gaming Internal Hard Disk picture

1080PRO 4TB SSD Solid State Hard Drive Ngff M.2 SSD Gaming Internal Hard Disk

$32.99



Samsung 860 EVO 250GB,Internal,2.5 inch (MZ-76E250) Solid State Drive picture

Samsung 860 EVO 250GB,Internal,2.5 inch (MZ-76E250) Solid State Drive

$20.00



Brand New SSD 870 EVO SATA III SSD 1TB 2.5'' Solid State Drive Upgrade PC Laptop picture

Brand New SSD 870 EVO SATA III SSD 1TB 2.5'' Solid State Drive Upgrade PC Laptop

$59.50



Fanxiang M.2 SATA SSD 2TB 1TB 512GB 256GB SSD Internal M2 Solid State Drive Lot picture

Fanxiang M.2 SATA SSD 2TB 1TB 512GB 256GB SSD Internal M2 Solid State Drive Lot

$109.99