corepup

A home for all kinds of Puppy related projects
Message
Author
User avatar
nosystemdthanks
Posts: 703
Joined: Thu 03 May 2018, 16:13
Contact:

#691 Post by nosystemdthanks »

this is not surprising, but you tried the easy option first-- that was the best thing to do.

so you want a version of libnss that corepup doesnt have, and its even possible that you want a version of libnss that corepup cant run. before you make it a tcz, id recommend getting the debian version (like you said) and trying that.

coreplus at least, and based on what im typing now also the version of busybox that comes with all versions of corepup (wanderers and mine) include ar-- this is very relevant to getting debian stuff working in non-debian-based distros. code from mcorepup:

# wget 'http://http.us.debian.org/debian/pool/m ... 4_i386.deb' ; ar x dpkg_1.18.24_i386.deb ; tar -xvf data.tar.xz ./usr/bin/dpkg-deb



now you have dpkg-deb in your path, and you can download .deb files and open them like this:

# dont do this: dpkg-deb -x libnss.deb /



first youll have to go to packages.debian.org and get the url for the .deb you want, then either download it with your browser or use wget before using dpkg-deb.



note the / is the path to unzip the .deb to, and (since this isnt a debian system) youll probably want to do this instead:

mkdir ./libnss ; dpkg-deb -x libnss.deb ./libnss ; find ./libnss



before you add all those files to your running filesystem.

corepup has /usr/lib and /usr/local/lib, one could be a symlink, we dont know if the files you want in the libnss are going to go to the path you need them to.

but since you already installed an older libnss, you can probably find / | grep libnss for a hint as to where to put the newer one.

once youre satisfied that libnss works as you need it to, the fun part is making it stay that way. the obvious method is to create a tcz. the not-so-obvious method (for the moment) is anything else...

in most distros youd just put something in /etc/rc.local or the equivalent of that. for figos, i actually modified the live cd to look for /etc/.figos-local on 4 partitions (mounted read-only) and if the file contains "1" then it runs the /etc/rc.local on that partition.

this is a cheap and easy way to have a live cd that looks for settings on other drives.

i probably either need to modify the initrd (the core) or create a tcz builder as a feature of mcorepup to accomplish either of those things.

whats really cool is-- if you found a third way, i could do more things with mcorepup a little sooner. but i should probably use this as a reason to work on either the tcz builder or the code that remixes the core.

getting libnss working-- probably easy, try using dpkg-deb like i said. getting libnss to stay in your setup... without a tcz or changing the core, neither wanderer nor i have likely tried that yet.

youll probably want to make a tcz, to get this working today. if you do, posting what you did will likely help (we can all make a tcz, im very confident of that, but its not something ive read the instructions for yet.)

your corepup skills are fast approaching what i would compare to wanderer and myself. which means always feel free to ask, but we can nearly gain from your corepup experience now, as much as you can gain from ours. and dont think its not appreciated, it definitely is.
[color=green]The freedom to NOT run the software, to be free to avoid vendor lock-in through appropriate modularization/encapsulation and minimized dependencies; meaning any free software can be replaced with a user’s preferred alternatives.[/color]

wanderer
Posts: 1098
Joined: Sat 20 Oct 2007, 23:17

#692 Post by wanderer »

hi all

just an update

it looks like nosystemdthanks script
is pretty comprehensive and can do more and more
and I will try to use it this weekend to build a corepup

also I intend to try to make a tc 9 set of corepups
like the ones I made for tc 6.4.1
also this weekend

this of course in addition to looking at the
jwm-menu script
tce-load script
and import-sce script

a lot of fun

keep the faith

wanderer

User avatar
nosystemdthanks
Posts: 703
Joined: Thu 03 May 2018, 16:13
Contact:

#693 Post by nosystemdthanks »

itll be a lot better when it can make changes to the core.gz, but thank you.
[color=green]The freedom to NOT run the software, to be free to avoid vendor lock-in through appropriate modularization/encapsulation and minimized dependencies; meaning any free software can be replaced with a user’s preferred alternatives.[/color]

User avatar
rockedge
Posts: 1864
Joined: Wed 11 Apr 2012, 13:32
Location: Connecticut, United States
Contact:

#694 Post by rockedge »

I am having success using Tahrpup to download and extract packages such as the
nss-3.36.0-1.0.fc28.i686.rpm Fedora 28 package that may fix my little problem. And then
using Tahr to have the set of extracted pieces ready to br placed in the corepup file structure. I am expereimenting with methods for having the changes be persistant.

looking for the 3rd method and the main goal of getting the latest Vivaldi browser to run. I feel like this goal is close to being achieved.

User avatar
nosystemdthanks
Posts: 703
Joined: Thu 03 May 2018, 16:13
Contact:

#695 Post by nosystemdthanks »

while it will be extremely simple, the tcz builder in mcorepup will make it very easy to build things like this into the iso, with the option to include the resulting tcz or leave it out. if it leaves it out, it wont create it either.

for example, you could have a section that instead of including everything from corepup-full, would just leave out the stuff for wifi if you didnt want it.

though in this instance i was referring to tczs that dont already exist-- it will grab files from online, stick them in a file hierarchy and then produce a new tcz from it, which then gets included (optionally) in the iso.

as far as talking vs doing goes, ive already set the script up to produce three different corepup isos. im going to do the tcz thing--

when i do that, i can also make it take the mods file that wanderer works on and incorporate that into the iso as a tcz.

but i dont know if that will be this week or not. we have at least three guys innovating corepup now, i love that. if rockedge finds a non-tcz way to save things, that will be really cool.

with corepup im running sudo find / -type l | xargs ls -l to try to find a way to have stuff automatically load when the iso does. i should be looking in the startup scripts too. corepup already has these features, theres got to be a way to use them from the filesystem.

otherwise we will need an rclocal.tcz or something to add this functionality, which i would be happy to produce. but i dont want to make tczs manually if i can setup the way i want to create them with mcorepup.

the mcorepup way will allow mcorepup to create tczs automatically. wanderers script-- which will probably be better, will be for users to create tczs. unless he gets there first and i decide to just use that with mcorepup somehow. thats cool too.
[color=green]The freedom to NOT run the software, to be free to avoid vendor lock-in through appropriate modularization/encapsulation and minimized dependencies; meaning any free software can be replaced with a user’s preferred alternatives.[/color]

wanderer
Posts: 1098
Joined: Sat 20 Oct 2007, 23:17

#696 Post by wanderer »

hi nosystemdthanks

I have been following your script
and that is clearly the way to go
I will do my stuff
but im going to try to use your script more and more

its awesome

thanks for all your work

wanderer

User avatar
nosystemdthanks
Posts: 703
Joined: Thu 03 May 2018, 16:13
Contact:

#697 Post by nosystemdthanks »

wanderer wrote: its awesome

thanks for all your work

wanderer
i really appreciate it.

i want you to know, that although im happy with the 2 years of work ive done on this sort of thing (which started as a way to remix puppy) that its not so much about the script as the philosophy. the script is just an implementation of that philosophy.

i think about a future where distros themselves are less important, and tools to create distros are aimed more and more at users rather than developers.

traditionalists will laugh at this. users cant create distros. theres a lot more to a distro than remixing an existing iso.

ive spent a decade working this philosophy out-- its largely based on my experience with puppy at least 12 years ago, and woof-ce proves theres a lot more to a distro than remixing an existing iso.

that said-- not everyone wants to build up from the core, some want to mess with coreplus instead.

we have a framework that lets us offer both.

its simple enough for people to understand. its a little unfamiliar, superficially, but a lot of the "sophistication" it lacks is stuff you can clearly tell i know how to do.

there are features where lists of files are used instead of arrays. there are features where arrays are used. there are features where strings are passed directly to the shell, too.

each time ive added something, ive tried to do it the easiest way-- not the "best" way.

both are subjective-- different people think different things are easy. different people think different things are simple-- or best.

and theres a good reason for it. even though i could refine and refine and refine-- what i really want is to make it so that people can take it and do wtf they want. i dont like the "wtfpl" license, licenses shouldnt be sloppy, but this is a "wtfyw" design.

in "better" languages like bash (bash is a better language, of course. powerful too.) a "wtfyw" design will be very difficult to manage down the road.

this is done with language thats designed more closely with a "wtfyw" (do whatever the f you want) philosophy. take all the script and put it together. take all the script and separate it into other files (if you want to.) make your own version-- use an existing version.

the only reason weve made it this far this quickly is because of your attitude and your philosophy.

it just happens to be one that i can assist. and im very grateful to you for that, because i did design this stuff in hopes of helping somebody.

you just happen to be really fun and really easy to help. if you become more familiar with what ive done with your work, youll find:

1. its surprisingly easy

2. youll find ways to make it easier

im proud of my language, as well as its simplicity, but i still think a language designed specifically for remastering gnu/linux would be really neat.

mcorepup actually began as a program to compare different puppy isos. there are hundreds (for starters) and i wanted to make a table of everything important in them.

at one point it gained the ability to produce bootable isos.

the feature that lets you say whose changes to add is new to corepup, and i think very important. it lets the developers choose a default config, and the user change that, and other people add to it without everyone saying "oh no, i dont want this change."

instead of bothering people about adding stuff, trying to "protect" it it from changes, it just makes it more trivial to prevent their changes from making it into the iso. just remove the name, and you control the contributors yourself (as the lead dev or as the user, both get a real say.)

but the philosophy is simpler than that-- put every user in far greater control. use automation so they dont have to do it all themselves.

instead of making distros-- make tools to make distros.

heavily inspired by woof itself, though olpc has a tool to turn ubuntu into their own olpc platform. we didnt invent automated remastering. but isnt it cool?

as for the future of the distro-- a generic bootable iso that isnt fun or interesting (but can be remixed the way we are doing) isnt rocket science.

what do you get if you have lots of tools for remixing every aspect of a distro?

you have a distro factory, which is aimed at users running the factory instead of these so-called "developers."

im not anti-developer. its really the user/dev dichotomy that im trying to reduce. every user should have more of a taste of developing, even if theyre lazy (most users are.)

and this philosophy would make it easier to become a developer-- it would reduce the overhead of modern large distros-- it would make organisations like spi and red hat less powerful, and thats why eventually youre going to hear people speaking very loudly against this philosophy.

but its too cool not to explore, and no matter how simple your approach (even because your approach is simple) you are a pioneer. and rockedge is a bigger deal than he probably understands.

you cant change the world with 2 people as easily as you can with 3 or more. you guys are my heroes. we are not elite, we are a few guys messing around with software in a garage, doing stuff our way.

not saying we will be famous, not saying that at all-- but apple and hp (and puppy and the linux kernel) started that way too.
[color=green]The freedom to NOT run the software, to be free to avoid vendor lock-in through appropriate modularization/encapsulation and minimized dependencies; meaning any free software can be replaced with a user’s preferred alternatives.[/color]

User avatar
greengeek
Posts: 5789
Joined: Tue 20 Jul 2010, 09:34
Location: Republic of Novo Zelande

#698 Post by greengeek »

Interesting stuff going on here. I don't pretend to be keeping up with the play, but I do have a question:

Is it likely that this "automation" might make it possible for a user to boot "x"corepup on a variety of machines - then run a script that would detect what frmware that specific PC was "already" using during boot - and build a minimal iso based on that?

Seems as if "basic" variants of Linux are bloated as a result of wifi (and other) firmware payloads that must be carried to enable multi-PC boot - and that payload burden continues on next boot.

Is there a way to get a "corepup-CE" to dump all of the fware it does not need?

(sorry if the question is muddled - I had no wine last night and had to double up tonight :-) )

User avatar
nosystemdthanks
Posts: 703
Joined: Thu 03 May 2018, 16:13
Contact:

#699 Post by nosystemdthanks »

greengeek wrote: Is there a way to get a "corepup-CE" to dump all of the fware it does not need?
i have two answers to your question. the first is that im working on mcorepup04, it has a libre option that dumps all firmware- (its not enabled by default. it should be, but im leaving wanderer in charge of that)

we know which firmware is in each file. so while its certainly not a high priority for me to make this happen (only because it would take time to get it right) it is actually very possible to run this script, have it figure out what firmware you need, and then get rid of the others.

but i am in no hurry to write the routine that detects the needed firmware. i can tell someone where to start, but i wont trust my implementation of that on someone elses machine-- nor their distro.
[color=green]The freedom to NOT run the software, to be free to avoid vendor lock-in through appropriate modularization/encapsulation and minimized dependencies; meaning any free software can be replaced with a user’s preferred alternatives.[/color]

User avatar
rockedge
Posts: 1864
Joined: Wed 11 Apr 2012, 13:32
Location: Connecticut, United States
Contact:

#700 Post by rockedge »

I am experimenting with the effects this type of actions will have. I created several corepup-8's with mcorepup03 which comes out around 11 megs when finished. I created the /tce folder and then add one by one things to it and boot to see what happens. I am gaining understanding this way. I have also found that I can decompress and open tcz files in tahrpup by just changing the extension to sfs and look inside copy stuff. Also I have been making changes then rebooting corepup and letting a backup file be made...changes seem to stick. I have it so hacked around though I will need a moment to bring it all together to some form of real tests. work in progress..but I can say I added /tce folder I put together with corepup-6 ...just copied it over to the corepup-8 directory added a menu.lst entry and it booted fine and worked with all the features....started with the icewm desktop ...is using around 57 megs of RAM. Palemoon ,Chrome and Firefox on board.

User avatar
nosystemdthanks
Posts: 703
Joined: Thu 03 May 2018, 16:13
Contact:

#701 Post by nosystemdthanks »

mcorepup 0.4 builds corepup-7 (it should also build 8 if you prefer) and creates tcz files in the same run.

http://murga-linux.com/puppy/viewtopic. ... &id=117839

so for example, you could do:


change = changeforwhom addchanges "rockedge"
iftrue change



now = tczpreps "newlibnss" "/usr/local/lib"

now = "cp /mnt/mcorepup/libnss-whatever-version.so /mnt/mcorepup/tcz/newlibnss/usr/local/lib" ; shell

now = tczbuild "newlibnss"



fig



and it will create newlibnss.tcz for you and put it in the iso with the other ones.

its very easy to create a tcz even with the standard method, its basically like creating a tar.gz except with squashfs instead.

when i tried it the first time i used xz compression with the squashfs like i do for remastering live isos, but the tcz loader didnt like that. thats not standard tcz anyway, tczs use the default compression.

now that mcorepup can make tczs and add them to the iso automatically, we can have some real remastering fun.
[color=green]The freedom to NOT run the software, to be free to avoid vendor lock-in through appropriate modularization/encapsulation and minimized dependencies; meaning any free software can be replaced with a user’s preferred alternatives.[/color]

Isma
Posts: 2
Joined: Fri 20 Jul 2018, 01:47

Some ideas.

#702 Post by Isma »

English it's not my mother language. Expect errors.

I think it's a wonderful idea, being able to say something about a new distro, instead of only reporting bugs or ask for any help when things went down like in many other distros. You have to accept what it's write in stone by the main developers of a system (This is not bad).

Okay, if you give the opportunity to say something about it, i'll take it.

Summary

- Use Gujin Bootloader and take a look into the patch the developer make for the initrd (it's in gujin-2.8.7.tgz). So it's load the system root files almost flawless.

- Please, take in consideration the ultra low-RAM systems those under 512Mb of ram (My main laptop only has this amount of ram). This means, compile/everything resource expensive using the SWAP file/partition as much as possible, using a option to load into RAM the extensions like TCZ in TinyCore, and load them entirely from a filesystem like SCE (mostly in dCore, but it can be find in TinyCore as well).

- Please follow standards! Yes, don't make anything so different and special. Remember the KISS philosophy. Name the 'initrd*.gz' as 'initrd' not 'core.gz', 'pupcore.gz', 'somethingelse.gz'. Follow the standards is a nice way to keep a project future-proof.

/Summary

Use Gujin bootloader or Patch the distro with Casper (a patch for init from Gujin Bootloader).

Gujin is a bootloader. It aims to be a very lightweight solution and somewhat "universal" bootloader. It has an installer and the main developer has proposed a new method to chainload the OS (GNU-like Systems, BSD, WINnt, DOS, etc) by a patch to init (initrd, initrfs i'm not sure). This allows the distro to boot from almost any media (Usb, CD, partitions, filesystems (ext2,3,4;fat16,32,etc). Check the discussions on the sourceforge page.

This bootloader is also flexible when it's time to installing. You can install it to any media device (Floppy Disk, CD, USB, HDD, PICS?), GPT or DOS partition table, a small partition, MBR, BEER device (the end of a disk).

In a perfect world you can have a DVD with multiple distros, a partition full of iso files. A distro would know a smart way to find it rootfs, like knowing where sector in a disc it start and finish they rootfs, from which iso file the distro start in a filesystem, or at least what partition belong to the distro.

With Gujin you can have a usb with multiple distros. Have many kernels without touching any config files, just reboot and choose from a graphic menu what kernel you want.

It has his drawbacks too, obviusly, like no EFI support. But it will be awesome see it implement in the project, having this portability in the Corepup project.

Why this is important?

At least for me, i don't have a 2.5" IDE drive, i can't buy one, they are ridiculous expensive in my country a 80Gb 2.5" IDE can cost as much as a 250GB ATA even a 1Tb Ata. So having the option to boot from anywhere it really will make my computing a lot better.

I have a 3.5 IDE, Sata to USB adapter. I can have cheap HDD atached to my computer and with many distros in the HDD and boot in any of them. And yet still booting into my persistent-data distro.


Low-Ram Friendly

Yes i was saying, make the distro ultra-low-ram pc friendly.

By using most apps as mountable extensions (or give a option to do it).

When i use dCore, even if a use tce-setdrive to point to a usb flash device, despite the warnings and the knowledge of the many writes in the flash device you get the pc frooze when using the sce-import command to import a bis extension like OpenJDK8.

I'm using a T42 IBM, no hard disk drive and 512Mb RAM as my main computer.


Thank you for your time.

User avatar
rockedge
Posts: 1864
Joined: Wed 11 Apr 2012, 13:32
Location: Connecticut, United States
Contact:

#703 Post by rockedge »

I am doing almost all the testing on just about the same machine this is an 2003 IBM T-42 with 754 megs of RAM, Pentium M and also no hard drive. I use 8 or 4 gig USB sticks.

User avatar
nosystemdthanks
Posts: 703
Joined: Thu 03 May 2018, 16:13
Contact:

Re: Some ideas.

#704 Post by nosystemdthanks »

Isma wrote:English it's not my mother language. Expect errors.
no problem.
- Use Gujin Bootloader and take a look into the patch the developer make for the initrd (it's in gujin-2.8.7.tgz). So it's load the system root files almost flawless.


right now the only bootloaders in corepup are the ones that come with coreplus. im not sure i get what youre saying about gujin, except that its worth trying.

which is fine, the recommendation is appreciated, thank you.


- Please, take in consideration the ultra low-RAM systems those under 512Mb of ram (My main laptop only has this amount of ram).
corepup is the lightest distro that i work with, im certain someone will try to find a way to run it on the most modest hardware they can find.


- Please follow standards! Yes, don't make anything so different and special. Remember the KISS philosophy. Name the 'initrd*.gz' as 'initrd' not 'core.gz', 'pupcore.gz', 'somethingelse.gz'. Follow the standards is a nice way to keep a project future-proof.
we can try finding out what happens if we rename the initrd. maybe it will work, or maybe the init wont like it.

the initrd wanderer has adapted is actually called tinycore.gz, so wanderer renamed it to core.gz

im reluctant to rename it in mcorepup, as it will then differ in existing documentation.

i dont know of the initrd name being a posix standard, but if it is id like to know about that.


This bootloader is also flexible when it's time to installing. You can install it to any media device
im sure someone will try gujin at some point, it sounds cool. its not in the tinycore repo, incidentally. it would have to be hosted on wanderers download site.


In a perfect world you can have a DVD with multiple distros, a partition full of iso files. A distro would know a smart way to find it rootfs,
ive actually done this for refractahrpup, with isolinux,
which is the bootloader corepup uses too.

so you can fairly easily mix two live distros together and have a menu for all of them in a single iso.
With Gujin you can have a usb with multiple distros.
with isolinux (and isohybrid from syslinux) you can have that on dvd too. but you said gujin can do dvd.



how did you find gujin, by the way? how long have you used it?

https://directory.fsf.org/wiki/Gujin


It has his drawbacks too, obviusly, like no EFI support. But it will be awesome see it implement in the project, having this portability in the Corepup project.

i don't have a 2.5" IDE drive, i can't buy one, they are ridiculous expensive in my country a 80Gb 2.5" IDE can cost as much as a 250GB ATA even a 1Tb Ata. So having the option to boot from anywhere it really will make my computing a lot better.
if you take the corepup iso (even the official one) and run isohybrid on it, you can dd the iso to a usb.


Yes i was saying, make the distro ultra-low-ram pc friendly.
out of curiosity, what distro (other than deli linux) runs well on less ram than corepup uses?


When i use dCore, even if a use tce-setdrive to point to a usb flash device, despite the warnings and the knowledge of the many writes in the flash device you get the pc frooze when using the sce-import command to import a bis extension like OpenJDK8.
i havent used tce-setdrive, its probably not the way i would put corepup on a usb.

id sooner use grub or grub4dos than tce-setdrive.

you mention to go with standards-- grub is pretty close to a standard.


I'm using a T42 IBM, no hard disk drive and 512Mb RAM as my main computer.
other than what youve already told us, definitely let us know what parts of corepup you find slowing down your ibm.
[color=green]The freedom to NOT run the software, to be free to avoid vendor lock-in through appropriate modularization/encapsulation and minimized dependencies; meaning any free software can be replaced with a user’s preferred alternatives.[/color]

wanderer
Posts: 1098
Joined: Sat 20 Oct 2007, 23:17

#705 Post by wanderer »

hi guys

thanks for all the work you have put in

in both tinycore and corepup

the initrd is named core.gz

there is a cde directory for tcz which is read only on the live cd
that will be automatically loaded at boot
of course if you use a writable usb
you can delete and add to the cde directory

there is a tce directory for the tcz
that you have downloaded from the tinycore repositories
and that can be loaded on demand

you can make a home and an opt directory
on a hard drive for persistence

so these are the basic components of both tinycore and corepup

i have added others

like if you make an uncompressed 2fs image
and put it on the usb
you can symlink to it after corepup is booted
and save and retrieve your settings and other stuff to it
so you can save everything to usb like in puppy

also if you symlink a directory from home
you can use this as an uncompressed or compressed extension

and if you make multiple core.gz cde tce home and opt directories
you can rename them and have mutiple concurrent versions
of corepup on your usb or hard drive

anyway i just wanted to review some basic stuff
so people can keep things straight

next post follows

wanderer

wanderer
Posts: 1098
Joined: Sat 20 Oct 2007, 23:17

#706 Post by wanderer »

hi systemdthanks

i would like to use your script to make an iso from corepup 6

what tcz would i need to load for your script to work

could i copy another corepup 6 iso to the home directory
and use that as the iso to modify

once again thanks for doing all this work
as i said the script idea is awesome

and rockedge

thanks for all the help and experimentation
it is greatly appreciated

wanderer

User avatar
nosystemdthanks
Posts: 703
Joined: Thu 03 May 2018, 16:13
Contact:

#707 Post by nosystemdthanks »

wanderer wrote: i would like to use your script to make an iso from corepup 6
the script can actually make corepup-6, so if you want to modify corepup-6, the easy way would be to

1. set it up to create corepup-6
2. make whatever changes you want

now this uses coreplus as the iso. thats standard tinycore, so if you do it this way then people can find the source iso very easily--

even if smokey decides for some bizarre reason to chuck his ftp server into the ocean, you can still make corepup-6 from coreplus.

mcorepup is the corepup version of mkfigos. mkfigos is designed to be simple and flexible, ive used it to remix puppy tahr, librepup, antix, partition wizard, refracta, void linux and coreplus.

so im pretty sure it can make changes to corepup 6, too. my question is, are you sure thats how you prefer to do it? it will be more work for you that way, i believe.


what tcz would i need to load for your script to work
because i wanted it to be as easy as possible, and i knew he had several distros set up, i actually recommended rockedge use puppy tahr for remixing it.

i am also, funnily enough, working on mcorepup 0.5, which (now that it can create tczs at the same time as corepup) may include a remaster profile, which would create mcorepup.tcz and try to include everything needed for mcorepup to run from corepup.

that said! i have yet to actually try running mcorepup from corepup. it should be doable-- mcorepup is designed to run as many places as possible, within reason.

i know people are going to want to run mcorepup from corepup, but there were other features that i considered higher-priority.

(mcorepup is about 2 weeks old.)

youll need at the very least, python.tcz. if you want to be able to dd corepup to to usb without a helper application, youll also want syslinux.tcz (its optional. i dont think the official isos are hybrid.)

mcorepup 0.4 creates fig46.tcz, which i will attach here as fig46.tcz.gz (the forum only allows certain extensions. just rename it.)

you probably already have squashfs tools included-- those are in coreplus and probably in corepup-6 as well. and youll need tar.tcz but thats also in coreplus and corepup-6.

in 2 weeks ive really become very familiar with your system.


could i copy another corepup 6 iso to the home directory
and use that as the iso to modify
i really believe so, but id very much recommend starting with mcorepup 0.4 instead.

to set it up to create coreplus-6, remove "wanderer-minimal" and "wanderer-core" from addchanges. i havent tried it yet, but between these addchanges:

wanderer <- coreplus-6

wanderer wanderer-minimal <- coreplus 7

wnaderer wanderer-minimal wanderer-core

^ coreplus 8



you should be able to create all 3 isos from the latest mcorepup.

if its your first time, id actually recommend making coreplus-7 first as practice.

its small and its got a gui, and its the version i focus on by default for new versions of mcorepup.


once again thanks for doing all this work
in all seriousness wanderer, i am honoured to be assisting you at all with this. youre very welcome and a joy to work with. you make it easy.
Attachments
fig46.tcz.gz
md5 588ea27d30b238ad1c577e2b1d8409e1
(12 KiB) Downloaded 68 times
[color=green]The freedom to NOT run the software, to be free to avoid vendor lock-in through appropriate modularization/encapsulation and minimized dependencies; meaning any free software can be replaced with a user’s preferred alternatives.[/color]

User avatar
rockedge
Posts: 1864
Joined: Wed 11 Apr 2012, 13:32
Location: Connecticut, United States
Contact:

#708 Post by rockedge »

I was able to run fig46.py mcorepup04.fig in corepup-7, which was made using the same running
under Tahr 6.0.5nopae

a look at stage one after running

Code: Select all

 fig46.py mcorepup04.fig
Attachments
run_mcorepup04_in_corepup7.png
(139.11 KiB) Downloaded 259 times

User avatar
nosystemdthanks
Posts: 703
Joined: Thu 03 May 2018, 16:13
Contact:

#709 Post by nosystemdthanks »

rockedge wrote:I was able to run fig46.py mcorepup04.fig in corepup-7
oh yeah-- that should really run anywhere that python 2 runs. i mean there are some old macs with python 2 that are hard to update because theyre powerpc chipsets. those versions of python are so old that fig46 is more likely to work than earlier versions.

but assuming your version of python is newer than os/x tiger, you should be able to do that first part on any platform. probably even android. even windows.

running the second part is the part where you need to have other stuff installed.

im not sure all of it is available for coreplus, but it most likely is. if it isnt, we can make it work either way. let me know if you get a corepup out of running it on corepup.
[color=green]The freedom to NOT run the software, to be free to avoid vendor lock-in through appropriate modularization/encapsulation and minimized dependencies; meaning any free software can be replaced with a user’s preferred alternatives.[/color]

wanderer
Posts: 1098
Joined: Sat 20 Oct 2007, 23:17

#710 Post by wanderer »

hi nosystemdthanks and rockedge and all

if you can make a corepup in corepup
post some simple directions on how to set everything up
so i (and other people) can try the build system

i am trying to follow along as best i can
but you guys are way above me
so the instructions need to be pretty simple

i am doing my stuff manually
which is complementary to your work
and i have a whole list of tasks to play with
i will post if there is anything i think might be of interest

thanks for all your work
its all pretty amazing

wanderer

Post Reply