PorteuX - The Next Experience. It's inspired by Slax and Porteus but with heaps of improvements
-
Ed_P
- Contributor

- Posts: 8908
- Joined: 06 Feb 2013, 22:12
- Distribution: Cinnamon 5.01 ISO
- Location: Western NY, USA
Post#31
by Ed_P » 19 Jul 2023, 18:21
roadie wrote: ↑19 Jul 2023, 16:47
I'm confused as to why Porteux would be expected to follow the same format as Porteus.
The porteu character matchs would be a hint. And
brokenman's xzm module concept.
roadie wrote: ↑19 Jul 2023, 16:47
Cinnamon, which I find to be a somewhat not intuitive desktop.
Each to his own I guess. I find the Porteus version to be very intuitive, possibly because it matches Windows' desktops and definitely because of all the work
jssouza put into it.
For rookies who would like to change the taskbar location and not have to repeat the process every reboot I offer my script.
Code: Select all
!/bin/sh
if [ `whoami` != "root" ]; then
echo -e "Enter root's password\033[1;31m"
su -c "sh $0 $1"
exit
fi
echo -e "\033[0m"; echo -en "\033]0;Make a Mod\a"
if [ -d /tmp/mod/ ]; then
rm -rf /tmp/mod
fi
mkdir -p /tmp/mod
xzm2dir /mnt/nvme0n1p7/porteux0.5/Modules/003-* -o=/tmp/mod
#xzm2dir /mnt/live/memory/images/003-* -o=/tmp/mod
#set -x
# https://forum.porteus.org/viewtopic.php?p=94844#p94844
# all settings in Cinnamon are stored in ~/.config/dconf/user
cp -a -p --parents /home/guest/.config/dconf/* /tmp/mod/
dir2xzm /tmp/mod -o=/tmp/mycinnamon.xzm && rm -rf /tmp/mod
echo
echo "COPY the .xzm file to the folder you boot your modules from."
ls -on /tmp
sleep 20
exit
Run the script after the taskbar has been moved and copy the xzm module to the folder you have the 003- module in. Rename the 003- module to .xyzm as a backup.
Ed_P
-
porteux
- Shogun

- Posts: 271
- Joined: 12 Mar 2023, 22:10
- Distribution: PorteuX
Post#32
by porteux » 21 Jul 2023, 07:37
@Ed_P, dir2xzm script has been changed since PorteuX first release to allow multiple main folders to be converted in a row. Porteus 5, on the other hand, doesn't allow that -- you need to do one by one.
If you have a better idea on how to approach this, I'm open

porteux
-
Jack
- Contributor

- Posts: 1955
- Joined: 09 Aug 2013, 14:25
- Distribution: Nemesis Cinnamon 64
- Location: USA
Post#33
by Jack » 21 Jul 2023, 18:32
I tried to build PorteuX 0.5 I downloaded porteux-0.5.zip but not sure which scripts to use. I want to learn how to build your OS.
I just like Slackware because I think it teach you about Linux to build packages where Ubuntu is like Windows you just install programs you want.
Jack
-
Ed_P
- Contributor

- Posts: 8908
- Joined: 06 Feb 2013, 22:12
- Distribution: Cinnamon 5.01 ISO
- Location: Western NY, USA
Post#34
by Ed_P » 22 Jul 2023, 01:01
Ed_P
-
Ed_P
- Contributor

- Posts: 8908
- Joined: 06 Feb 2013, 22:12
- Distribution: Cinnamon 5.01 ISO
- Location: Western NY, USA
Post#35
by Ed_P » 25 Jul 2023, 21:18
Ed_P wrote: ↑19 Jul 2023, 18:21
Run the script after the taskbar has been moved and copy the xzm module to the folder you have the 003- module in. Rename the 003- module to .xyzm as a backup.
After moving the taskbar, changes to the time and wallpaper will also be saved when the script is run.

Ed_P
-
roro
- Black ninja

- Posts: 84
- Joined: 04 Aug 2022, 08:41
- Distribution: Porteus 5.0 XFCE
Post#36
by roro » 28 Jul 2023, 10:15
USB device
is formatted fat32 but script installer-for-linux gives error.
What can I do?
Code: Select all
root@porteux:/home/guest# blkid
...
/dev/sdc1: UUID="0CF5-A2EC" BLOCK_SIZE="512" TYPE="vfat" PARTUUID="0e5e93b9-01"
root@porteux:/mnt/sdc1/boot# ./porteux-installer-for-linux.run
Creating directory /tmp/porteux-installer
Verifying archive integrity... 100% MD5 checksums are OK. All good.
Uncompressing PorteuX Installer 100%
Only 'dos' or 'msdos' partition table is supported.
Format your storage media using partition table 'dos' or 'msdos' and try again.
roro
-
Rava
- Contributor

- Posts: 5424
- Joined: 11 Jan 2011, 02:46
- Distribution: XFCE 5.01 x86_64 + 4.0 i586
- Location: Forests of Germany
Post#37
by Rava » 28 Jul 2023, 11:42
Do a
as root and post the results.
Cheers!
Yours Rava
Rava
-
roro
- Black ninja

- Posts: 84
- Joined: 04 Aug 2022, 08:41
- Distribution: Porteus 5.0 XFCE
Post#38
by roro » 28 Jul 2023, 12:01
Hi Rava,
Code: Select all
guest@porteux:~$ sudo fdisk -l
...
Device Boot Start End Sectors Size Kn Typ
/dev/sdc1 63 120176639 120176577 57,3G c W95 FAT32 (LBA)
Why does Fat 32 (LBA) not work?
roro
-
Ed_P
- Contributor

- Posts: 8908
- Joined: 06 Feb 2013, 22:12
- Distribution: Cinnamon 5.01 ISO
- Location: Western NY, USA
Post#39
by Ed_P » 28 Jul 2023, 14:55
roro wrote: ↑28 Jul 2023, 10:15
root@porteux:/mnt/sdc1/boot# ./porteux-installer-for-linux.run
Try an installer from Porteus 5.0.
Code: Select all
guest@porteus:/mnt/isoloop/boot$ ls -on
total 570
-r-xr-xr-x 1 0 384374 May 9 2022 Porteus-installer-for-Linux.com*
-r-xr-xr-x 1 0 192745 May 8 2022 Porteus-installer-for-Windows.exe*
dr-xr-xr-x 2 0 2048 Jun 14 2021 docs/
dr-xr-xr-x 2 0 4096 Jul 2 2022 syslinux/
guest@porteus:/mnt/isoloop/boot$
Ed_P
-
roro
- Black ninja

- Posts: 84
- Joined: 04 Aug 2022, 08:41
- Distribution: Porteus 5.0 XFCE
Post#40
by roro » 29 Jul 2023, 07:43
Hi Ed_P
That means:
replace in the folder /mnt/sdc1/boot/
the porteux-installer-for-linux.run file with Porteus-installer-for-Linux.com ?
roro
-
roro
- Black ninja

- Posts: 84
- Joined: 04 Aug 2022, 08:41
- Distribution: Porteus 5.0 XFCE
Post#41
by roro » 29 Jul 2023, 13:23
Thanks Ed_P for the idea
A1) porteux-installer-for-linux.run version 0.4 works for me
A2) porteux-installer-for-linux.run version 0.5 does not work
I therefore used installer A1) to install 0.5
roro
-
bour59
- Shogun

- Posts: 204
- Joined: 29 Dec 2010, 08:10
- Distribution: porteus v5.0-xfce K5.19.7
- Location: France
Post#42
by bour59 » 29 Jul 2023, 15:17
as @roro says in #36
the installer for linux does not work for PorteuX 0.5
bour59
-
porteux
- Shogun

- Posts: 271
- Joined: 12 Mar 2023, 22:10
- Distribution: PorteuX
Post#43
by porteux » 29 Jul 2023, 17:45
That's because you need the partition table to be dos or msdos, as the installer says.
Please use gparted to create a msdos partition table.
porteux
-
bour59
- Shogun

- Posts: 204
- Joined: 29 Dec 2010, 08:10
- Distribution: porteus v5.0-xfce K5.19.7
- Location: France
Post#44
by bour59 » 29 Jul 2023, 19:39
@porteusx the msdos partition table was created using fdisk
is fdisk obsolete ?
bour59
-
Rava
- Contributor

- Posts: 5424
- Joined: 11 Jan 2011, 02:46
- Distribution: XFCE 5.01 x86_64 + 4.0 i586
- Location: Forests of Germany
Post#45
by Rava » 29 Jul 2023, 20:05
bour59 wrote: ↑29 Jul 2023, 19:39
@porteusx the msdos partition table was created using fdisk
is fdisk obsolete ?
fdisk is not obsolete.
you should be able to use it to change the type from Typ W95 FAT 32 to msdos (Fat 32)
Cheers!
Yours Rava
Rava