Void Linux

AmigaOne X5000 platform specific issues related to Linux only.
Post Reply
User avatar
xeno74
Posts: 9319
Joined: Fri Mar 23, 2012 7:58 am

Void Linux

Post by xeno74 »

Image

Hi All,

I tested Void Linux PPC on my X5000 today.

First, I extracted the Void rootfs "void-ppc-ROOTFS-20200411.tar.xz" on a free partition on my X5000. It boots without any problems.

You can log into this system as root with the password "voidlinux".

After that I configured my network with the command "dhcpcd".

If it works then "ln -s /etc/sv/dhcpcd /var/service/dhcpcd".

Then I updated my Void rootfs with the following commands:
After that I rebooted the X5000.

I created a user with the following commands:
  • Code: Select all

    # useradd -m -s /bin/bash -U -G wheel,users,audio,video,cdrom,input amigaone
  • Code: Select all

    # passwd amigaone
To allow the user amigaone system access via the sudo command, you need to edit the file "/etc/sudoers" with "visudo". Uncomment this line: # %wheel ALL=(ALL) ALL.

Afterwards I installed MATE with the following commands:
  • Code: Select all

    sudo xbps-install -S xorg xterm
  • Code: Select all

    sudo xbps-install -S mate
  • Code: Select all

    sudo xbps-install -S mate-utils pluma mate-terminal mate-system-monitor mate-applets alsa-utils pavucontrol glxinfo mesa-demos lightdm lightdm-gtk3-greeter
  • Code: Select all

    sudo ln -s /etc/sv/dbus /var/service/dbus
  • Code: Select all

    sudo ln -s /etc/sv/lightdm /var/service/lightdm
  • Code: Select all

    sudo reboot
Additionally I installed the following packages:
  • Code: Select all

    sudo xbps-install -S hardinfo neofetch vlc wget
With the command "xbps-remove -o <package names>" you can remove packages.

Screenshot of Void Linux on the X5000:

Image

I am looking forward about your experiences with Void. :-)

Cheers,
Christian
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
Roland
Posts: 824
Joined: Tue May 02, 2017 7:23 am

Re: Void Linux

Post by Roland »

xeno74 wrote: Thu Aug 19, 2021 2:05 pm
I tested Void Linux PPC on my X5000 today.
...
Glad to hear you got it working! Did you already check whether there is for it some interesting software, not available for MintPPC and Fienix?

Ps. When I started the installation following your instructions, the command "# xbps-install -u xbps" gave an error message "The package 'xbps' is not present in repository pool".

Edit: The commands
# xbps-install -u xbps
and
# xbps-install -Suv
has to be run in the opposite oder!

Next problem is, how to change 'nano' to the default editor of 'Visudo'? The original one (vi?) is totally useless, I cannot operate it at all (and the manual is as incomprehensible as the program itself). I already downloaded nano with xbps.
- Roland -
User avatar
xeno74
Posts: 9319
Joined: Fri Mar 23, 2012 7:58 am

Re: Void Linux

Post by xeno74 »

Hi Rolland,
Hi All,

I uploaded a ROOTFS with MATE, VLC, SuperTuxKart, LibreOffice, Gimp, some web browsers with ViewTube etc today.

Download: void-ppc-ROOTFS-20210820.tar.gz

You can log into this system as amigaone with the password "amigaone".

Sorry if I can't answer all questions. I am also new in the Void land.

Cheers,
Christian
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
xeno74
Posts: 9319
Joined: Fri Mar 23, 2012 7:58 am

Re: Void Linux

Post by xeno74 »

xeno74 wrote: Fri Aug 20, 2021 4:02 pm I uploaded a ROOTFS with MATE, VLC, SuperTuxKart, LibreOffice, Gimp, some web browsers with ViewTube etc today.

Download: void-ppc-ROOTFS-20210820.tar.gz
It works on my X1000. :-)

Image
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
Roland
Posts: 824
Joined: Tue May 02, 2017 7:23 am

Re: Void Linux

Post by Roland »

xeno74 wrote: Fri Aug 20, 2021 4:02 pm Sorry if I can't answer all questions. I am also new in the Void land.
I succeeded finally to perform the whole installation cascade. FYI, "EDITOR=nano visudo" was needed to change the default editor to nano. Nothing special, I think...

But I cannot get lightdm to load the dekstop. I have still a Radeon R7 240 in my machine, and I tested the 'xorg.conf' (with 'fbdev' defined) from both Fienix and MintPPC but got only a black screen... Is Void incompatible with fbdev? I do not have here any other graphics board to test.
- Roland -
User avatar
xeno74
Posts: 9319
Joined: Fri Mar 23, 2012 7:58 am

Re: Void Linux

Post by xeno74 »

Roland wrote: Sat Aug 21, 2021 10:48 am Is Void incompatible with fbdev?
I think no. Is the package "xf86-video-fbdev" installed? I didn't need to install it because it was installed automatically.
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
xeno74
Posts: 9319
Joined: Fri Mar 23, 2012 7:58 am

Re: Void Linux

Post by xeno74 »

Date and Time with NTP

Install the package NTP:

Code: Select all

sudo xbps-install -S ntp
Enable the service:

Code: Select all

sudo ln -s /etc/sv/ntpd /var/service
Reboot and check if the NTP service works:

Code: Select all

sudo sv status ntpd
Output: run: ntpd: (pid 2296) 493497782s
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
xeno74
Posts: 9319
Joined: Fri Mar 23, 2012 7:58 am

Re: Void Linux

Post by xeno74 »

Installing the Network-Manager

Code: Select all

sudo xpbs-install -S network-manager-applet
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
xeno74
Posts: 9319
Joined: Fri Mar 23, 2012 7:58 am

Re: Void Linux

Post by xeno74 »

Hi All,

I released an img with a boot and root partition including the void-installer today.

Download: void-live-powerpc-20210822.img.tar.gz 3.8G
md5sum: 8bfc1fc6d63c0fc0741c1bd8e3b4078a

Image

Cheers,
Christian
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
xeno74
Posts: 9319
Joined: Fri Mar 23, 2012 7:58 am

Re: Void Linux

Post by xeno74 »

xeno74 wrote: Sun Aug 22, 2021 1:59 pm Hi All,

I released an img with a boot and root partition including the void-installer today.

Download: void-live-powerpc-20210822.img.tar.gz 3.8G
md5sum: 8bfc1fc6d63c0fc0741c1bd8e3b4078a

Cheers,
Christian
Please add your own favorite kernel and the dtb (X5000) to the small FAT16 partition.
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
Post Reply