You are not logged in.
I guess Daedalus now is more picky than Chimaera on this topic.
That's seems to be true. Or, the instructions aren't very clear here, or they are too directed towards UEFI systems. I've used Linux for years but I'm still not used to UEFI and I do not do dual booting with windows either.
In this case, no EFI, no ESP with FAT32 is required. The ESP is useless in such a case.
Yeah, but it seemed to me that Chimaera used those flags and formats too.
Just encountered this today again when installing on an older machine. Non UEFI. No luck with Daedalus desktop image after three tries to partition the disk with recommended Gparted, GPT, EFI, ESP and FAT32 plus install the bootloader and all. Just no boot.
So, downloaded Chimaera and let that installer to everything and it seems to do exactly what's recommended in the Daedalus installer. GPT, FAT32 and ESP and all. And it boots!
Would be interesting to know the differences between the two install scripts.
However, I've seen some other threads here with the same issues with Daedalus and it's a bit worrying actually. I mean, one argument for switching to linux is to revive older machines. And then there are these issues.
But, a clean install of Chimaera is very easy to immediately upgrade to Daedalus. And there are excellent instructions on devuan.org on how to upgrade.
Yeah, using Linux Steam leaves you almost on your own. But I've found a good place at the Proton GitHub. Here:
https://github.com/ValveSoftware/Proton/issues
There you can find more info on the Shader Cache problem and several workarounds.
There are also another line of Proton you could try, it's the "GE"-line. Those versions can be downloaded and manually copied to the steamapp directory. I'm running those for some months now.
Good to know! I was holding off updating one of my machines. Thanks!
EDIT: just updated and it seems to be working 100% Kernel 6.1.0-16-amd64 and Nvidia version: 525.147.05
Yayy!
There were some problems here too with slow building of shader cache - every startup. But in my case I could disable it. Supposedly there is some minimal lag sometimes when the game is starting but I haven't noticed much.
I play World of Warships on Devaun/Steam/Nvidia and it works very nicely. So I'm following this thread too! Good Luck!
Good job! I'm into Xfce but I've used Mate before too. Mate is nice and your goals are the best!
Think I finally found the right way to rotate .xsession-errors and save a copy too.
It is to use this script:
#!/bin/bash
for i in {9..1}; do
if [[ -f /home/$USER/.xsession-errors.${i} ]]; then
mv -f /home/$USER/.xsession-errors.${i} /home/svensson/.xsession-errors.$((i+1))
fi
doneAnd in Xfce autostart run it as script at shutdown. At boot doesn't work since the file won't be written to. For some reason.
AI seems to be paranoid?
https://www.youtube.com/watch?v=65YIlwxBuvM
Just upgraded my second machine to Daedalus from Chimaera with good results. I followed the procedure from here:
https://www.devuan.org/os/documentation … o-daedalus
But before starting that I disabled third party sources temporarily.
Everything seems to be in working order.
Thank you Dev-team!
I'm reading a biography of George Orwell ("1984"). "The Ministry of Truth" by Dorian Lynskey. Really good! Generally biographies gives you a lot of history of the times concerned in the book. This book writes about circa 1880-1950 and touches the Spanish civil war, several other big authors of the time like H.G. Wells, just to mention one. As you might already know Orwell/Eric Blair partook in the civil war in the trenches of Spain.
The book 1984 might be hot even today with all the Big Tech and polarization going on in society. But I do not know if I can stand re-reading it right now. The future doesn't seem too promising, I think. ![]()
Following...
wanna see how it turns out. ![]()
Their shinny new shackles might be more appropriate . . .
![]()
It might be time to read George Orwell's "1984" again...
"ad-blockalypse " is the word! I've just these couple of weeks changed to Firefox from Chrome on my main Devuan machines. This thread is really interesting and I'll follow it closely. I really really hope some open source will survive Big Tech and their shiny new clothes.
Made the above posted script as an init.d script instead. But beware, this init script runs the actual script as normal user - which is NOT recommended. Tested this and it works. The reason is that sometimes when an x session is running and the .xsession-errors file gets rotated, it won't be written to again. So running it at shutdown or reboot should work better.
Script:
#!/bin/sh
### BEGIN INIT INFO
# Provides: /home/$USER/bin/logrotator for .xsession-errors
# Required-Start: $syslog
# Required-Stop: $syslog
# Default-Start: 0 6
# Default-Stop: 3 4 5
# Description: Rotate .xsession-errors as user $USER, creates backups. Should run at shutdown only without X
### END INIT INFO
#. /lib/lsb/init-functions
case "$1" in
start)
touch /run/logrotator.pid
chmod 600 /run/logrotator.pid
chown $USER:65534 /run/logrotator.pid
sudo -u $USER /home/$USER/bin/logrotator
;;
stop)
killall logrotator
;;
*)
echo "Usage: $SCRIPTNAME start" >&2
exit 3
;;
esacActual script (home/$USER/bin/logrotator):
#!/bin/bash
for i in {9..1}; do
if [[ -f /home/$USER/.xsession-errors.${i} ]]; then
mv -f /home/$USER/.xsession-errors.${i} /home/$USER/.xsession-errors.$((i+1))
fi
done
mv -f /home/$USER/.xsession-errors /home/$USER/.xsession-errors.1
touch /home/$USER/.xsession-errors
##Might not be needed:
chown $USER:$GROUP /home/$USER/.xsession-errorsEdit $USER and $GROUP to taste.
PS. As you can see, I do not know what I'm doing, so don't try this at home.
Hello:
In my opinion, there's no need to keep .xsession.errors files.
They are generated every time the xserver is started and the last one is appended to the previous one, which is why it can grow to huge sizes.
....
That said, even with that setup, much if not all of the information shown is of no value to the average desktop user.
ie: not a maintainer/developer.In my case, practically all of it is made up of (endessly repeating) Gtk-WARNING entries for which the only solution would seem to be some fix in a future version of Gtk (?).
Agree, but scripting is fun for an amateur. And once in a while the xsession-errors might be a saviuor. (every Blue Moon maybe) ![]()
Oops! On my other Devuan machine .xsession-errors was 830MB!!! But I thought I share my findings for a solution of the growing file size (not the errors
)
Create a file like this in /etc/logrotate.d/my-xsession-errors
$HOME/.xsession-errors {
missingok
notifempty
copytruncate
compress
weekly
rotate 5
}This will rotate the file weekly and keep 5 old files. Edit to your needs.
EDIT: added copytruncate because sometimes when the .xsession-errors file get renewed, it is not written to anymore (in that session).
From the link above
systemd was originally born as a replacement for other useless init daemons, targeted for the Linux platform, which couldn't properly initialize the system.
It's really terrible! What's the world coming to?
PS Read the whole article
PPS I didn't. (Hiding in the corner)
Thanks for this thread! My .xsession-errors was 26 Mb. Big! Mostly BS, some GTK errors, the weather applet complaining, xdotool missing for some old script.
I chose ralph.ronnquist's no 2 script and running it manually for now.
yt-dlp version stable@2023.10.13
works.
Finally my two brain cells got it! Thank you!
=if(or(B281="Sat";B281="Sun");"0";"1")(Sry for the very late answer)
Thanks for the solution @alexkemp! Works on Daedalus too. For VLC at least.
I've got to evaluate the strings of weekdays in Gnumeric- Mon, Tue, Wed, Thurs.... - and IF it is Sat OR Sun the result should be "0" or else it should be "1".
This far is OK; =if(B279<>"Sat";"1";"0") it prints "0" for true and "1" for false .
But this does not work: =ifs(B280<>"Sun";"0";B280<>"Sat";"0";B280<>"Mon";"1") it prints "0" every time. (Note IFS function)
It's a work schedule and it's keeping track of my days worked, hours, salary and stuff for each month. The week days are listed in a column.
Sorry to bother you all with this, but googling gives Excel and VBA hits that don't tell me much. Gnumeric man pages just gives me bare basics.
PS I'm not a student!!!!!
I play World of Warships on Steam with Proton. Works fine after Devuan update. I also have PlayOnLiinux and some older games like Battlefield and stuff. One other favourite is Linux native Warzone, but haven't tried it yet on Devuan.
Yes it's bad and it has even gotten worse over the years. Gobbling up more and more features. A big blob.