First Rib with Plug script.

Moderator: Forum moderators

User avatar
wiak
Posts: 4311
Joined: Tue Dec 03, 2019 6:10 am
Location: Packing - big job
Has thanked: 70 times
Been thanked: 1296 times
Contact:

Re: First Rib with Plug script.

Post by wiak »

rockedge wrote: Wed Aug 16, 2023 11:05 pm

@wiak All of my reports today are results from build runs using:

Code: Select all

build_firstrib_rootfs.sh
version="8.0.0"; revision="-rc5"

As I mentioned early today I git pulled the latest from GitHub and have been running builds today using what ever the very latest commits have been.

I have not seen the resolver.confORIG problem at all today. I mentioned that I did see it before. Both builds I ran in the last hour both have still had pieces mounted but once umounted the file systems works fine. These 2 runs have been Fedora and now I am doing a KL Void minimal to start a fresh experimental platform.

Unless indicated I am using the very latest version of the build script which is version="8.0.0"; revision="-rc5" at this moment.

Okay, thanks rockedge. Must be a different problem to do with the mount binds. I have no time as I say right now, but will check that later. Just posted 8.0.0 -rc6, but that won't fix any mount bind issues.

Quick check and I note that I have the addons_f.plug being sourced prior to the bind umounts. That is potentially problematic. If you do a cd inside the addons_f.plug that would mean the umounts might not work. i.e. the issue could be something in addons_f.plug. I'll try and re-arrange that more safely when I have time to look into the likely cause later.

Code: Select all

    [ -s ./addons_f.plug ] && . ./addons_f.plug  # for downloading layer addons and FR utils (e.g. 12KL...sfs; 11rox...sfs, wd_grubconfig)
    sync;sync
	# Finished doing the INSIDE_CHROOT stuff so can now clean up the chroot bind mounts:
	umount -l firstrib_rootfs/proc && umount -l firstrib_rootfs/sys && umount -l firstrib_rootfs/dev/pts && umount -l firstrib_rootfs/dev

https://www.tinylinux.info/
DOWNLOAD wd_multi for hundreds of 'distros' at your fingertips: viewtopic.php?p=99154#p99154
Αξίζει να μεταφραστεί;

User avatar
wiak
Posts: 4311
Joined: Tue Dec 03, 2019 6:10 am
Location: Packing - big job
Has thanked: 70 times
Been thanked: 1296 times
Contact:

Re: First Rib with Plug script.

Post by wiak »

Finished one home job, so took quick stab at fixing build_firstrib_rootfs.sh again. Did a fedora build from scratch and no error and resolv.conf was created and returned to what it was as I hoped. No mounts were dangling. Might have been a lucky one and may be differnent on a Void Linux build. However, one step at a time.

Also, if you do get dangling mounts, the best attempt to remove these apart from manually umount or rebooting is to not use mount_chroot.sh, but rather umount_chroot.sh and if the filesystem isn't named firstrib_rootfs but something else, say 07firstrib_rootfs then you'd run the umount_chroot command as:

Code: Select all

./umount_chroot.sh 07firstrib_rootfs

However, I don't want dangling mounts so hopefully latest yet again build_firstrib_rootfs.sh upload to gitlab ver 8.0.0 -rc7 has fixed that at least for fedora build case. I'll need to think about this more carefully since current hack done in too much of a rush...

It's tricky/inconvenient to everyone when a new build is suddenly popular but tricky little bug-fixes are needed and going on... but that's life...

https://www.tinylinux.info/
DOWNLOAD wd_multi for hundreds of 'distros' at your fingertips: viewtopic.php?p=99154#p99154
Αξίζει να μεταφραστεί;

User avatar
rockedge
Site Admin
Posts: 7047
Joined: Mon Dec 02, 2019 1:38 am
Location: Connecticut,U.S.A.
Has thanked: 3160 times
Been thanked: 2946 times
Contact:

Re: First Rib with Plug script.

Post by rockedge »

I finished up a KLF build without any addons_f.plug file included. The build finished successfully and everything was un-mounted. Earlier when the dangling mounts first appeared my first try at it was the umount_chroot script. That did not do it. But first using mount_chroot then the umount script fixed it. The very next build run using the scripts did not umount anything and I did it manually. But now with the rootfs name change commented out or in my case, no addons_f.plug included, the umount of the file system is correct and complete.

Also I have begun to delete the contents of /var/cache directories as well as the contents of /usr/lib/modules and /usr/lib/firmware and so far have not had any noticeable side-effects. The empty cache directories saved another 131 M in the rootfs.

User avatar
wiak
Posts: 4311
Joined: Tue Dec 03, 2019 6:10 am
Location: Packing - big job
Has thanked: 70 times
Been thanked: 1296 times
Contact:

Re: First Rib with Plug script.

Post by wiak »

rockedge wrote: Thu Aug 17, 2023 1:45 am

Also I have begun to delete the contents of /var/cache directories as well as the contents of /usr/lib/modules and /usr/lib/firmware and so far have not had any noticeable side-effects. The empty cache directories saved another 131 M in the rootfs.

Yes, I usually delete most cache directories when making iso. I check value of that with the likes of gdmap.

That latest builf_firstrib5_rootfs.sh now only processes addons_f.plug after unmount cleanups done so hopefully ok now. It was daft of me putting addons processing earlier - don't know what I was thinking... Was working on too many things in parallel so accidentally set that booby trap.

It's the fedora fdstrap.sh that caused grief. It leaves behind dangling /etc/resolv.conf symlink which other builds never did. Problem resulting was previous code couldn't do straight cp of host system resolv.conf over a symlink so needed to delete it temporarily first, but I wanted to restore original at the end, which I now do. Fdstrap.sh build caused same issue with mount_chroot.sh. Never had issues with that before, which is how I noticed the problem. Simple fix but slightly tricky and I messed it up... but hopefully fixed in both scripts now.

Last edited by wiak on Thu Aug 17, 2023 2:27 am, edited 3 times in total.

https://www.tinylinux.info/
DOWNLOAD wd_multi for hundreds of 'distros' at your fingertips: viewtopic.php?p=99154#p99154
Αξίζει να μεταφραστεί;

User avatar
wiak
Posts: 4311
Joined: Tue Dec 03, 2019 6:10 am
Location: Packing - big job
Has thanked: 70 times
Been thanked: 1296 times
Contact:

Re: First Rib with Plug script.

Post by wiak »

Other issue was that I didnt plan for addons_f.plug before. Proper fix will be to store builddir path and cd there prior to umount cleanups. Current build script using too many simple relative links like cd ..
I'll replace most of them with absolute paths to make more robust later. I.e. use of $PWD or pwd or similar at builddir location. That approach avoids such addons_plug accidents altogether.

https://www.tinylinux.info/
DOWNLOAD wd_multi for hundreds of 'distros' at your fingertips: viewtopic.php?p=99154#p99154
Αξίζει να μεταφραστεί;

williwaw
Posts: 2151
Joined: Tue Jul 14, 2020 11:24 pm
Has thanked: 196 times
Been thanked: 414 times

Re: First Rib with Plug script.

Post by williwaw »

wiak wrote: Wed Aug 16, 2023 10:30 pm

But did some or all of your builds work?

the builds I attempted in viewtopic.php?p=96403#p96403
never got fully build on account of my poor internet connection, my inexperience, issues with the script and lack of a kernel.

as for the ones attempted in viewtopic.php?t=9367
they all booted, even the early ones without 00zdr and 01fdr, albeit the framebuffer? (where the text drops down to the smaller size?) never kicked in and my issues were trying to get NetworkManager running, which now seems to work with the configuration last reported in that How-To.

If you want to download these components you either just do so on the host using wget to gitlab firstrib, or you put the download (wget) commands inside an addons_f.plug just prior to doing the build.

will try tonight with addons_f.plug. are there choices to be considered as to what needs to get downloaded to the boot folder? is there a example addons_f.plug that pulls in what ever else is needed to be obtained (besides the building of the firstrib-rootfs) to make a frugal install?

User avatar
wiak
Posts: 4311
Joined: Tue Dec 03, 2019 6:10 am
Location: Packing - big job
Has thanked: 70 times
Been thanked: 1296 times
Contact:

Re: First Rib with Plug script.

Post by wiak »

addons_f.plug is just a list of commands you might want to do at the end of building firstrib_rootfs. I've only thus far ever used it with fedora rawhide builds, but the ones from there are generic. Which one you use depends if you want to also download a (usually) working huge-kernel/00zdrv(moduls)/01fdr(firmware) combination. The one below does all of that including the almost always useful 12KL sfs and, if a GUI build the sometimes useful 11r_rox sfs. Also fetches the necessary FR initrd.gz for booting and moves firstrib_rootfs to a necessary numbered layer (07firstrib_rootfs).

The other stuff below are optional utilities such as modify_initrd_gz.sh (allowing user to change initrd.gz contents), mount_chroot.sh (allowing user to chroot into a completed firstrib_rootfs, or 07firstrib_rootfs build to add packages; usually via the applicable package manager in the build), and umount_chroot.sh, which cleans up the bind mounts used by mount_chroot.sh. I'll probably change mount_chroot.sh cos really could clean up the bind mounts at the end of that script though the umount script proves useful to get out of trouble sometimes. Most all FR utilities have a --help option. Basically it is a kit for building distros with build_firstrib_rootfs.sh along with the FR skeleton initrd.gz being the main part of it; the other utilities are optional and user can fetch whatever huge-kernel/00modules/01firmware sfs combination they want to use... Just happen to be using addons_f.plug to script such manual little bits and pieces for convenience, but isn't really necessary. It's really just a new facility to help me easily provide full build examples.

Regular forum members like yourself who have plenty of experience more generally at the commandline and understand the purpose of vmlinuz, modules, firmware, and initrd.gz don't actually need it since can just copy and paste in the bits and pieces manually to complete the frugal install. However, it does give us all a way of providing our own builds for others to use without them having to type in anything manually aside from the ./build_firstrib_rootfs.sh commandline.

So, generic, addons_f.plug content (though user can add whatever they want since just really the manual commands they might choose to do once main firstrib_rootfs/ has been created:

Code: Select all

# addon code such as FR utils and numbered sfs addons that can/will be loaded added to overlay during boot
# wiak Created: 13Aug2023; Revised: 16Aug2023

# Main KL addon containing the likes of gtkdialog, filemnt, UExtract, gxmessage, and more
wget -c https://gitlab.com/firstrib/firstrib/-/raw/master/latest/build_system/12KL_gtkdialogGTK3filemnt64.sfs

wget -c https://gitlab.com/firstrib/firstrib/-/raw/master/latest/build_system/initrd-latest.gz -O initrd.gz  # FR skeleton initrd.gz

# The following are optional (disclaimer: may be untested or had limited testing so use at own risk like everything else provided by FirstRib/KL build system):

# Roxfiler install (made from Fedora 38 rpm provided by rockedge):
wget -c https://gitlab.com/firstrib/firstrib/-/raw/master/latest/build_system/11r_rox-filer-2.11-1.x86_64.sfs

# Some useful FR utilities for distro builders
wget -c https://gitlab.com/firstrib/firstrib/-/raw/master/latest/build_system/wd_grubconfig && chmod +x wd_grubconfig
wget -c https://gitlab.com/firstrib/firstrib/-/raw/master/latest/build_system/modify_initrd_gz.sh && chmod +x modify_initrd_gz.sh
wget -c https://gitlab.com/firstrib/firstrib/-/raw/master/latest/build_system/mount_chroot.sh && chmod +x mount_chroot.sh
wget -c https://gitlab.com/firstrib/firstrib/-/raw/master/latest/build_system/umount_chroot.sh && chmod +x umount_chroot.sh


# huge-kernel, 00modules and 00firmware. Change to alternatives of your own if you wish
wget -c https://gitlab.com/firstrib/firstrib/-/raw/master/latest/build_system/huge_kernels/upup_22_04/vmlinuz
wget -c https://gitlab.com/firstrib/firstrib/-/raw/master/latest/build_system/huge_kernels/upup_22_04/00zdrv_upup_22.04.sfs  # modules
wget -c https://gitlab.com/firstrib/firstrib/-/raw/master/latest/build_system/huge_kernels/upup_22_04/01fdrv_upup_22.04.sfs  # firmware

# Number the layer ready for booting
mv firstrib_rootfs 07firstrib_rootfs

# Under-test/optional addons: NOTE WELL: uncomment below wget line(s) to use these

# poorercputemp;From Sofiya
#wget -c https://gitlab.com/firstrib/firstrib/-/raw/master/latest/build_system/14poorercputemp_usrlocalbin-0.2_1.x86_64.sfs -O 14poorercputemp_usrlocalbin-0.2_1.x86_64.sfs

https://www.tinylinux.info/
DOWNLOAD wd_multi for hundreds of 'distros' at your fingertips: viewtopic.php?p=99154#p99154
Αξίζει να μεταφραστεί;

williwaw
Posts: 2151
Joined: Tue Jul 14, 2020 11:24 pm
Has thanked: 196 times
Been thanked: 414 times

Re: First Rib with Plug script.

Post by williwaw »

wiak, I gave it a go with out the addon .plug and with the build-rootfs 800-7

seems to be working fine, and downloading my new desktop at the moment

posting from a different machine, and I know I got the build script name wrong but the latest version, anyways, uploaded 5 or 6 hours ago.

williwaw
Posts: 2151
Joined: Tue Jul 14, 2020 11:24 pm
Has thanked: 196 times
Been thanked: 414 times

Re: First Rib with Plug script.

Post by williwaw »

rockedge wrote: Sun Jul 30, 2023 1:43 pm

@geo_c Here we go!

These instructions are for Void Linux based systems. Void Linux is proving to be one of if not the most efficient Linux operating system currently available.
These are the steps here outlined:
1. build the rootfs
2. clean up rootfs then squash it it to 07rootfs.sfs
3. mount the uncompressed firstrib_rootfs using the utility mount_chroot.sh

Code: Select all

./mount_chroot.sh firstrib_rootfs

4.using xbps-install -y linux get a Void Linux kernel (later we can go over how to use a huge kernel instead.)
5. using the initrd build script create the initrd.img which is equal to initrd.gz and can be renamed to that.
6. using the extract kernel script build the vmlinuz

To start create a directory to build in. For this example I'll call it /prototype. After downloading Firstrib-utilites.tar.xz decompress the file and copy the files to the directory /prototype which then should look like this screenshot:
Screenshot(24).jpg

For the PLUG I'll choose f_00_Void_KLV_XFCE_no-kernel_WDLteam-RC5.plug which will be copied to /prototype
Screenshot(25).jpg

Now start a to build the rootfs in a terminal within /prototype:

Code: Select all

./build_firstrib_rootfs.sh void roll amd64 f_00_Void_KLV_XFCE_no-kernel_WDLteam-RC5.plug

Screenshot(26).jpg
Go get coffee.
Once finished there should be a directory /prototype/firstrib_rootfs

If you get here, we are ready to make the rootfs.sfs and prepare for building the initrd.gz and extracting the vmlinuz.

I am curious about step 2. In what way do you clean up your rootfs before squashing it or otherwise using it as 07rootfs?

I am more curious about step 4. Can xbps-install -y linux be used in a plugfile during an initial build of the firstrib-rootfs? does it create a vmlinz that I can pull out of the firstrib-rootfs before squashing (or not) into 07rootfs.sfs?

User avatar
rockedge
Site Admin
Posts: 7047
Joined: Mon Dec 02, 2019 1:38 am
Location: Connecticut,U.S.A.
Has thanked: 3160 times
Been thanked: 2946 times
Contact:

Re: First Rib with Plug script.

Post by rockedge »

In what way do you clean up your rootfs before squashing it or otherwise using it as 07rootfs?

Clean the caches! Empty /var/cache/xbps and /var/cache/fontconfig and empty /root/cache/sessions and any other directories.
Check the /root/.bash_history and ensure it is empty. Check also any file that has shell history like if /root/.history exists, is also empty.

Can xbps-install -y linux be used in a plugfile during an initial build of the firstrib-rootfs? does it create a vmlinz that I can pull out of the firstrib-rootfs before squashing (or not) into 07rootfs.sfs?

Yes it can! After the firstrib_rootfs is created with xbps-install -y linux added in, run the script FRmake_initrd .sh like this:

Code: Select all

./FRmake_initrd.sh latest firstrib_roots

Then run FRextract_kernel.sh to extract the vmlinuz like this:

Code: Select all

./FRextract_kernel.sh firstrib_rootfs

Check /usr/lib/modules and /usr/lib/firmeware are empty because these contents will be supplied by 00modules.sfs and the 01firmware.sfs.
now squash the uncompressed modulesXXXXX directory. To make the 01firmware.sfs take the contents of /firstrib_rootfs/usr/lib/firmware and make a squash file from it BEFORE deleting the contents.

williwaw
Posts: 2151
Joined: Tue Jul 14, 2020 11:24 pm
Has thanked: 196 times
Been thanked: 414 times

Re: First Rib with Plug script.

Post by williwaw »

rockedge wrote: Thu Aug 17, 2023 5:37 pm

In what way do you clean up your rootfs before squashing it or otherwise using it as 07rootfs?

Clean the caches! easy enough, thanks!

Can xbps-install -y linux be used in a plugfile during an initial build of the firstrib-rootfs? does it create a vmlinz that I can pull out of the firstrib-rootfs before squashing (or not) into 07rootfs.sfs?

Yes it can! After the firstrib_rootfs is created with xbps-install -y linux added in, run the script FRmake_initrd .sh like this:

Code: Select all

./FRmake_initrd.sh latest firstrib_roots

Then run FRextract_kernel.sh to extract the vmlinuz like this:

Code: Select all

./FRextract_kernel.sh firstrib_rootfs

Check /usr/lib/modules and /usr/lib/firmeware are empty because these contents will be supplied by 00modules.sfs and the 01firmware.sfs.
now squash the uncompressed modulesXXXXX directory. To make the 01firmware.sfs take the contents of /firstrib_rootfs/usr/lib/firmware and make a squash file from it BEFORE deleting the contents.

squash the uncompressed modulesXXXXX directory

like this?
cd /firtsrib-rootfs/usr/lib
mksquash modules 00modules.sfs

hmmm..
But with the firmware you say to squash the contents
so....
cd /firstrib_rootfs/usr/lib/firmware
mksquashfs directory-a directory-b directory-c.... 01firmware.sfs

any particular options for mksquashfs?

User avatar
rockedge
Site Admin
Posts: 7047
Joined: Mon Dec 02, 2019 1:38 am
Location: Connecticut,U.S.A.
Has thanked: 3160 times
Been thanked: 2946 times
Contact:

Re: First Rib with Plug script.

Post by rockedge »

To create the firmware SFS first make a directory /01firmware
Then inside of /01firmware make directories /usr/lib/
Copy from /firstrib_rootfs the directory /usr/lib/firmware and it's contents over to the /01firmware directory you created in the step before.
So it looks like this:
/01firmware/usr/lib/firmware

Then squash the directory /01firmware with PackIt to 01firmware.sfs

User avatar
wiak
Posts: 4311
Joined: Tue Dec 03, 2019 6:10 am
Location: Packing - big job
Has thanked: 70 times
Been thanked: 1296 times
Contact:

Re: First Rib with Plug script.

Post by wiak »

@rockedge

I was looking back to May 2019 near when I first started making build_firstrib_rootfs script which at that time was for Void Linux root filesystem builds only. Wow, it was intense work at the time, and you came along early too!

https://oldforum.puppylinux.com/viewtop ... 8#p1029088

#17 Post by rockedge » Sat 25 May 2019, 19:05
you caught my attention...so I am going to set up what you have built.

Looks interesting and I will report if successful..

Then by June 2019 work the very first initrd had been made and no more than a couple of months later the initrd.gz of the time was pretty close in most basic functionality to what FR skeleton initrd.gz is now! Well all the pretty complex w_bootfrom, w_changes, w_altNN, UUID, LABEL related code was added in the years since... but the core stuff (e.g. up to 99, NN numbered layers: compressed as sfs, or as uncompressed directories) was already long in place.

https://oldforum.puppylinux.com/viewtop ... 9#p1030339

wiak wrote:

Started new thread on creation of initramfs for FirstRib to allow it to be booted independently of any host Linux. The first, very simple, initramfs build script has now been uploaded with details here:
https://oldforum.puppylinux.com/viewtop ... 0#p1030320
As explained there, this first initramfs isn't of much practical use. Rather it is uploaded to illustrate some general principles of initramfs construction.
With suitable vmlinuz kernel (that from BionicPup is highly recommended) it may, depending on your hardware, allow firstrib_rootfs to be booted independently (albeit without internet connectivity unless your firstrib_rootfs has been expanded to include network apps/configuration). Nor does this first initramfs provide save persistence, though next build script (already working but not yet uploaded) will provide that via overlayfs/chroot mechanism.

The earliest firstrib posts didn't involve an initrd at all, but was just used as a chroot system for use in other distros; still very useful for that of course. Anyway, was looking through them for earliest Void Linux build attempts, which were pretty interesting (first few didn't bother with PAM, shadow; just manually created /etc/passwd, and /etc/group, so pretty small commandline only system - neat in a way). Then I've been looking at some of your [rockedge] own later full-on JWM/ROX f_plugs, but seems to be some code lines missing... no mention of installing either xorg, or JWM in them! Thought I should mention this since you have advised some to try building using them. See here:

f_00_Void_KLV_no-kernel_WDLteam-minimal.plug

f_00_Void_KLV_JWM_no-kernel_WDLteam-minimal.plug

No mention of xorg or jwm install in above as far as I can see. They are from your site: https://rockedge.org/kernels under Firstrib->FR-utilities
Or have I just missed something in my quick look?

Last edited by wiak on Fri Aug 25, 2023 1:35 pm, edited 2 times in total.

https://www.tinylinux.info/
DOWNLOAD wd_multi for hundreds of 'distros' at your fingertips: viewtopic.php?p=99154#p99154
Αξίζει να μεταφραστεί;

User avatar
wiak
Posts: 4311
Joined: Tue Dec 03, 2019 6:10 am
Location: Packing - big job
Has thanked: 70 times
Been thanked: 1296 times
Contact:

Re: First Rib with Plug script.

Post by wiak »

I'm actually going 'back in time' to then because I want to see what minimum Void Linux based X build I can make. We were able to use build made via package xorg-minimal in chroot builds back then but found we needed xorg (template with 'lots' provided by it) to get X working with initrd so something to do with missing dependencies it seems. I'd like to find out what was the issue. Maybe we already did, but I can't remember.

One (irrelevant) mistake in most of these f_ plugins is that we install 'shadow', but don't need to since base-minimal already installs that according to its template dependencies.

It was crazy time back then, specially with the initrd development, because I was just making it from first principles and half the time 'guessing' what might or might not work. Didn't use code from any other initrd (cos most all were too complex for me to bother reading like alone understanding) so every dev step was done with little hope anything would actually work... somehow it all did. Nowadays that much is really easy since FR initrd.gz has proven itself to work so faultlessly with so many distro variant root filesystems. Amazing really; frankly I doubt I could have done the same work today as I (somehow) managed back then.

Interestingly, I realised early on the potential to boot most any distros beginning with:

https://oldforum.puppylinux.com/viewtop ... 4#p1032654
FirstRib running an 'actual' Puppy
#157 Post by wiak » Sun 21 Jul 2019, 01:25

wiak wrote:

Just for fun, I used the script on an actual but uncompressed pupXXX.sfs renamed to firstrib_rootfs to use resultant initramfs02.gz to boot that actual Puppy root filesystem:

unsquashed BionicPup64 puppy_bionicpup64_8.0.sfs
renamed the resulting unsquashed directory to firstrib_rootfs
etc...etc...etc...

(Unnecessarily methinks) Sent shivers down some spines at the time.

https://www.tinylinux.info/
DOWNLOAD wd_multi for hundreds of 'distros' at your fingertips: viewtopic.php?p=99154#p99154
Αξίζει να μεταφραστεί;

User avatar
rockedge
Site Admin
Posts: 7047
Joined: Mon Dec 02, 2019 1:38 am
Location: Connecticut,U.S.A.
Has thanked: 3160 times
Been thanked: 2946 times
Contact:

Re: First Rib with Plug script.

Post by rockedge »

@wiak I have been making Firstrib/WeeDog/KLV's for awhile now is true! I realized the huge potential as I read about it and after trying out a build shortly thereafter. The quality of the FirstRib/Kennel Linux builds have improved steadily.

I run into the problem a lot lately that I know early on we worked through how to set up Xorg and all of that was done chroot'ed and then added Xnest into it. With enough confidence we went to frugal set ups quite quickly and I remember, but forgot most details, the efforts to get the X server going. I am always searching around for the old PLUG's and some pop up in the oddest places....forgotten on Google drives and owncloud uploads.......so I went to one of the more advanced JWM+Rox desktop combo's with a Void Linux base. This example was called a WeeDog-Void and is the beginnings of gathering the know-how that the current generation of PLUG's are using.
This one crudely sets up the JWM+Rox desktop with the system configuration files created in the PLUG. Now I just make a xbps package that installs different utilities and set up the configurations that are all installed with the package manager. This is an efficient way to simplify a PLUG build file.

This plug example doesn't include the much improved basic configurations we use these days. Here wiakwifi and wd_mount were fundamental utilities and established a network connection to further build with xbps. The current PLUG's are much better at setting up the base systems and customizing as the WeeDogLinux versions are. Though some of the minimal system builds from a Void Linux base are very lean and truly minimal console only with midnight Commander as the "desktop" and the xbps package manager. Network all handled by wiakwifi and partitions with wd_mount

Code: Select all

# WeeDog Void (tested up to and through firstrib05-s207) outfitted with a basic desktop and the Void Linux kernel
# this version sets up automatic login. Main creditials are user=root, passwd=root
# startx will launch the desktop and time is set to UTC
# all the parameters can changed as desired.
#
xbps-install -y base-minimal file mc
xbps-install -y ncurses-base linux linux-firmware-network wifi-firmware shadow
pwconv # set up passwd system
grpconv
echo -e "root\nroot" | passwd >/dev/null 2>&1 # Quietly set default root passwd to "root"

# set root to use /bin/bash
usermod --shell /bin/bash root

# you can add as many valid commandlines as you want in here
xbps-install -y xorg jwm rox bash xterm lxterminal geany adwaita-icon-theme
xbps-install -y mtpaint htop viewnior xarchiver guvcview ffmpeg alsa-utils
xbps-install -y firefox squashfs-tools vlc gtkdialog chrony leafpad scrot
xbps-install -y yad cpanminus menu-cache librsvg-utils

# Set locale to en_US.UTF-8 
sed -i 's/#en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/default/libc-locales
xbps-reconfigure -f glibc-locales

# Make changes in /etc/X11/xinit/xinitrc to start jwm and rox -p default with startx if startx is included in /etc/rc.local
# and auto starts the X server, jwm and rox before the login prompt.
# Add /root/.xinitrc for the actual startx commands that will be used after logging in as "root"
cp /etc/X11/xinit/xinitrc /root/.xinitrc
sed -i '51,$d' /etc/X11/xinit/xinitrc
echo "jwm &" >>/etc/X11/xinit/xinitrc
echo "rox -p default &" >>/etc/X11/xinit/xinitrc
echo "exec xterm -geometry 60x10+600+480 -name login" >>/etc/X11/xinit/xinitrc
sed -i '51,$d' /root/.xinitrc
echo "rox -p default &" >>/root/.xinitrc
echo "exec jwm" >>/root/.xinitrc

# Change jwm clock to also show date
sed -i 's/<Clock format="%H:%M">/<Clock format="%a %d %b %H:%M">/' /etc/system.jwmrc

# Show MENU in jwm tray
sed -i 's/TrayButton icon="jwm-blue"/TrayButton label="MENU" icon="jwm-blue"/' /etc/system.jwmrc

# Set up VLC to run as root
sed -i 's/geteuid/getppid/' /usr/bin/vlc

# Construct rox pinboard default 
# ***NOTE*** change /mnt/sda1 to match the partition WeeDog is installed on
mkdir /root/.config
mkdir /root/.config/rox.sourceforge.net
mkdir /root/.config/rox.sourceforge.net/ROX-Filer
cd /root/.config/rox.sourceforge.net/ROX-Filer
cat <<'EOF' >> pb_default
<?xml version="1.0"?>
<pinboard>
<backdrop style="Stretched">/usr/share/backgrounds/DarkGray.svg</backdrop>
<icon x="256" y="32" label="mm_viewme">/usr/local/bin/mm_viewme</icon>
<icon x="32" y="128" label="xterm">/usr/share/applications/xterm.desktop</icon>
<icon x="32" y="224" label="firefox">/usr/share/applications/firefox.desktop</icon>
<icon x="128" y="32" label="applications">/usr/share/applications</icon>
<icon x="32" y="32" label="Home">/root</icon>
<icon x="32" y="320" label="geany">/usr/share/applications/geany.desktop</icon>
<icon x="64" y="960" label="sda1">/mnt/sda1</icon>
</pinboard>
EOF

# Network script construction for eth0 and lo
cd /usr/local/bin/
touch net_connect
echo '#!/bin/sh' >>net_connect
echo 'ip link set eth0 up' >>net_connect
echo 'ip link set lo up' >>net_connect
echo 'udhcpc -i eth0' >>net_connect

# Set Time script construction. will set to UTC
# modify /etc/rc.conf to adjust timezone and hardware clock
touch set_time
echo '#!/bin/sh' >>set_time
echo 'chronyd -q "pool pool.ntp.org iburst"' >>set_time

# start audio script construction
touch start_sound
echo '#!/bin/sh' >>start_sound
echo 'modprobe snd_hda_intel' >>start_sound
echo 'alsactl init' >>start_sound

# start_pmcputemp script construction
touch start_pmcputemp
echo '#!/bin/sh' >>start_pmcputemp
echo 'exec pmcputemp' >>start_pmcputemp

# start_retrovol script construction
touch start_retrovol
echo '#!/bin/sh' >>start_retrovol
echo 'exec retrovol' >>start_retrovol

# make both net_connect and start_sound executable
chmod +x /usr/local/bin/start_sound
chmod +x /usr/local/bin/net_connect
chmod +x /usr/local/bin/set_time
chmod +x /usr/local/bin/start_pmcputemp
chmod +x /usr/local/bin/start_retrovol

# Set system to run connection and audio start scripts on bootup
cd /etc
echo "/usr/local/bin/net_connect" >>rc.local
echo "/usr/local/bin/set_time" >>rc.local
echo "/usr/local/bin/start_sound" >>rc.local

#ln -s /etc/sv/alsa /var/service/alsa


# Set Bash as shell
xbps-alternatives --set bash

# create /root/.jwmrc with correct menu links for jwm logged in as root
cd /root/
cat <<'EOF' >> /root/.jwmrc 
<?xml version="1.0"?>
<JWM>
<!-- Disable virtual desktop scroll. -->
	<RootMenu onroot="4"/>
	<RootMenu onroot="5"/>
	
<!-- The root menu. -->
  <RootMenu onroot="12" height="24">
    <Program icon="/usr/share/icons/Adwaita/48x48/legacy/utilities-terminal.png" label="Terminal">xterm -bg black -fg green</Program>
    <Program icon="/usr/share/pixmaps/rox.png" label="ROX">rox</Program>
      <Menu icon="/usr/share/icons/Adwaita/48x48/legacy/system-run.png" label="Applications">
         <Program icon="/usr/share/icons/hicolor/16x16/apps/vlc.png" label="VLC">vlc</Program>
         <Program icon="/usr/share/icons/hicolor/128x128/apps/lxterminal.png" label="lxterminal">lxterminal</Program>
         <Program icon="/usr/share/pixmaps/mtpaint.png" label="mtpaint">mtpaint</Program>
         <Program icon="/usr/share/icons/Adwaita/32x32/legacy/camera-web.png" label="guvcview">guvcview</Program>
         <Program icon="/usr/share/icons/hicolor/32x32/apps/firefox.png" label="Firefox">firefox</Program>
         <Program icon="/usr/share/icons/hicolor/32x32/apps/leafpad.png" label="leafpad">leafpad</Program>
       </Menu>
        <Menu icon="/usr/share/icons/Adwaita/48x48/legacy/applications-system.png" label="Utilities">
            <Program icon="/usr/share/icons/Adwaita/256x256/legacy/preferences-desktop-font.png" label="Fonts">xfontsel</Program>
            <Program icon="/usr/share/icons/Adwaita/256x256/legacy/preferences-desktop-remote-desktop.png" label="Window Properties">
                xprop | xmessage -file -
            </Program>
            <Program icon="/usr/share/icons/Adwaita/256x256/legacy/preferences-desktop-display.png" label="Window Information">
                xwininfo | xmessage -file -
            </Program>
        </Menu>
        <Separator/>
        <Program icon="/usr/share/icons/Adwaita/256x256/legacy/system-lock-screen.png" label="Lock">
            xlock -mode blank
        </Program>
        <Separator/>
        <Restart label="Restart" icon="/usr/share/icons/Adwaita/48x48/actions/view-refresh-symbolic.symbolic.png"/>
        <Exit label="Exit" confirm="true" icon="/usr/share/icons/Adwaita/48x48/actions/application-exit-symbolic.symbolic.png"/>
        <Program icon="/usr/share/icons/Adwaita/48x48/actions/system-shutdown-symbolic.symbolic.png" label="Shutdown">xlunch-logout</Program>
    </RootMenu>
 <!-- Options for program groups. -->
    <Group>
        <Option>tiled</Option>
        <Option>aerosnap</Option>
    </Group>
    <Group>
        <Class>Pidgin</Class>
        <Option>sticky</Option>
    </Group>
    <Group>
        <Name>xterm</Name>
        <Option>vmax</Option>
    </Group>
    <Group>
        <Name>xclock</Name>
        <Option>drag</Option>
        <Option>notitle</Option>
    </Group>
                                                           
  <!-- Tray at the bottom. -->
    <Tray x="0" y="-1" autohide="off" height="24">
        <TrayButton label="MENU" icon="jwm-blue">root:1</TrayButton>
        <Spacer width="2"/>
        <TrayButton popup="xlunch" icon="/usr/share/pixmaps/xlunch-logo.png">exec:xluncher3</TrayButton>
        <Spacer width="2"/>
        <TrayButton label="_">showdesktop</TrayButton>
        <Spacer width="2"/>
                                                           
    <Pager labeled="true"/>
        <TaskList maxwidth="256"/>
                                                           
    <Dock/>
                                                                 
        <Swallow name="xload" width="32">xload -nolabel -bg "#444444" -fg "#00FF00" -hl "#4C7CC1"</Swallow>
        <Clock format="%a %d %b %H:%M"><Button mask="123">exec:xclock</Button></Clock>
                                                           
    </Tray>
                                                           
<!-- Visual Styles -->
    <WindowStyle>
        <Font>Sans-9:bold</Font>
        <Width>4</Width>
        <Height>21</Height>
        <Corner>3</Corner>
        <Foreground>#FFFFFF</Foreground>
        <Background>#555555</Background>
        <Outline>#000000</Outline>
        <Opacity>0.5</Opacity>
        <Active>
            <Foreground>#FFFFFF</Foreground>
            <Background>#0077CC</Background>
            <Outline>#000000</Outline>
            <Opacity>1.0</Opacity>
        </Active>
    </WindowStyle>
    <TrayStyle group="true" list="all">
        <Font>Sans-9</Font>
        <Background>#333333</Background>
        <Foreground>#FFFFFF</Foreground>
        <Outline>#000000</Outline>
        <Opacity>0.75</Opacity>
    </TrayStyle>
    <TaskListStyle>
      <Font>Sans-9</Font>
      <Active>
        <Foreground>#FFFFFF</Foreground>
        <Background>#555555</Background>
      </Active>
      <Foreground>#FFFFFF</Foreground>
      <Background>#333333</Background>
    </TaskListStyle>
    <PagerStyle>
        <Outline>#000000</Outline>
        <Foreground>#555555</Foreground>
        <Background>#333333</Background>
        <Text>#FFFFFF</Text>
        <Active>
            <Foreground>#0077CC</Foreground>
            <Background>#004488</Background>
        </Active>
    </PagerStyle>
    <MenuStyle>
        <Font>Sans-9</Font>
        <Foreground>#FFFFFF</Foreground>
        <Background>#333333</Background>
        <Outline>#000000</Outline>
        <Active>
            <Foreground>#FFFFFF</Foreground>
            <Background>#0077CC</Background>
       </Active>
        <Opacity>0.85</Opacity>
    </MenuStyle>
    <PopupStyle>
        <Font>Sans-9</Font>
        <Foreground>#000000</Foreground>
        <Background>#999999</Background>
   </PopupStyle>
                                                           
<!-- Path where icons can be found.
         IconPath can be listed multiple times to allow searching
         for icons in multiple paths.
     -->
    <IconPath>
        /usr/share/icons/wm-icons/32x32-aquafusion
    </IconPath>
    <IconPath>
        /usr/local/share/jwm
    </IconPath>
                                                           
    <!-- Virtual Desktops -->
    <!-- Desktop tags can be contained within Desktops for desktop names. -->
    <Desktops width="4" height="1"> 
        <!-- Default background. Note that a Background tag can be
              contained within a Desktop tag to give a specific background
              for that desktop.
         -->
        <Background type="solid">#111111</Background>
    </Desktops>
                                                           
<!-- Double click speed (in milliseconds) -->
    <DoubleClickSpeed>400</DoubleClickSpeed>
                                                           
<!-- Double click delta (in pixels) -->
    <DoubleClickDelta>2</DoubleClickDelta>
                                                           
<!-- The focus model (sloppy or click) -->
    <FocusModel>click</FocusModel>
                                                           
<!-- The snap mode (none, screen, or border) -->
    <SnapMode distance="10">border</SnapMode>
                                                           
<!-- The move mode (outline or opaque) -->
    <MoveMode>opaque</MoveMode>
                                                           
<!-- The resize mode (outline or opaque) -->
    <ResizeMode>opaque</ResizeMode>
                                                           
<!-- Key bindings -->
    <Key key="Up">up</Key>
    <Key key="Down">down</Key>
    <Key key="Right">right</Key>
    <Key key="Left">left</Key>
    <Key key="h">left</Key>
    <Key key="j">down</Key>
    <Key key="k">up</Key>
    <Key key="l">right</Key>
    <Key key="Return">select</Key>
    <Key key="Escape">escape</Key>
                                                           
    <Key mask="A" key="Tab">nextstacked</Key>
    <Key mask="A" key="F4">close</Key>
    <Key mask="A" key="#">desktop#</Key>
    <Key mask="A" key="F1">root:1</Key>
    <Key mask="A" key="F2">window</Key>
    <Key mask="A" key="F10">maximize</Key>
    <Key mask="A" key="Right">rdesktop</Key>
    <Key mask="A" key="Left">ldesktop</Key>
    <Key mask="A" key="Up">udesktop</Key>
    <Key mask="A" key="Down">ddesktop</Key>

    <StartupCommand>start_retrovol &</StartupCommand>
    <StartupCommand>start_pmcputemp &</StartupCommand>
                                                           
</JWM>
EOF

# install pmcputemp 0.63
mkdir /root/Build
cd /root/Build
wget http://rockedge.org/kernels/data/firstrib/pmcputemp-0.63a.tar.gz
tar xvfz pmcputemp-0.63a.tar.gz
cd pmcputemp-0.63a
cp -r $PWD/root/.config/pmcputemp /root/.config/pmcputemp
cp -r $PWD/root/.config/autostart/pmcputemp.desktop /usr/share/applications/pmcputemp.desktop
cp -r $PWD/usr/bin/pmcputemp /usr/bin/pmcputemp
cp -r $PWD/usr/bin/pmcputemp.sh /usr/bin/pmcputemp.sh
 
# install retrovol 0.10
cd /root/Build
wget http://rockedge.org/kernels/data/firstrib/retrovol-0.10-x86_64.tar.gz
tar xvfz retrovol-0.10-x86_64.tar.gz
cd retrovol-0.10-x86_64
cp -r $PWD/usr/bin/retrovol /usr/bin/retrovol
cp -r $PWD/usr/share/applications/Retrovol.desktop /usr/share/applications/Retrovol.desktop
cp -r $PWD/usr/share/retrovol /usr/share/retrovol

# install mm_viewme which is in the pb_default 
cd /root/Build
wget http://rockedge.org/kernels/data/firstrib/mm_viewme.tar.gz
tar xvfz mm_viewme.tar.gz
cp -r $PWD/mm_viewme /usr/local/bin/mm_viewme

# install xlunch
cd /root/Build
wget http://rockedge.org/kernels/data/firstrib/xlunch_4.1.1-1_amd64.tar.gz
tar xvfz xlunch_4.1.1-1_amd64.tar.gz
cd xlunch_4.1.1-1_amd64
cp -r $PWD/etc/xdg/menus /etc/xdg/menus
cp -r $PWD/etc/xlunch /etc/xlunch
cp -r $PWD/usr/bin/genentries /usr/bin/genentries
cp -r $PWD/usr/local/bin/xlunch /usr/local/bin/xlunch
cp -r $PWD/usr/local/bin/xlunch-menu /usr/local/bin/xlunch-menu
cp -r $PWD/usr/local/bin/xlunch-menu-update  /usr/local/bin/xlunch-menu-update
cp -r $PWD/usr/local/bin/xlunch-menu-gen /usr/local/bin/xlunch-menu-gen
cp -r $PWD/usr/local/bin/xlunch-logout /usr/local/bin/xlunch-logout
cp -r $PWD/usr/local/bin/xluncher3 /usr/local/bin/xluncher3
cp -r $PWD/usr/local/share/fonts /usr/local/share/fonts
cp -r $PWD/usr/share/wallpapers /usr/share/wallpapers
cp -r $PWD/usr/share/xlunch /usr/share/xlunch
cp -r $PWD/usr/share/icons/hicolor/48x48/apps/xlunch.png /usr/share/icons/hicolor/48x48/apps/xlunch.png
cp -r $PWD/usr/share/icons/hicolor/48x48/apps/highlight.png /usr/share/icons/hicolor/48x48/apps/highlight.png
cp -r $PWD/usr/share/icons/hicolor/48x48/apps/xlunch_ghost.png /usr/share/icons/hicolor/48x48/apps/xlunch_ghost.png
cp -r $PWD/usr/share/pixmaps/xlunch-logo.png /usr/share/pixmaps/xlunch-logo.png
cp -r $PWD/usr/share/applications/Xlunchlogout.desktop /usr/share/applications/Xlunchlogout.desktop
cp -r $PWD/usr/share/applications/Xlunch3.desktop /usr/share/applications/Xlunch3.desktop
cp -r $PWD/usr/share/applications/update-entries.desktop /usr/share/applications/update-entries.desktop

rm -r /etc/xlunch/logout.dsv
cat <<'EOF' >> /etc/xlunch/logout.dsv
Shutdown;/usr/share/xlunch/icons/logout/shutdown.png;poweroff
Restart;/usr/share/xlunch/icons/logout/restart.png;reboot
Suspend;/usr/share/xlunch/icons/logout/suspend.png;logout
Exit X;/usr/share/xlunch/icons/logout/logout.png;pkill X
Cancel;/usr/share/xlunch/icons/logout/cancel.png;killall xlunch
EOF


# Add background directory with some wallpapers
cd /root/Build
wget http://rockedge.org/kernels/data/firstrib/backgrounds.tar.gz
tar xvfz backgrounds.tar.gz -C /usr/share/

# remove pmcputemp, retrovol, xlunch, mm_viewme install files
rm -r /root/Build

# Create some directories
mkdir -p /root/my-applications/bin

# Set up automatic login as user = root
# Create a new autologin service

cp -R /etc/sv/agetty-tty1 /etc/sv/agetty-autologin-tty1
rm /etc/runit/runsvdir/default/agetty-tty1
rm /etc/sv/agetty-autologin-tty1/conf
ln -s /etc/sv/agetty-autologin-tty1 /etc/runit/runsvdir/default

#ln -s /etc/sv/agetty-autologin-tty1 /etc/runit/runsvdir/default/agetty-autologin-tty1

cat <<'EOF' >>  /etc/sv/agetty-autologin-tty1/conf
if [ -x /sbin/agetty -o -x /bin/agetty ]; then
	# util-linux specific settings
	if [ "${tty}" = "tty1" ]; then
		GETTY_ARGS=" --autologin root --noclear"
	fi
fi

BAUD_RATE=38400
TERM_NAME=linux
EOF

# Replace profile for autologin
rm /etc/profile

cat <<'EOF' >> /etc/profile
# /etc/profile

# System wide environment and startup programs.

appendpath () {
    case ":$PATH:" in
        *:"$1":*)
            ;;
        *)
            PATH="${PATH:+$PATH:}$1"
    esac
}

# Set our default path (/usr/sbin:/sbin:/bin included for non-Void chroots)
appendpath '/root/my-applications/bin'
appendpath '/usr/local/sbin'
appendpath '/usr/local/bin'
appendpath '/usr/bin'
appendpath '/usr/sbin'
appendpath '/sbin'
appendpath '/bin'
unset appendpath

export PATH

# Set default umask
umask 022

# autologin on tty1
if [ -z "$DISPLAY" ] && [ "$(fgconsole)" -eq 1 ]; then
    startx
fi

# Load profiles from /etc/profile.d
if [ -d /etc/profile.d/ ]; then
	for f in /etc/profile.d/*.sh; do
		[ -r "$f" ] && . "$f"
	done
	unset f
fi

EOF

####### Finished and echo report
echo "desktop build process finished"

Somewhere I have a good plug that is a really minimum FirstRib/KLV that has a default set up of Xorg and JWM that is a total blank canvas.
I could piece one together.......

Attached is a compressed file of PLUG files I began to collect and convert to work with newer build script versions but are the old WeeDog builds and beginning of what would become KLV-Airedale and KLV-Spectr

Attachments
WDL_PLUGs.tar.gz
Collection of PLUG files
(11.17 KiB) Downloaded 84 times
User avatar
rockedge
Site Admin
Posts: 7047
Joined: Mon Dec 02, 2019 1:38 am
Location: Connecticut,U.S.A.
Has thanked: 3160 times
Been thanked: 2946 times
Contact:

Re: First Rib with Plug script.

Post by rockedge »

@wiak Wow! I've been searching for this exact post ->https://oldforum.puppylinux.com/viewtop ... 4#p1032654

I remembered that there was success launching a Puppy rootfs and since I am again experimenting with this concept at the present and I wanted to see again what you did to get one going! Right now for proof of concept and that Puppy is heading towards overlayfs more and more I've been thinking about how advantageous it will be swapping the adrv, bdrv, fdrv, zdrv mechanism for the 00-99 layers functions with the magic skeleton initrd. Using system components compressed as squash files or not.

So revisiting the Kennel Linux Puppy (KLP) possibilities with fresh eyes to test the potentials........... For now just trying to get a puppy rootfs to boot to a working desktop.

How sensible is the idea of building a KLP via PLUG using pkg-cli and busybox to self build a system from .deb and .pet packages...........?

User avatar
rockedge
Site Admin
Posts: 7047
Joined: Mon Dec 02, 2019 1:38 am
Location: Connecticut,U.S.A.
Has thanked: 3160 times
Been thanked: 2946 times
Contact:

Re: First Rib with Plug script.

Post by rockedge »

@wiak This plug from 2021 is a nifty smallish system running JWM+ Rox with kernel. Also sock-log is optional and to further trim the rootfs the install command for it can be removed.

The current generation of PLUG's are more advanced in the details installed during the system builds than the example below.

I ran this plug a lot with the install commands for the kernel packages taken out. And then supplied the kernel either as an extracted Void or huge Puppy

f_00_void_amd64_WDL64_jwm_rox_1.5.plug

Code: Select all

# FirstRib Build Plugin: 
# Contributed by: rockedge
# License: MIT; Creation Date: 01JAN2021; Revision Date: 01JAN2021
# WeeDog64-Void JWM ROX and the Void Linux kernel
# this version sets up automatic login. Main creditials are user=root, passwd=root
# startx will launch the desktop and time is set to UTC
# all the parameters can changed as desired.
#
xbps-install -y base-minimal file mc
xbps-install -y ncurses-base linux linux-firmware-network wifi-firmware shadow
pwconv # set up passwd system
grpconv
echo -e "root\nroot" | passwd >/dev/null 2>&1 # Quietly set default root passwd to "root"

# set root to use /bin/bash
usermod --shell /bin/bash root

# you can add as many valid commandlines as you want in here
xbps-install -y xorg jwm rox bash xterm lxterminal geany adwaita-icon-theme
xbps-install -y mtpaint htop viewnior xarchiver guvcview ffmpeg alsa-utils
xbps-install -y firefox squashfs-tools vlc gtkdialog chrony leafpad scrot
xbps-install -y yad cpanminus menu-cache librsvg-utils
xbps-install -y socklog-void xdgmenumaker ntfs-3g


# Set locale to en_US.UTF-8 
sed -i 's/#en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/default/libc-locales
xbps-reconfigure -f glibc-locales

# Make changes in /etc/X11/xinit/xinitrc to start jwm and rox -p default with startx if startx is included in /etc/rc.local
# and auto starts the X server, jwm and rox before the login prompt.
# Add /root/.xinitrc for the actual startx commands that will be used after logging in as "root"
cp /etc/X11/xinit/xinitrc /root/.xinitrc
sed -i '51,$d' /etc/X11/xinit/xinitrc
echo "jwm &" >>/etc/X11/xinit/xinitrc
echo "rox -p default &" >>/etc/X11/xinit/xinitrc
echo "exec xterm -geometry 60x10+600+480 -name login" >>/etc/X11/xinit/xinitrc
sed -i '51,$d' /root/.xinitrc
echo "rox -p default &" >>/root/.xinitrc
echo "exec jwm" >>/root/.xinitrc

# Change jwm clock to also show date
sed -i 's/<Clock format="%H:%M">/<Clock format="%a %d %b %H:%M">/' /etc/system.jwmrc

# Show MENU in jwm tray
sed -i 's/TrayButton icon="jwm-blue"/TrayButton label="MENU" icon="jwm-blue"/' /etc/system.jwmrc

# Set up VLC to run as root
sed -i 's/geteuid/getppid/' /usr/bin/vlc

# Construct rox pinboard default 
# ***NOTE*** change /mnt/sda1 to match the partition WeeDog is installed on
#mkdir /root/.config
#mkdir /root/.config/rox.sourceforge.net
mkdir -p /root/.config/rox.sourceforge.net/ROX-Filer
cd /root/.config/rox.sourceforge.net/ROX-Filer
cat <<'EOF' >> pb_default
<?xml version="1.0"?>
<pinboard>
<backdrop style="Stretched">/usr/share/backgrounds/DarkGray.svg</backdrop>
<icon x="256" y="32" label="mm_vw">/usr/local/bin/mm_viewme</icon>
<icon x="32" y="128" label="xterm">/usr/local/bin/defaultterminal</icon>
<icon x="32" y="224" label="firefox">/usr/share/applications/firefox.desktop</icon>
<icon x="128" y="32" label="applications">/usr/share/applications</icon>
<icon x="32" y="32" label="Home">/root</icon>
<icon x="32" y="320" label="geany">/usr/share/applications/geany.desktop</icon>
<icon x="32" y="416" label="mtpaint">/usr/share/applications/mtpaint.desktop</icon>
</pinboard>
EOF

# Network script construction for eth0 and lo
cd /usr/local/bin/
touch net_connect
echo '#!/bin/sh' >>net_connect
echo '#ip link set eth0 up' >>net_connect
echo '#ip link set lo up' >>net_connect
echo '#udhcpc -i eth0' >>net_connect
echo 'wiakwifi' >>net_connect

# Set Time script construction. will set to UTC
# modify /etc/rc.conf to adjust timezone and hardware clock
touch set_time
echo '#!/bin/sh' >>set_time
echo 'chronyd -q "pool pool.ntp.org iburst"' >>set_time

# start audio script construction
touch start_sound
echo '#!/bin/sh' >>start_sound
echo 'modprobe snd_hda_intel' >>start_sound
echo 'alsactl init' >>start_sound

# start_pmcputemp script construction
touch start_pmcputemp
echo '#!/bin/sh' >>start_pmcputemp
echo 'exec pmcputemp' >>start_pmcputemp

# start_retrovol script construction
touch start_retrovol
echo '#!/bin/sh' >>start_retrovol
echo 'exec retrovol' >>start_retrovol

# start_logging script construction
touch start_logging
echo '# enable socklog logging' >>start_logging
echo 'ln -s /etc/sv/socklog-unix /var/service/' >>start_logging
echo 'ln -s /etc/sv/nanoklogd /var/service/' >>start_logging

# make both net_connect and start_sound executable
chmod +x /usr/local/bin/start_sound
chmod +x /usr/local/bin/net_connect
chmod +x /usr/local/bin/set_time
chmod +x /usr/local/bin/start_pmcputemp
chmod +x /usr/local/bin/start_retrovol
chmod +x /usr/local/bin/start_logging

# Set system to run connection and audio start scripts on bootup
cd /etc
echo "#/usr/local/bin/net_connect" >>rc.local
echo "#/usr/local/bin/set_time" >>rc.local
echo "/usr/local/bin/start_sound" >>rc.local
echo "/usr/local/bin/start_logging" >>rc.local

#ln -s /etc/sv/alsa /var/service/alsa

# enable socklog logging
ln -s /etc/sv/socklog-unix /var/service/
ln -s /etc/sv/nanoklogd /var/service/

# Set Bash as shell
xbps-alternatives --set bash

# create /root/.jwmrc with correct menu links for jwm logged in as root
cd /root/
cat <<'EOF' >> /root/.jwmrc 
<?xml version="1.0"?>
<JWM>
<!-- Disable virtual desktop scroll. -->
	<RootMenu onroot="4"/>
	<RootMenu onroot="5"/>
	
<!-- The root menu. -->
  <RootMenu onroot="12" height="24">
        
        <Include>/root/.jwmrc-mjwm</Include>
        
        <Separator/>
        <Program icon="/usr/share/icons/Adwaita/256x256/legacy/system-lock-screen.png" label="Exit X">pkill X</Program>
        <Separator/>       
        <Restart label="Restart JWM" icon="/usr/share/icons/Adwaita/scalable/emblems/emblem-synchronizing-symbolic.svg"/>
        <Exit label="Exit JWM" confirm="true" icon="/usr/share/icons/Adwaita/scalable/actions/system-log-out-symbolic.svg"/>
        <Program icon="/usr/share/icons/Adwaita/scalable/actions/system-shutdown-symbolic.svg" label="Shutdown">xlunch-logout</Program>
    </RootMenu>
 <!-- Options for program groups. -->
    <Group>
        <Option>tiled</Option>
        <Option>aerosnap</Option>
    </Group>
    <Group>
        <Class>Pidgin</Class>
        <Option>sticky</Option>
    </Group>
    <Group>
        <Name>xterm</Name>
        <Option>vmax</Option>
    </Group>
    <Group>
        <Name>xclock</Name>
        <Option>drag</Option>
        <Option>notitle</Option>
    </Group>
                                                           
  <!-- Tray at the bottom. -->
    <Tray x="0" y="-1" autohide="off" height="24">
        <TrayButton label="MENU" icon="jwm-blue">root:1</TrayButton>
        <Spacer width="2"/>
        <TrayButton popup="xlunch" icon="/usr/share/pixmaps/xlunch-logo.png">exec:xluncher3</TrayButton>
        <Spacer width="2"/>
        <TrayButton label="_">showdesktop</TrayButton>
        <Spacer width="2"/>
        <TrayButton popup="lxterminal" icon="/usr/share/pixmaps/filled-xterm_32x32.xpm">exec:lxterminal</TrayButton>
        <Spacer width="2"/>
                                                           
    <Pager labeled="true"/>
        <TaskList maxwidth="256"/>
                                                           
    <Dock/>
                                                                 
        <Swallow name="xload" width="32">xload -nolabel -bg "#444444" -fg "#00FF00" -hl "#4C7CC1"</Swallow>
        <Clock format="%a %d %b %H:%M"><Button mask="123">exec:xclock</Button></Clock>
                                                           
    </Tray>
                                                           
<!-- Visual Styles -->
    <WindowStyle>
        <Font>Sans-9:bold</Font>
        <Width>4</Width>
        <Height>21</Height>
        <Corner>3</Corner>
        <Foreground>#FFFFFF</Foreground>
        <Background>#555555</Background>
        <Outline>#000000</Outline>
        <Opacity>0.5</Opacity>
        <Active>
            <Foreground>#FFFFFF</Foreground>
            <Background>#0077CC</Background>
            <Outline>#000000</Outline>
            <Opacity>1.0</Opacity>
        </Active>
    </WindowStyle>
    <TrayStyle group="true" list="desktop">
        <Font>Sans-9</Font>
        <Background>#333333</Background>
        <Foreground>#FFFFFF</Foreground>
        <Outline>#000000</Outline>
        <Opacity>0.75</Opacity>
    </TrayStyle>
    <TaskListStyle>
      <Font>Sans-9</Font>
      <Active>
        <Foreground>#FFFFFF</Foreground>
        <Background>#555555</Background>
      </Active>
      <Foreground>#FFFFFF</Foreground>
      <Background>#333333</Background>
    </TaskListStyle>
    <PagerStyle>
        <Outline>#000000</Outline>
        <Foreground>#555555</Foreground>
        <Background>#333333</Background>
        <Text>#FFFFFF</Text>
        <Active>
            <Foreground>#0077CC</Foreground>
            <Background>#004488</Background>
        </Active>
    </PagerStyle>
    <MenuStyle>
        <Font>Sans-9</Font>
        <Foreground>#FFFFFF</Foreground>
        <Background>#333333</Background>
        <Outline>#000000</Outline>
        <Active>
            <Foreground>#FFFFFF</Foreground>
            <Background>#0077CC</Background>
       </Active>
        <Opacity>0.85</Opacity>
    </MenuStyle>
    <PopupStyle>
        <Font>Sans-9</Font>
        <Foreground>#000000</Foreground>
        <Background>#999999</Background>
   </PopupStyle>
                                                           
<!-- Path where icons can be found.
         IconPath can be listed multiple times to allow searching
         for icons in multiple paths.
     -->
    <IconPath>
        /usr/share/icons/wm-icons/32x32-aquafusion
    </IconPath>
    <IconPath>
        /usr/local/share/jwm
    </IconPath>
                                                           
    <!-- Virtual Desktops -->
    <!-- Desktop tags can be contained within Desktops for desktop names. -->
    <Desktops width="4" height="1"> 
        <!-- Default background. Note that a Background tag can be
              contained within a Desktop tag to give a specific background
              for that desktop.
         -->
        <Background type="solid">#111111</Background>
    </Desktops>
                                                           
<!-- Double click speed (in milliseconds) -->
    <DoubleClickSpeed>400</DoubleClickSpeed>
                                                           
<!-- Double click delta (in pixels) -->
    <DoubleClickDelta>2</DoubleClickDelta>
                                                           
<!-- The focus model (sloppy or click) -->
    <FocusModel>click</FocusModel>
                                                           
<!-- The snap mode (none, screen, or border) -->
    <SnapMode distance="10">border</SnapMode>
                                                           
<!-- The move mode (outline or opaque) -->
    <MoveMode>opaque</MoveMode>
                                                           
<!-- The resize mode (outline or opaque) -->
    <ResizeMode>opaque</ResizeMode>
                                                           
<!-- Key bindings -->
    <Key key="Up">up</Key>
    <Key key="Down">down</Key>
    <Key key="Right">right</Key>
    <Key key="Left">left</Key>
    <Key key="h">left</Key>
    <Key key="j">down</Key>
    <Key key="k">up</Key>
    <Key key="l">right</Key>
    <Key key="Return">select</Key>
    <Key key="Escape">escape</Key>
                                                           
    <Key mask="A" key="Tab">nextstacked</Key>
    <Key mask="A" key="F4">close</Key>
    <Key mask="A" key="#">desktop#</Key>
    <Key mask="A" key="F1">root:1</Key>
    <Key mask="A" key="F2">window</Key>
    <Key mask="A" key="F10">maximize</Key>
    <Key mask="A" key="Right">rdesktop</Key>
    <Key mask="A" key="Left">ldesktop</Key>
    <Key mask="A" key="Up">udesktop</Key>
    <Key mask="A" key="Down">ddesktop</Key>

    <StartupCommand>start_retrovol &</StartupCommand>
    <StartupCommand>start_pmcputemp &</StartupCommand>
                                                           
</JWM>
EOF

# install pmcputemp 0.63
mkdir /root/Build
cd /root/Build
wget http://rockedge.org/kernels/data/firstrib/pmcputemp-0.63a.tar.gz
tar xvfz pmcputemp-0.63a.tar.gz
cd pmcputemp-0.63a
cp -r $PWD/root/.config/pmcputemp /root/.config/pmcputemp
cp -r $PWD/root/.config/autostart/pmcputemp.desktop /usr/share/applications/pmcputemp.desktop
cp -r $PWD/usr/bin/pmcputemp /usr/bin/pmcputemp
cp -r $PWD/usr/bin/pmcputemp.sh /usr/bin/pmcputemp.sh
 
# install retrovol 0.10
cd /root/Build
wget http://rockedge.org/kernels/data/firstrib/retrovol-0.10-x86_64.tar.gz
tar xvfz retrovol-0.10-x86_64.tar.gz
cd retrovol-0.10-x86_64
cp -r $PWD/usr/bin/retrovol /usr/bin/retrovol
cp -r $PWD/usr/share/applications/Retrovol.desktop /usr/share/applications/Retrovol.desktop
cp -r $PWD/usr/share/retrovol /usr/share/retrovol

# install mm_viewme which is in the pb_default 
cd /root/Build
wget http://rockedge.org/kernels/data/firstrib/mm_viewme.tar.gz
tar xvfz mm_viewme.tar.gz
cp -r $PWD/mm_viewme /usr/local/bin/mm_viewme

# install xlunch
cd /root/Build
wget http://rockedge.org/kernels/data/firstrib/xlunch_4.1.1-1_amd64.tar.gz
tar xvfz xlunch_4.1.1-1_amd64.tar.gz
cd xlunch_4.1.1-1_amd64
cp -r $PWD/etc/xdg/menus /etc/xdg/menus
cp -r $PWD/etc/xlunch /etc/xlunch
cp -r $PWD/usr/local/bin/xlunch /usr/local/bin/xlunch
cp -r $PWD/usr/local/bin/xlunch-menu /usr/local/bin/xlunch-menu
cp -r $PWD/usr/local/bin/xlunch-menu-update  /usr/local/bin/xlunch-menu-update
cp -r $PWD/usr/local/bin/xlunch-menu-gen /usr/local/bin/xlunch-menu-gen
cp -r $PWD/usr/local/bin/xlunch-logout /usr/local/bin/xlunch-logout
cp -r $PWD/usr/local/bin/xluncher3 /usr/local/bin/xluncher3
cp -r $PWD/usr/local/share/fonts /usr/local/share/fonts
cp -r $PWD/usr/share/wallpapers /usr/share/wallpapers
cp -r $PWD/usr/share/xlunch /usr/share/xlunch
cp -r $PWD/usr/share/icons/hicolor/48x48/apps/xlunch.png /usr/share/icons/hicolor/48x48/apps/xlunch.png
cp -r $PWD/usr/share/icons/hicolor/48x48/apps/highlight.png /usr/share/icons/hicolor/48x48/apps/highlight.png
cp -r $PWD/usr/share/icons/hicolor/48x48/apps/xlunch_ghost.png /usr/share/icons/hicolor/48x48/apps/xlunch_ghost.png
cp -r $PWD/usr/share/pixmaps/xlunch-logo.png /usr/share/pixmaps/xlunch-logo.png
cp -r $PWD/usr/share/applications/Xlunchlogout.desktop /usr/share/applications/Xlunchlogout.desktop
cp -r $PWD/usr/share/applications/Xlunch3.desktop /usr/share/applications/Xlunch3.desktop
cp -r $PWD/usr/share/applications/update-entries.desktop /usr/share/applications/update-entries.desktop

rm -r /etc/xlunch/logout.dsv
cat <<'EOF' >> /etc/xlunch/logout.dsv
Shutdown;/usr/share/xlunch/icons/logout/shutdown.png;poweroff
Restart;/usr/share/xlunch/icons/logout/restart.png;reboot
Suspend;/usr/share/xlunch/icons/logout/suspend.png;logout
Exit X;/usr/share/xlunch/icons/logout/logout.png;pkill X
Cancel;/usr/share/xlunch/icons/logout/cancel.png;killall xlunch
EOF


# Add background directory with some wallpapers
cd /root/Build
wget http://rockedge.org/kernels/data/firstrib/backgrounds.tar.gz
tar xvfz backgrounds.tar.gz -C /usr/share/

# remove pmcputemp, retrovol, xlunch, mm_viewme install files
rm -r /root/Build

# Create some directories
mkdir -p /root/my-applications/bin

# Set up automatic login as user = root
# Create a new autologin service

cp -R /etc/sv/agetty-tty1 /etc/sv/agetty-autologin-tty1
rm /etc/runit/runsvdir/default/agetty-tty1
rm /etc/sv/agetty-autologin-tty1/conf
ln -s /etc/sv/agetty-autologin-tty1 /etc/runit/runsvdir/default

#ln -s /etc/sv/agetty-autologin-tty1 /etc/runit/runsvdir/default/agetty-autologin-tty1

cat <<'EOF' >>  /etc/sv/agetty-autologin-tty1/conf
if [ -x /sbin/agetty -o -x /bin/agetty ]; then
	# util-linux specific settings
	if [ "${tty}" = "tty1" ]; then
		GETTY_ARGS=" --autologin root --noclear"
	fi
fi

BAUD_RATE=38400
TERM_NAME=linux
EOF

# Replace profile for autologin
rm /etc/profile

cat <<'EOF' >> /etc/profile
# /etc/profile

# System wide environment and startup programs.

appendpath () {
    case ":$PATH:" in
        *:"$1":*)
            ;;
        *)
            PATH="${PATH:+$PATH:}$1"
    esac
}

# Set our default path (/usr/sbin:/sbin:/bin included for non-Void chroots)
appendpath '/root/my-applications/bin'
appendpath '/usr/local/sbin'
appendpath '/usr/local/bin'
appendpath '/usr/bin'
appendpath '/usr/sbin'
appendpath '/sbin'
appendpath '/bin'
unset appendpath

export PATH

# Set default umask
umask 022

# autologin on tty1
if [ -z "$DISPLAY" ] && [ "$(fgconsole)" -eq 1 ]; then
    startx
fi

# Load profiles from /etc/profile.d
if [ -d /etc/profile.d/ ]; then
	for f in /etc/profile.d/*.sh; do
		[ -r "$f" ] && . "$f"
	done
	unset f
fi

EOF

####### Finished and echo report
echo "desktop build process finished"
User avatar
wiak
Posts: 4311
Joined: Tue Dec 03, 2019 6:10 am
Location: Packing - big job
Has thanked: 70 times
Been thanked: 1296 times
Contact:

Re: First Rib with Plug script.

Post by wiak »

Though in the past I and others have managed to build using xorg-minimal (rather than xorg meta-package, which brings in a lot more dependencies) I think we all found that whilst xorg-minimal build worked fine in chroot (with Xnest and so on) it failed when booted by FR initrd (other packages missing).

Well, I've been working on that issue since I think it is a good time to release a really simple X-based JWM Void Linux build since a single KL_mini type build script using simplest xorg-minimal f_ plug is, I feel, a good introduction to FR-based Kennel Linux builds using Void Linux xbps package manager.

I think I have that xorg-minimal issue cracked now, and the result is much smaller (though no doubt limited).

I will post the build script shortly under KL_mini section. The JWM ~/.jwmrc is the default provided by Void Linux so needs fixed up (well not quite the default since I am using very small simplistic X-terminal called 'st' and that's the only part of .jwmrc I've fixed to use...). The resulting 07firstrib_rootfs is only 362MiB UNCOMPRESSED, but yes, nothing in it except Xorg, that terminal st, and mc as a console-based filemanager (and mcedit for console-based text editing).

Will just do final build test now, before screenshot, and publishing the build script...

I may later make something even smaller (that doesn't include PAM/shadow). However, to be honest, I consider that non PAM-using distro pretty useless other than for a demo of smaller size.

https://www.tinylinux.info/
DOWNLOAD wd_multi for hundreds of 'distros' at your fingertips: viewtopic.php?p=99154#p99154
Αξίζει να μεταφραστεί;

Post Reply

Return to “KL-Dev_Work”