Page 7 of 20
Re: Void Linux
Posted: Sun Oct 03, 2021 4:55 pm
by xeno74
Amiguy wrote: Sun Oct 03, 2021 4:22 pm
My server does not allow this connection.
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.
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
After that disable the service "
dhcpcd" with the command "
rm /var/service/dhcpcd".
Re: Void Linux
Posted: Sun Oct 03, 2021 5:22 pm
by xeno74
ip addr add 192.168.1.2/24 dev eth0 should also works. I don't know if we really need brd + in the line.
Re: Void Linux
Posted: Sun Oct 03, 2021 6:41 pm
by Amiguy
Thank you very much for your valuable advice. I managed to get the connection to work, but using enP4096p6s0 instead of the usual eth0. I love Void-Linux

. Its setting is interesting and the possibilities seem HUGE.
Small clarification: I do not know whether "brd" is essential either. Anyway, I added it as instructed and it works fine.
It seems essential to me to specify my
DNS addresses. Can you show me how to do it?
Re: Void Linux
Posted: Sun Oct 03, 2021 8:08 pm
by xeno74
Amiguy wrote: Sun Oct 03, 2021 6:41 pm
It seems essential to me to specify my
DNS addresses. Can you show me how to do it?
You can add your DNS server ip address to the file "
/etc/resolv.conf".
For example:
Re: Void Linux
Posted: Sun Oct 03, 2021 8:31 pm
by Amiguy
Thanks Christian, it works fine

Re: Void Linux
Posted: Sun Oct 03, 2021 8:36 pm
by xeno74
Amiguy wrote: Sun Oct 03, 2021 8:31 pm
Thanks Christian, it works fine
Great!

Re: Void Linux
Posted: Mon Oct 04, 2021 6:08 pm
by Amiguy
Hello Void Friends
This project is really exciting. OK, software like Synaptic is missing, but
xbps is a good replacement that is not difficult to drive. I was even able to install
other environments. xfce is amazing and works flawlessly. For KDE (plasma X11), I do have the typical plasma reception, but I do not go beyond displaying the pointer in the dark.
On all environments, including Mate, I have no sound

. My sound card (Sound Blaster Audigy Fx) is not recognized. I have installed all the ALSA resources, but nothing helps. It's amazing, because on Fienix, it worked without problem...
What could possibly be missing?
The documentation for xbps :
https://docs.voidlinux.org/xbps/index.html
A very clear video about xbps :
https://www.youtube.com/watch?v=44I2i1QynbM
Re: Void Linux
Posted: Mon Oct 04, 2021 7:12 pm
by xeno74
Amiguy wrote: Mon Oct 04, 2021 6:08 pm
On all environments, including Mate, I have no sound

. My sound card (Sound Blaster Audigy Fx) is not recognized. I have installed all the ALSA resources, but nothing helps.
Have you copied the kernel modules directory of your current kernel to
/lib/modules yet?
Re: Void Linux
Posted: Mon Oct 04, 2021 8:34 pm
by Amiguy
Aaaaah ! Of course, that's it ! I forgot the modules

. I do see the modules for X1000, but those for X5000 are missing. I will take care of it tomorrow. Tonight, that will no longer be possible. Thank you again.
Re: Void Linux
Posted: Tue Oct 05, 2021 10:55 am
by Amiguy
Hello Christian,
The 5.15 modules make it possible to restore sound. Not wonder, knowing that the module of my Sound Blaster audio card is included.
However, I have a strange behaviour that I do not see on Fienix. Internet connection is extremely slow on Mate and does not work on xfce. With the same resources on Fienix, I do not encounter this problem: uImage-5.15-rc4 and uInitrd-5.5. When I use uInitrd-5.12, UBoot does not start.
For the record, my network configuration is configured in /etc/rc.local