Results 1 to 4 of 4

Thread: Mounting an ext4 drive on Intrepid

  1. #1
    Join Date
    Sep 2006
    Beans
    166
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Mounting an ext4 drive on Intrepid

    Hi, I'm still on Intrepid because I want to use the proprietary drivers for my graphics card which was dropped after Intrepid.
    Anyway I have an ext4 partition on my computer from my last install and I want to be able to mount it on Intrepid without having to move all the data off of it and formatting it to ext3. What are my options?

  2. #2
    Join Date
    Nov 2007
    Location
    Sweden
    Beans
    2,200

    Re: Mounting an ext4 drive on Intrepid

    Locate the harddrive on the disc:
    Code:
    df -h
    Mount your harddrive partition to a mountpoint on the disc (where sda would be changed to your choice):
    Code:
    mount -t ext3 /dev/[sda] /mnt/
    Change to the mounted directory:
    Code:
    cd /mnt
    where you can copy the files from the partition you need to keep.
    Debian 11 "Bullseye"
    HP Envy 2021 laptop
    Linux user since 1999.

  3. #3
    Join Date
    Sep 2006
    Beans
    166
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: Mounting an ext4 drive on Intrepid

    Code:
    david@hpdv5000:~$ sudo mount -t ext3 /dev/sda2 /mnt/datadisk
    mount: wrong fs type, bad option, bad superblock on /dev/sda2
    Would I have a hardtime building a new kernel with ext4 support?

  4. #4
    Join Date
    Jun 2007
    Beans
    88

    Re: Mounting an ext4 drive on Intrepid

    You can do it. I had to do it just now, because I'm backing up an old server onto an external disk and the only external disks I have are ext4.

    The trick to it I found is here: mounting ext4 on intrepid. The key command to look at there is using the tune2fs -E test_fs /dev/sd__ to enable experimental FS mods.

    I have no idea how reliable this is. I hope it works well enough that I can get the files off securely, that's all.

Tags for this Thread

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
  •