Void Linux

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

Re: Void Linux

Post by xeno74 »

kilaueabart wrote: Thu Dec 30, 2021 12:01 am Made and saved some screenshots in void today but I can't find them anywhere!
I tested it today and I can find them in the directory /home/amigaone.
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
Skateman
Posts: 861
Joined: Thu Aug 10, 2017 8:36 pm
Location: The Netherlands

Re: Void Linux

Post by Skateman »

Kernel 5.16 RC8 up and running using Voidlinux (for the first time)

Image

Big picture.. https://www.skateman.nl/wp-content/uplo ... -46-49.png

Still solving some issues with Voidlinux at the moment!..

UPDATE... after updating Voidlinux....its broken... :-) My screen is pixelated and unreadable... might need to fiddle with an Xorg.conf again..
Last edited by Skateman on Sun Feb 27, 2022 9:24 am, edited 1 time in total.
AmigaOne X5000 -> 2GHz / 16GB RAM / Radeon RX 570 / Radeon X1950 / M-Audio 5.1 -> AmigaOS / Linux
Amiga 1200 -> Recapped / 68ec020 ACA 1221ec / CF HDD / RetroNET connected to the world
Vampire 4SA - RPi4 Running AmiKitXE Full
User avatar
xeno74
Posts: 9349
Joined: Fri Mar 23, 2012 7:58 am

Re: Void Linux

Post by xeno74 »

Skateman wrote: Sat Jan 08, 2022 8:52 pm UPDATE... after updating Voidlinux....its broken... :-) My screen is pixelated and unreadable... might need to fiddle with an Xorg.conf again..
Many thanks for testing! :-) Maybe it is the issue with libglamoregl.so. If yes then please rename the libglamoregl.so to libglamoregl.so.bak. You can find it in the directory /usr/lib/xorg/modules/.
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
Skateman
Posts: 861
Joined: Thu Aug 10, 2017 8:36 pm
Location: The Netherlands

Re: Void Linux

Post by Skateman »

Yeah, back online with VoidLinux....

You were correct with the solution "please rename the libglamoregl.so to libglamoregl.so.bak. You can find it in the directory /usr/lib/xorg/modules/."

Still have some other strange issues... the nm-network-applet does not seem to work. (enable networking is also grayed out).. but i have a working internet connection...the onboard eth is working fine.
I did uninstall and reinstalled the network applet but no luck yet..
AmigaOne X5000 -> 2GHz / 16GB RAM / Radeon RX 570 / Radeon X1950 / M-Audio 5.1 -> AmigaOS / Linux
Amiga 1200 -> Recapped / 68ec020 ACA 1221ec / CF HDD / RetroNET connected to the world
Vampire 4SA - RPi4 Running AmiKitXE Full
User avatar
xeno74
Posts: 9349
Joined: Fri Mar 23, 2012 7:58 am

Re: Void Linux

Post by xeno74 »

I configured my network with the command "dhcpcd".

If it works then "ln -s /etc/sv/dhcpcd /var/service/dhcpcd".
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

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

Re: Void Linux

Post by xeno74 »

A simple way to configure a static network configuration is to add the necessary ip commands to the "/etc/rc.local" file. With "ip a", you can figure out which name your network interface has. You can configure your desktop firewall as well in this file. I added the ssh service to the firewall configuration additionally.

For example for the network interface eth0:

Code: Select all

ip link set dev eth0 up
ip addr add 192.168.1.2/24 brd + dev eth0
ip route add default via 192.168.1.1

iptables -t filter -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -t filter -A INPUT -p tcp --dport 22 -j ACCEPT
iptables -t filter -A OUTPUT -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
iptables -t filter -A INPUT -i lo -j ACCEPT
iptables -P INPUT DROP
iptables -P OUTPUT DROP
iptables -P FORWARD DROP
After that disable the service "dhcpcd" with the command "rm /var/service/dhcpcd".

Desktop firewall:

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

Running Linux on AmigaONEs can require some tinkering.
User avatar
Skateman
Posts: 861
Joined: Thu Aug 10, 2017 8:36 pm
Location: The Netherlands

Re: Void Linux

Post by Skateman »

Nope.. network manager is not running. But Onboard interace ETH0 is up and functional...

[amigaone@void-live ~]$ sudo dhcpcd
Password:
sending commands to dhcpcd process
Seems to do nothing...

As i DD`d the partition of the void-live image to my sdb1 partition...could this be a problem ? All seems to function well.

Image

Big picture: https://www.skateman.nl/wp-content/uplo ... -08-46.png
Last edited by Skateman on Sun Feb 27, 2022 9:24 am, edited 1 time in total.
AmigaOne X5000 -> 2GHz / 16GB RAM / Radeon RX 570 / Radeon X1950 / M-Audio 5.1 -> AmigaOS / Linux
Amiga 1200 -> Recapped / 68ec020 ACA 1221ec / CF HDD / RetroNET connected to the world
Vampire 4SA - RPi4 Running AmiKitXE Full
User avatar
xeno74
Posts: 9349
Joined: Fri Mar 23, 2012 7:58 am

Re: Void Linux

Post by xeno74 »

Unfortunately, I don't use NetworkManager on Void. I use dhcpcd and sometimes the manual configuration in the file /etc/rc.local.
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
Skateman
Posts: 861
Joined: Thu Aug 10, 2017 8:36 pm
Location: The Netherlands

Re: Void Linux

Post by Skateman »

No problem, since the Network interface is working fine i will try to get rid of the nm-network-applet.

Thanks.
AmigaOne X5000 -> 2GHz / 16GB RAM / Radeon RX 570 / Radeon X1950 / M-Audio 5.1 -> AmigaOS / Linux
Amiga 1200 -> Recapped / 68ec020 ACA 1221ec / CF HDD / RetroNET connected to the world
Vampire 4SA - RPi4 Running AmiKitXE Full
User avatar
xeno74
Posts: 9349
Joined: Fri Mar 23, 2012 7:58 am

Re: Void Linux

Post by xeno74 »

I was able to install the NetworkManager on Void PPC today. :-)

Instructions:
  1. # xbps-install -Sv NetworkManager python3-dbus network-manager-applet
  2. # rm /var/service/dhcpcd
  3. # ln -s /etc/sv/NetworkManager /var/service/
Screenshot:

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

Running Linux on AmigaONEs can require some tinkering.
Post Reply