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
  •  


ORICO Multi Bay RAID Hard Drive Enclosure USB 3.0/ Type-C For 2.5/3.5'' HDD SSDs picture

ORICO Multi Bay RAID Hard Drive Enclosure USB 3.0/ Type-C For 2.5/3.5'' HDD SSDs

$239.99



Dell EMC 092GD6 Broadcom 9305-16i LSI Quad Port 4 Port SAS RAID Controller picture

Dell EMC 092GD6 Broadcom 9305-16i LSI Quad Port 4 Port SAS RAID Controller

$84.99



 36TB SanDisk G-RAID 2 Thunderbolt 3 External Hard Drive - Excellent Condition picture

36TB SanDisk G-RAID 2 Thunderbolt 3 External Hard Drive - Excellent Condition

$630.00



OWC Guardian Maximus Raid Enclosure SATA Hard Drive FireWire picture

OWC Guardian Maximus Raid Enclosure SATA Hard Drive FireWire

$36.99



Dell PERC H330 PCIe 3.0 x8 RAID Storage Controller 4Y5H1 High Profile picture

Dell PERC H330 PCIe 3.0 x8 RAID Storage Controller 4Y5H1 High Profile

$15.99



LSI MegaRAID 9361-8i 12Gbps PCIe 3 x8 SATA SAS 3 8 Port RAID + BBU & CacheVault picture

LSI MegaRAID 9361-8i 12Gbps PCIe 3 x8 SATA SAS 3 8 Port RAID + BBU & CacheVault

$39.00



Inspur LSI YZCA-00424-101 Raid Card 12Gbps HBA Controller Low Profile 9300-8i IT picture

Inspur LSI YZCA-00424-101 Raid Card 12Gbps HBA Controller Low Profile 9300-8i IT

$15.98



9207-8i PCIE3.0 6Gbps HBA LSI FW:P20 IT Mode ZFS FreeNAS unRAID 2* SFF-8087 US picture

9207-8i PCIE3.0 6Gbps HBA LSI FW:P20 IT Mode ZFS FreeNAS unRAID 2* SFF-8087 US

$32.88



Yottamaster 2 Bay RAID Hard Drive Enclosure USB 3.1 For 2.5

Yottamaster 2 Bay RAID Hard Drive Enclosure USB 3.1 For 2.5" SATA HDD SSD UASP

$56.25



Yottamaster 5 Bay RAID Hard Drive Enclosure Type-C B For 2.5

Yottamaster 5 Bay RAID Hard Drive Enclosure Type-C B For 2.5" 3.5" SATA HDD SSDs

$131.59