Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: Kernel panic not syncing VFS: Error during booting remastered CD

  1. #1
    Junior Member
    Join Date
    Aug 2012
    Posts
    14

    Kernel panic not syncing VFS: Error during booting remastered CD

    I have remastered a Live CD by adding some executable and using this script:
    #! /bin/sh
    # krhowto_4
    # Path to partition you will work on
    PFAD="/media/sda1"
    START=$(date +'%s')
    # Disable screensaver

    xscreensaver-command -exit
    # Build new inital RAM-disk
    cd $PFAD/knx/minirt/minirtdir/
    find . | cpio -oH newc | gzip -9 > ../minirt.gz
    cp $PFAD/knx/minirt/minirt.gz $PFAD/knx/master/boot/isolinux/
    # Make the big compressed filesystem KNOPPIX
    genisoimage -input-charset ISO-8859-15 -R -l -D -V KNOPPIX_FS -quiet \
    -no-split-symlink-components -no-split-symlink-fields \
    -hide-rr-moved -cache-inodes $PFAD/knx/source/KNOPPIX \
    | /usr/sbin/create_compressed_fs -q -B 65536 -t 8 -L -1 \
    -f $PFAD/knx/isotemp - $PFAD/knx/master/KNOPPIX/KNOPPIX
    # Update the file hashes used by the "testcd" boot option
    cd $PFAD/knx/master ; find -type f -not -name \
    sha1sums -not -name boot.cat -not \
    -name isolinux.bin -exec sha1sum '{}' \; > KNOPPIX/sha1sums
    # Create new Knoppix ISO
    genisoimage -l -r -J -V "KNOPPIX" \
    -b boot/isolinux/isolinux.bin -no-emul-boot -boot-load-size 4 \
    -boot-info-table -c boot/isolinux/boot.cat \
    -o $PFAD/knx/remasterd.iso $PFAD/knx/master
    # Enable screensaver
    su knoppix -c "xscreensaver -nosplash &"
    echo -e "\nFinished! Used time: $(expr $(expr $(date +'%s') - $START) / 60) min. \
    and $(expr $(expr $(date +'%s') - $START) % 60) sec. \
    \n\nThe new ISO is stored in '$PFAD/knx/remastered.iso' "[/COLOR]

    My knoppix version is 6.7.1.
    When I run the iso which is 725 mb it boots up, shows logo, and boot.. if i let it continue it shows this:
    Decompressing Linux... Parsing ELF.... done
    Booting the kernel..
    [ 3.171152] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(8,1)....

    I have tried it many times but get the same result. I am using VMWare 8.0.6 to do all this.

  2. #2
    Moderator Moderator
    Join Date
    Nov 2010
    Location
    Germany/ Dietzenbach
    Posts
    1,124
    Did you get an error message booting your remastered version with cheatcode

    knoppix testcd

  3. #3
    Junior Member
    Join Date
    Aug 2012
    Posts
    14
    I do not know how to use cheatcode. But I have tried
    kvm -m 512 -cdrom $PFAD/knx/remastered.iso
    It showed the logo, boot: and then the same messages
    Decompressing Linux... Parsing ELF.... done
    Booting the kernel..
    [ 3.171152] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(8,1)....

  4. #4
    Moderator Moderator
    Join Date
    Nov 2010
    Location
    Germany/ Dietzenbach
    Posts
    1,124

  5. #5
    Junior Member
    Join Date
    Aug 2012
    Posts
    14
    If I type knoppix testcd, I get same error

  6. #6
    Junior Member
    Join Date
    Aug 2012
    Posts
    14
    I tried all the cheatcodes including 'knoppix debug' This gave me more detailed information that was:
    [ 3.317878] VFS: Cannot open root device "(null)" or unknown-block(8,1)
    [3.317944] Please append a correct "root=" boot option; here are the available partitions:
    [ 3.318010] 0b00 1048575 sr0 driver:sr
    [ 3.318076] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(8,1)
    [ 3.318142] Pid: 1. comm: swapper Tainted:G W 3.0.4 #12 etc.

    Where do I start checking?

  7. #7
    Moderator Moderator
    Join Date
    Nov 2010
    Location
    Germany/ Dietzenbach
    Posts
    1,124
    I have remastered a Live CD by adding some executable and using this script
    Your remaster by itself is wrong. The sripts of Remaster HowTo I've tested many times.

  8. #8
    Junior Member
    Join Date
    Aug 2012
    Posts
    14
    Of course my remaster is wrong. and I have also tested it many times before. But this time it does not work. I have also given the script I have used for remaster. I have used only two major steps for remastering that could affect the final result:
    1. ran the following:
    #! /bin/sh
    # krhowto_1
    # Path to partition you will work on
    PFAD="/media/sda1"
    START=$(date +'%s')
    # Disable screensaver
    xscreensaver-command -exit
    # One sub-directory will be used for the Master-CD
    mkdir -p $PFAD/knx/master
    cd $PFAD/knx
    # You will need a swapfile
    dd if=/dev/zero of=swapfile bs=1M count=500
    mkswap swapfile ; swapon swapfile
    # Make a sub-directory for the source
    mkdir -p $PFAD/knx/source/KNOPPIX
    echo "Copy the KNOPPIX files to your source directory."
    echo "This will take a long time!"
    cp -rp /KNOPPIX/* $PFAD/knx/source/KNOPPIX
    # Additionally, copy the files to build the ISO later
    rsync -aH --exclude="KNOPPIX/KNOPPIX*" /mnt-system/* $PFAD/knx/master
    # gunzip inital RAM-disk
    mkdir -p $PFAD/knx/minirt/minirtdir
    cp $PFAD/knx/master/boot/isolinux/minirt.gz $PFAD/knx/minirt/
    cd $PFAD/knx/minirt/
    gunzip minirt.gz
    cd minirtdir
    cpio -imd --no-absolute-filenames < ../minirt
    # Enable screensaver
    su knoppix -c "xscreensaver -nosplash &"
    echo -e "\nFinished! Used time: $(expr $(expr $(date +'%s') - $START) / 60) min. \
    and $(expr $(expr $(date +'%s') - $START) % 60) sec."

    2. copied my executables
    3. Did the following:
    Create the autostart parameters as below.

    Created a file called myprog.desktop in /media/sda3/knx/source/KNOPPIX/home/knoppix/.config/autostart folder with the following contents:cd us

    [Desktop Entry]
    Type=Application
    Name=myprog
    Exec=sudo /usr/loca/bin/myprog.sh &
    Terminal=false
    X-GENOME-Autostart-enabled=true

    B. Create a file in /usr/local/bin/myprog.sh with exec permission with contents:
    #!/bin/sh
    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
    /bin/myprog



    3. Executed Bash remaster.sh which created the .iso

    So, where I am going wrong.

  9. #9
    Moderator Moderator
    Join Date
    Nov 2010
    Location
    Germany/ Dietzenbach
    Posts
    1,124
    # Path to partition you will work on
    PFAD="/media/sda1"
    You have to declare the value of "PFAD" as you need it within all the four scriptparts of the HowTo.
    Created a file called myprog.desktop in /media/sda3/knx/source/KNOPPIX/home/knoppix/.config/autostart folder with the following contents:cd us
    /sda3 or /sda1? And what about "cd us"?
    Create a file in /usr/local/bin/myprog.sh with exec permission with contents:
    #!/bin/sh
    At this point are you working within the chroot or after leaving it?

    But as I can see it, this is not the reason for the unbootable remastered version.

  10. #10
    Junior Member
    Join Date
    Aug 2012
    Posts
    14
    Sure I changed all the PFAD to proper sda or sdb as the case may be. I did not use chroot but copied the files in the proper path. As the system anyway booted and came upto boot: , I also think this is not the reason. So, what is the reason? Firstly what is the error? And how do I get rid of it?

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


Vintage Apple Macintosh SE M5010 Computer w/ Keyboard  & mouse -power up- no OS picture

Vintage Apple Macintosh SE M5010 Computer w/ Keyboard & mouse -power up- no OS

$189.99



Vintage Apple Logo Calculator. New in original box.  LAST ONE................... picture

Vintage Apple Logo Calculator. New in original box. LAST ONE...................

$29.00



Vintage Apple Macintosh 6100/66 PowerPC 601 66MHz 8MB Retro Desktop Computer PC picture

Vintage Apple Macintosh 6100/66 PowerPC 601 66MHz 8MB Retro Desktop Computer PC

$169.99



Apple III Monitor A3M0039 - Rare Vintage Apple picture

Apple III Monitor A3M0039 - Rare Vintage Apple

$130.00



Vintage Classic Apple Macintosh System Boot Install Disk Floppy/CD *Pick Version picture

Vintage Classic Apple Macintosh System Boot Install Disk Floppy/CD *Pick Version

$10.39



Vintage Apple Macintosh Keyboard II M0487 (Lot 3 Keyboards,1 Mouse) picture

Vintage Apple Macintosh Keyboard II M0487 (Lot 3 Keyboards,1 Mouse)

$25.00



RAD Apple Mac Powerbook Duo 230 Vintage Laptop picture

RAD Apple Mac Powerbook Duo 230 Vintage Laptop

$74.95



Vintage 1987 Apple M0110A Keyboard - UNTESTED picture

Vintage 1987 Apple M0110A Keyboard - UNTESTED

$45.00



Vintage Apple iBook G4 Laptop 12

Vintage Apple iBook G4 Laptop 12" LCD Model bundle with original charger

$65.00



Vintage 1980's Apple Macintosh Plus Wooden Storage Box - With Floppy Disc Lot picture

Vintage 1980's Apple Macintosh Plus Wooden Storage Box - With Floppy Disc Lot

$89.98