Page 13 of 20
Re: Void Linux
Posted: Thu Dec 30, 2021 4:32 am
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.
Re: Void Linux
Posted: Sat Jan 08, 2022 8:52 pm
by Skateman
Kernel 5.16 RC8 up and running using Voidlinux (for the first time)
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..
Re: Void Linux
Posted: Sun Jan 09, 2022 9:17 am
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/.
Re: Void Linux
Posted: Sun Jan 09, 2022 9:39 am
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..
Re: Void Linux
Posted: Sun Jan 09, 2022 9:46 am
by xeno74
I configured my network with the command "dhcpcd".
If it works then "ln -s /etc/sv/dhcpcd /var/service/dhcpcd".
Re: Void Linux
Posted: Sun Jan 09, 2022 10:02 am
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:

Re: Void Linux
Posted: Sun Jan 09, 2022 10:11 am
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.
Big picture:
https://www.skateman.nl/wp-content/uplo ... -08-46.png
Re: Void Linux
Posted: Sun Jan 09, 2022 10:13 am
by xeno74
Unfortunately, I don't use NetworkManager on Void. I use dhcpcd and sometimes the manual configuration in the file /etc/rc.local.
Re: Void Linux
Posted: Sun Jan 09, 2022 1:05 pm
by Skateman
No problem, since the Network interface is working fine i will try to get rid of the nm-network-applet.
Thanks.
Re: Void Linux
Posted: Sun Jan 09, 2022 4:24 pm
by xeno74
I was able to install the NetworkManager on Void PPC today.
Instructions:
- # xbps-install -Sv NetworkManager python3-dbus network-manager-applet
- # rm /var/service/dhcpcd
- # ln -s /etc/sv/NetworkManager /var/service/
Screenshot:
