Page 1 of 1

[SOLVED] Is there a program to XZM multiple files into one?

Posted: 16 Jul 2013, 20:21
by Nouatvs
I down of Sourceforge's new wine 1.6 and slackyd-d finds dependencies. Works well. 8)
These (files) mount them and create a new super wine.xzm with all dependencies.
Is there any program that join XZM multiple files into one?? :crazy:
Thanks.

Or mini script?

Re: Is there any program that XZM multiple files into one??

Posted: 17 Jul 2013, 00:44
by don570
Puppy linux has a script for deb and rpm packages.
If you are a programmer you could try to duplicate it.

http://www.murga-linux.com/puppy/viewtopic.php?t=57548

______________________________________________

Re: Is there any program that XZM multiple files into one??

Posted: 17 Jul 2013, 00:50
by Hamza
Please have a look on Porteus Modules Tools.

Re: Is there any program that XZM multiple files into one??

Posted: 17 Jul 2013, 02:36
by brokenman
If you place all of these modules into your porteus/modules folder then you can open PPM (Porteus Package Manager) on the panel and the modules will show up in the module tools that Hamza mentions. Then you can merge them.

Or you can use this code in a console to merge your modules. It assumes that all your modules are in /tmp/modules
mkdir /tmp/superwine
for mods in /tmp/modules/*.xzm; do xzm2dir $mods /tmp/superwine; done
dir2xzm /tmp/superwine /tmp/superwine.xzm
rm -r /tmp/superwine


For slackware packages in /var/slackyd you can use:
for pkgs in /var/slackyd/*.txz; do installpkg -root /tmp/superwine $pkgs; done

Re: Is there any program that XZM multiple files into one??

Posted: 17 Jul 2013, 21:43
by Nouatvs
Thanks all. :D

Re: Is there any program that XZM multiple files into one??

Posted: 18 Jul 2013, 00:24
by Nouatvs
Bash lines work well as a guest user.
PPM also (ask for root password), but be aware it does well and you have to log in as root to see the transformation. (Good idea as it also allows you to change the modules folder to which one under or created files)
Puppy bash call other programs to be installed to operate well and that is not the idea and need to know more about language used linux. :D
SOLVED

Re: [SOLVED] Is there a program to XZM multiple files into o

Posted: 18 Jul 2013, 08:23
by Hamza
Moved from "i486 modules requests" to "Newbies questions".

[SOLVED] Is there a program to XZM multiple files into one?

Posted: 18 Oct 2023, 23:02
by francois
merging multiple modules into one by brokenman
Bum!