Frugal Fossapup 'Dumping last lines of tmp/bootinit/log' on boot

Moderator: Forum moderators

Post Reply
mivison
Posts: 27
Joined: Tue Nov 24, 2020 5:43 pm
Has thanked: 4 times

Frugal Fossapup 'Dumping last lines of tmp/bootinit/log' on boot

Post by mivison »

Hi all, I'm running puppy along side of Antix on a Dell laptop. When I boot into puppy( I'm using the same grub file as Antix) I get this on my boot screen when booting into puppy. It did the same thing when I was booting from a usb thumb and have the puppySave file on this computer on the Windows 10 drive. Can someone help with this? It boots after a 60 second pause, but it would be nice if it boot up faster.

Attachments
pupboot.jpg
pupboot.jpg (101.51 KiB) Viewed 915 times
User avatar
taersh
Posts: 951
Joined: Tue Jul 07, 2020 11:13 pm
Location: Germany
Has thanked: 53 times
Been thanked: 119 times

Re: Dumping on boot

Post by taersh »

If nothing helps, you could edit the init script in initrd.gz.

Search for:

Code: Select all

L_PAUSING_60_SECONDS

In Function check_status() you'll find code:

Code: Select all

    else
      echo "${L_PAUSING_60_SECONDS}" >/dev/console
      sleep 60
    fi

Change the sleep 60 to (perhaps) sleep 5?

My Music:
https://soundcloud.com/user-633698367
Using my own build of Bionic64
The far-left is as fascist as the far-right is!

User avatar
bigpup
Moderator
Posts: 6403
Joined: Tue Jul 14, 2020 11:19 pm
Location: Earth, South Eastern U.S.
Has thanked: 757 times
Been thanked: 1325 times

Re: Dumping on boot

Post by bigpup »

I'm running puppy along side of Antix on a Dell laptop

What specific Puppy version?

Installed to the internal drive of computer??

What format is the partition it is installed on?

I assume Puppy is a frugal install?

Post the entry you put in the boot loader menu to boot Puppy?

Is windows 10 completely shutdown normal?
Do not shut it down in hibernate!!
That messes up ability of Puppy to properly access the drives.

Try booting not having any USB drives plugged into the computer.

Forum Global Moderator
The things you do not tell us, are usually the clue to fixing the problem.
When I was a kid, I wanted to be older.
This is not what I expected :o

mivison
Posts: 27
Joined: Tue Nov 24, 2020 5:43 pm
Has thanked: 4 times

Re: Dumping on boot

Post by mivison »

@bigpup
9.5 fossapup
yes, internal install
format ext4
frugal install
Boot menu text
menuentry "Puppy " {
search --no-floppy --file --set /pup/vmlinuz
linux /pup/vmlinuz psubdir=/pup pfix=fsck,fsckp
initrd /pup/initrd.gz
}
no windows installed at this time. I hosed it with Antix. haha
no usb plugged in at this time.

User avatar
bigpup
Moderator
Posts: 6403
Joined: Tue Jul 14, 2020 11:19 pm
Location: Earth, South Eastern U.S.
Has thanked: 757 times
Been thanked: 1325 times

Re: Dumping on boot

Post by bigpup »

How exactly did you do the frugal install?
.
.

menuentry "Puppy " {
search --no-floppy --file --set /pup/vmlinuz
linux /pup/vmlinuz psubdir=/pup pfix=fsck,fsckp
initrd /pup/initrd.gz

search --no-floppy --file --set /pup/vmlinuz
Try this:
search --no-floppy --set=root --file /pup/vmlinuz

linux /pup/vmlinuz psubdir=/pup pfix=fsck,fsckp
Try this:
linux /pup/vmlinuz pmedia=atahd psubdir=/pup pfix=fsck,fsckp

Forum Global Moderator
The things you do not tell us, are usually the clue to fixing the problem.
When I was a kid, I wanted to be older.
This is not what I expected :o

User avatar
taersh
Posts: 951
Joined: Tue Jul 07, 2020 11:13 pm
Location: Germany
Has thanked: 53 times
Been thanked: 119 times

Re: Frugal Fossapup 'Dumping last lines of tmp/bootinit/log' on boot

Post by taersh »

...haha
no usb plugged in at this time.

So, booting is fine and quick without usb flash drive plugged in?

My Music:
https://soundcloud.com/user-633698367
Using my own build of Bionic64
The far-left is as fascist as the far-right is!

mivison
Posts: 27
Joined: Tue Nov 24, 2020 5:43 pm
Has thanked: 4 times

Re: Frugal Fossapup 'Dumping last lines of tmp/bootinit/log' on boot

Post by mivison »

@bigpup
Well I tried changing the grub code, but it is still the same. I'm thinkful that it still boots because I am very use to Puppy and how to move around in it. To answer your question on my install. I just copied the needed files to a directory I named pup. Then I copied and pasted some code from another grub menu I had on a different PC. I had already installed Antix Linux as an alternative. So I just added Puppy to the Antix grub menu. How ever it was acting like this before. Like I said when I had Windows on here.

Last edited by mivison on Sat Feb 20, 2021 5:59 am, edited 1 time in total.
mivison
Posts: 27
Joined: Tue Nov 24, 2020 5:43 pm
Has thanked: 4 times

Re: Dumping on boot

Post by mivison »

@taersh
I tryed this too. something keeps changing it back to 60 sec.

taersh wrote: Fri Feb 19, 2021 5:27 am

If nothing helps, you could edit the init script in initrd.gz.

Search for:

Code: Select all

L_PAUSING_60_SECONDS

In Function check_status() you'll find code:

Code: Select all

    else
      echo "${L_PAUSING_60_SECONDS}" >/dev/console
      sleep 60
    fi

Change the sleep 60 to (perhaps) sleep 5?

User avatar
foxpup
Posts: 186
Joined: Fri Jul 24, 2020 1:23 pm
Location: Europe near the Northsea
Has thanked: 75 times
Been thanked: 32 times

Re: Dumping on boot

Post by foxpup »

mivison wrote: Sat Feb 20, 2021 5:58 am

something keeps changing it back to 60 sec.

Sure you have repacked initrd.gz the proper way? It is with cpio.

Have you tried other Puppys? Is it the same?

User avatar
bigpup
Moderator
Posts: 6403
Joined: Tue Jul 14, 2020 11:19 pm
Location: Earth, South Eastern U.S.
Has thanked: 757 times
Been thanked: 1325 times

Re: Frugal Fossapup 'Dumping last lines of tmp/bootinit/log' on boot

Post by bigpup »

What model Dell laptop is this computer?

Is the internal drive a hard drive or SSD?

Forum Global Moderator
The things you do not tell us, are usually the clue to fixing the problem.
When I was a kid, I wanted to be older.
This is not what I expected :o

mivison
Posts: 27
Joined: Tue Nov 24, 2020 5:43 pm
Has thanked: 4 times

Re: Frugal Fossapup 'Dumping last lines of tmp/bootinit/log' on boot

Post by mivison »

@foxpup
I did not.I just used Geany. I don't know what cpio is. I'm mainly just a user. :)

mivison
Posts: 27
Joined: Tue Nov 24, 2020 5:43 pm
Has thanked: 4 times

Re: Frugal Fossapup 'Dumping last lines of tmp/bootinit/log' on boot

Post by mivison »

bigpup wrote: Sat Feb 20, 2021 8:17 pm

What model Dell laptop is this computer?

Is the internal drive a hard drive or SSD?

SSD
Inspiron 13, 5000 Series

User avatar
taersh
Posts: 951
Joined: Tue Jul 07, 2020 11:13 pm
Location: Germany
Has thanked: 53 times
Been thanked: 119 times

Re: Frugal Fossapup 'Dumping last lines of tmp/bootinit/log' on boot

Post by taersh »

mivison wrote: Sun Feb 21, 2021 4:15 am

@foxpup
I did not.I just used Geany. I don't know what cpio is. I'm mainly just a user. :)

If you left-click the initrd.gz there will be an option to expand it to /root.
If expanded, a directory opens and you can edit the init script.
Save the init script after being modified/edited and click the initrd.gz file again,
but make sure to click/update the prev. expanded initrd.gz.
You'll be asked for to update the initrd.gz.
Choose yes.

Reboot...

My Music:
https://soundcloud.com/user-633698367
Using my own build of Bionic64
The far-left is as fascist as the far-right is!

User avatar
foxpup
Posts: 186
Joined: Fri Jul 24, 2020 1:23 pm
Location: Europe near the Northsea
Has thanked: 75 times
Been thanked: 32 times

Re: Frugal Fossapup 'Dumping last lines of tmp/bootinit/log' on boot

Post by foxpup »

Just to clarify:

The initrd.gz contains the init script, the minimal initial basic structure for a Puppy and some tools (modules etc).
You can handle the init script in a texteditor (geany).
The initrd.gz has to be handled with cpio.
cpio is a command. I think it stands for 'copy in and out'.
It dates from the early unix times when tapes where common.
And that is what happens when you follow the instructions of @taersh here above.
In Fossapup there is a tool, a script, that does that for you.

Last edited by foxpup on Sun Feb 21, 2021 10:19 am, edited 2 times in total.
LateAdopter
Posts: 113
Joined: Sat Aug 15, 2020 5:10 pm
Been thanked: 17 times

Re: Frugal Fossapup 'Dumping last lines of tmp/bootinit/log' on boot

Post by LateAdopter »

Hello mivision
This happens to me if the modules listed in fossapup64initmodules.txt are not in the kernel-modules sfs (zdrv)
In my case it's because I have built them into the kernel and they are no longer separate modules.

You need to look at which modules are listed in fossapup64initmodules.txt to see if they are significant.

If you rename fossapup64initmodules.txt it should stop hanging at that point but you might need to work out why the module(s) have gone missing. Perhaps you have switched to a different kernel.

The fossapup64initmodules.txt is in the same directory as the savefile.

User avatar
foxpup
Posts: 186
Joined: Fri Jul 24, 2020 1:23 pm
Location: Europe near the Northsea
Has thanked: 75 times
Been thanked: 32 times

Re: Frugal Fossapup 'Dumping last lines of tmp/bootinit/log' on boot

Post by foxpup »

LateAdopter wrote: Sun Feb 21, 2021 9:07 am

Perhaps you have switched to a different kernel.

When you switch kernel, you have to switch both vmlinuz, the kernel proper,
and the zdrv.sfs, with the separate kernel modules, that goes with it.

You have to change the name of zdrv to match for the Puppy.
You do not change the initrd.gz, so the init still looks for the original name of the zdrv.sfs.

User avatar
bigpup
Moderator
Posts: 6403
Joined: Tue Jul 14, 2020 11:19 pm
Location: Earth, South Eastern U.S.
Has thanked: 757 times
Been thanked: 1325 times

Re: Frugal Fossapup 'Dumping last lines of tmp/bootinit/log' on boot

Post by bigpup »

your question on my install. I just copied the needed files to a directory I named pup.

Sorry, but this does eliminate one possible cause.
What exact files did you put in the pup directory?

Forum Global Moderator
The things you do not tell us, are usually the clue to fixing the problem.
When I was a kid, I wanted to be older.
This is not what I expected :o

User avatar
rcrsn51
Posts: 1244
Joined: Sun Aug 23, 2020 4:26 pm
Been thanked: 284 times

Re: Frugal Fossapup 'Dumping last lines of tmp/bootinit/log' on boot

Post by rcrsn51 »

It would be useful to see what was on the screen just before the "Dumping" lines.

mivison
Posts: 27
Joined: Tue Nov 24, 2020 5:43 pm
Has thanked: 4 times

Re: Frugal Fossapup 'Dumping last lines of tmp/bootinit/log' on boot

Post by mivison »

by taersh » Sun Feb 21, 2021 12:41 am

mivison wrote: ↑Sat Feb 20, 2021 10:15 pm

@foxpup
I did not.I just used Geany. I don't know what cpio is. I'm mainly just a user. :)

If you left-click the initrd.gz there will be an option to expand it to /root.
If expanded, a directory opens and you can edit the init script.
Save the init script after being modified/edited and click the initrd.gz file again,
but make sure to click/update the prev. expanded initrd.gz.
You'll be asked for to update the initrd.gz.
Choose yes.

Reboot...

Yep that spead up the boot time. I changed 60 to 4 seconds.
Thanks! :thumbup: :D

Post Reply

Return to “Boot”