Page 4 of 20
Re: Void Linux
Posted: Wed Sep 01, 2021 5:26 pm
by Roland
xeno74 wrote: Wed Sep 01, 2021 11:18 am
I installed and tested the Eolie WebKit web browser on Void Linux today and it works better than Epiphany. It loads websites very fast. You don't need to start it with the activated variable "WEBKIT_DISABLE_COMPOSITING_MODE".
Thank you for the tip... It indeed works much better than Epihany! Have you found a way to import bookmarks into it? There seemed to be only the options 'Chrome' and 'Chromium', which are not present.
For some reason Eolie did not appear in the 'Internet' menu but I had to start it from terminal. Is that normal for it....?
How do you manage those variables in Eolie? The usual 'about:config' did not work with it.
Re: Void Linux
Posted: Wed Sep 01, 2021 6:23 pm
by xeno74
Roland wrote: Wed Sep 01, 2021 5:26 pm
Thank you for the tip... It indeed works much better than Epihany! Have you found a way to import bookmarks into it?
I successfully added some bookmarks but I didn't try to import them.
Roland wrote: Wed Sep 01, 2021 5:26 pm
For some reason Eolie did not appear in the 'Internet' menu but I had to start it from terminal. Is that normal for it....?
Yes, it's normal. I created a launcher on the desktop.
Roland wrote: Wed Sep 01, 2021 5:26 pm
How do you manage those variables in Eolie? The usual 'about:config' did not work with it.
I don't need to manage any variables in Eolie currently.
Re: Void Linux
Posted: Thu Sep 02, 2021 12:26 pm
by xeno74
Another screenshot of Eolie on the X1000:

Re: Void Linux
Posted: Thu Sep 02, 2021 1:30 pm
by xeno74
xeno74 wrote: Sun Aug 22, 2021 8:46 am
Date and Time with NTP
Install the package NTP:
Enable the service:
Code: Select all
sudo ln -s /etc/sv/ntpd /var/service
Reboot and check if the NTP service works:
Output:
run: ntpd: (pid 2296) 493497782s
It seems, it takes longer to get the correct date and time with NTP on Void Linux so all SSL certifcates aren't valid. I solved it with modifying the NTP runit script:
sudo vi /etc/sv/ntpd/run
Code: Select all
#!/bin/sh
# exec isc-ntpd -g -u ntpd:ntpd -n >/dev/null 2>&1
exec ntpdate pool.ntp.org
Re: Void Linux
Posted: Thu Sep 02, 2021 3:25 pm
by xeno74
Timezone
The default system timezone can be set by linking the timezone file to
/etc/localtime:
For example for Berlin:
Code: Select all
sudo ln -sf /usr/share/zoneinfo/Europe/Berlin /etc/localtime
Re: Void Linux
Posted: Sat Sep 04, 2021 2:06 pm
by xeno74
Installation of the new Arctic Fox
27.12.0 deb package on Void PPC Linux:

Re: Void Linux
Posted: Sun Sep 05, 2021 11:43 pm
by kilaueabart
xeno74 wrote: Tue Aug 31, 2021 8:57 pm
Maybe glamor is the problem. Please rename the
libglamoregl.so to
libglamoregl.so.bak as root.
Code: Select all
mv /usr/lib/xorg/modules/libglamoregl.so /usr/lib/xorg/modules/libglamoregl.so.bak
That didn't work, and then I found something that made me think my install was incomplete, so I reformatted /dev/sd8 and unarchived VOID in it again. But I had the same problem as the first time, so I added xorg.conf and tried again. Again, the same as before. So I followed the above suggestion from you.
Here is something really weird, that I don't understand at all.
Code: Select all
root@Fienix:/media/fienix/VOID# mv usr/lib/xorg/modules/libglamoregl.so /usr/lib/xorg/modules/libglamoregl.so.bak
root@Fienix:/media/fienix/VOID# ls usr/lib/xorg/modules/
drivers input libfb.so libshadow.so libvgahw.so
extensions libexa.so libfbdevhw.so libshadowfb.so libwfb.so
The
mv instruction seemed to work. No error message. As I understand
mv,
usr/lib/xorg/modules should now contain two versions of
libglamoregl, but in fact there are none! What gives?
I should give up on VOID. My mind is getting way too old for this.
Re: Void Linux
Posted: Mon Sep 06, 2021 4:27 am
by xeno74
kilaueabart wrote: Sun Sep 05, 2021 11:43 pm
Code: Select all
root@Fienix:/media/fienix/VOID# mv usr/lib/xorg/modules/libglamoregl.so /usr/lib/xorg/modules/libglamoregl.so.bak
You moved libglamoregl from your Void partition to your Fienix partition.
Re: Void Linux
Posted: Mon Sep 06, 2021 10:30 pm
by kilaueabart
I told you! "My mind is getting way too old for this." I took me a long time to find that evil "/."
I put the libglamoregl.so.bak into VOID/usr/lib/xorg/modules and ran it again. A change from before in what comes up in the upper left corner of the dark screen. Instead of the line I reported earlier, now there are seven lines that appear for about a second at various time intervals. I doubt that they mean anything as far as my problem is concerned, but they say something like
Code: Select all
hub 2-1.4: new high-speed USB device number 4 using fsl-ehci
hub 2-1.4: New USB device found, idVendor=05c3, idProduct=0610, bcdDevice=6.55
hub 2-1.4: New USB device strings: mfr=1, Product=2, SerialNumber=0
hub 2-1.4: Product: USB2.1 Hub
hub 2-1.4: Manufacturer: GenesysLogic
hub 2-1.4:1.0 USB hub found
hub 2-1.4:1.0 4 ports detected
The blue rectangle with
Out Of Range continues to flash screen center at intervals.
I think USB2 might be where I have the kernel, but not sure how to verify it from here.
Re: Void Linux
Posted: Tue Sep 07, 2021 9:31 am
by xeno74
Do you still use the following xorg.conf?
Code: Select all
Section "Monitor"
Identifier "Monitor0"
EndSection
Section "Device"
Identifier "Device0"
Driver "fbdev"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection