[Solved] Trouble converting DEB file

Post here if you are a new Porteus member and you're looking for some help.
User avatar
Humming Owl
White ninja
White ninja
Posts: 4
Joined: 01 Jun 2022, 22:37
Distribution: Porteus 5.0rc3 i586 - LXDE
Location: Venezuela

[Solved] Trouble converting DEB file

Post#1 by Humming Owl » 01 Jun 2022, 22:56

Hello, I have been using Porteus for a few days and I am very happy with it. I am testing it on a spare computer to learn how to use it so then I can change to it when I feel confortable. I learned that I could convert DEB files to XZM modules with the deb2xzm command, but I am having an issue with a specific DEB file.

This one --> https://www.softmaker.net/down/softmake ... 1_i386.deb (300 MB Aprox.)

the output is the following:

Code: Select all

guest@porteus:~/Desktop$ sudo deb2xzm softmaker-office-2018_982-01_i386.deb 
Password: 
Checking required libraries ...

unxz: data.tar: Write error: No space left on device
df -h output:

Code: Select all

guest@porteus:~/Desktop$ df -h
Filesystem      Size  Used Avail Use% Mounted on
tmpfs          1005M  2.2M 1003M   1% /mnt/live
devtmpfs       1004M     0 1004M   0% /dev
/dev/sda1        52G  478M   51G   1% /mnt/sda1
/dev/sda2        96G  318M   90G   1% /mnt/sda2
tmpfs           1.2G  510M  697M  43% /mnt/live/memory/changes
aufs            1.2G  510M  697M  43% /
/dev/loop0       70M   70M     0 100% /mnt/live/memory/images/000-kernel.xzm
/dev/loop1      127M  127M     0 100% /mnt/live/memory/images/001-core.xzm
/dev/loop2      104M  104M     0 100% /mnt/live/memory/images/002-xorg.xzm
/dev/loop3       16M   16M     0 100% /mnt/live/memory/images/002-xtra.xzm
/dev/loop4      7.8M  7.8M     0 100% /mnt/live/memory/images/003-lxde.xzm
/dev/loop5      8.0M  8.0M     0 100% /mnt/live/memory/images/binutils-2.38-i586-2.xzm
/dev/loop6       81M   81M     0 100% /mnt/live/memory/images/chromium-ungoogled-91.0.4472.114-i586-en-US-1alien.xzm
/dev/loop7      256K  256K     0 100% /mnt/live/memory/images/fontconfig-2.13.92-i586-3.xzm
/dev/loop8      768K  768K     0 100% /mnt/live/memory/images/freetype-2.12.1-i586-1.xzm
/dev/loop9      7.5M  7.5M     0 100% /mnt/live/memory/images/glibc-2.35-i586-2.xzm
/dev/loop10     2.5M  2.5M     0 100% /mnt/live/memory/images/ntp-4.2.8p15-i586-9.xzm
/dev/loop11      46M   46M     0 100% /mnt/live/memory/images/openjre7-7u321_b01-i486-1alien.xzm
/dev/loop12     1.0M  1.0M     0 100% /mnt/live/memory/images/curl-7.83.1-i586-1.xzm
/dev/loop13     2.0M  2.0M     0 100% /mnt/live/memory/images/gstreamer-1.20.2-i586-1.xzm
/dev/loop14     256K  256K     0 100% /mnt/live/memory/images/libappindicator-12.10.0-i586-3.xzm
/dev/loop15     256K  256K     0 100% /mnt/live/memory/images/libdbusmenu-16.04.0-i586-3.xzm
/dev/loop16     256K  256K     0 100% /mnt/live/memory/images/libindicator-12.10.1-i586-3.xzm
/dev/loop17     256K  256K     0 100% /mnt/live/memory/images/libldap-2.4-2_2.4.47+dfsg-3+deb10u7_i386.xzm
/dev/loop18     512K  512K     0 100% /mnt/live/memory/images/uget_2.2.3-0ubuntu0_bionic_i386.xzm
/dev/sdb1       235G   60G  176G  26% /mnt/sdb1
tmpfs          1005M   58M  948M   6% /dev/shm
tmpfs           4.0M     0  4.0M   0% /sys/fs/cgroup
tmpfs           201M  4.0K  201M   1% /run/user/1000
Thanks for your time.

Cheers.
Last edited by Humming Owl on 02 Jun 2022, 14:50, edited 1 time in total.

User avatar
babam
Warlord
Warlord
Posts: 526
Joined: 16 Nov 2016, 10:30
Distribution: Porteus 5.0rc3 Xfce K6.1.1
Location: Rainy city

Trouble converting DEB file

Post#2 by babam » 02 Jun 2022, 02:03

The /tmp (aufs) directory is not enough space, you only have 697MB of free space.

Is sda1, sda2 or sdb1 a posix filesystem (ext3/ext4/btrfs)?
Sorry, my English is bad.

User avatar
Humming Owl
White ninja
White ninja
Posts: 4
Joined: 01 Jun 2022, 22:37
Distribution: Porteus 5.0rc3 i586 - LXDE
Location: Venezuela

Trouble converting DEB file

Post#3 by Humming Owl » 02 Jun 2022, 02:24

Thanks for the reply,

sda1 is fat32 (installed Porteus in this one)
sda2 is ext4 (for storing changes)
sdb1 is an USB drive I left connected to exchange some files (is exFAT) so I think it isn't important.

Cheers.

User avatar
babam
Warlord
Warlord
Posts: 526
Joined: 16 Nov 2016, 10:30
Distribution: Porteus 5.0rc3 Xfce K6.1.1
Location: Rainy city

Trouble converting DEB file

Post#4 by babam » 02 Jun 2022, 02:56

Open terminal

Code: Select all

su
cd /mnt/sda2
mkdir workdir && cd workdir
ar p /path/to/softmaker-office-2018_982-01_i386.deb data.tar.xz | tar xJf -
cd ..
dir2xzm workdir softmaker-office-2018_982-01_i386.xzm
Don't forget to delete the workdir directory

Code: Select all

rm -rf workdir
Sorry, my English is bad.

User avatar
Humming Owl
White ninja
White ninja
Posts: 4
Joined: 01 Jun 2022, 22:37
Distribution: Porteus 5.0rc3 i586 - LXDE
Location: Venezuela

Trouble converting DEB file

Post#5 by Humming Owl » 02 Jun 2022, 14:49

It worked, many thanks. :good:

User avatar
Humming Owl
White ninja
White ninja
Posts: 4
Joined: 01 Jun 2022, 22:37
Distribution: Porteus 5.0rc3 i586 - LXDE
Location: Venezuela

[Solved] Trouble converting DEB file

Post#6 by Humming Owl » 03 Jun 2022, 01:52

Now I have another issue. I installed the Free version of FreeOffice by converting the 32bits DEB file into a xzm but I can't get the programs to launch. the program doesn't give any output in terminal at all so I really don't know what is happening.

I downloaded it form here --> https://www.softmaker.net/down/softmake ... 1_i386.deb

Appearently it could be a permission issue because in one of many attempts to open the program I was pointed this error (same behavior as well) but following the suggestions in the thread changed nothing --> https://forum.softmaker.com/viewtopic.p ... ror#p72436

Cheers.

tome
Contributor
Contributor
Posts: 675
Joined: 26 Jun 2013, 14:03
Distribution: x64 Openbox
Location: Russia is causing the immense damage to humanity
Contact:

[Solved] Trouble converting DEB file

Post#7 by tome » 14 Jun 2022, 16:15

Maybe because it requires old libraries. Try with porteus from 2018.
You have mind and feelings. Be wise and clever.

Post Reply