The officially official Devuan Forum!

You are not logged in.

#1 Re: Hardware & System Configuration » [SOLVED] Terrible graphical performance » 2024-07-16 00:59:18

If you have no nVidia card, try blacklisting nVidia modules at boot.

to try it out, add this to the grub boot line... tap 'e' to edit the grub boot line at boot.

module_blacklist=nvidia

If it works, add a file to your /etc/modules.d/

/etc/modules.d/nvidia-blacklist.conf

# generated by nvidia-installer
blacklist nvidia
options nvidia modeset=0

I hope this helps

#3 Re: Installation » [SOLVED] is there not an ISO that doesn't immediately start the installer? » 2024-07-10 23:33:56

Hi, if you'd like to see a stable devuan system before you install, and be able to install from it...

try the current stable, use the "download" link at the top-right of this page, or use this link (file size 1 Gb).

https://files.devuan.org/devuan_daedalu … p-live.iso

If you insist on using the bleeding edge testing release you may encounter problems that require experience to resolve.

All the best.

#4 Re: News & Announcements » Devuan on Fediverse » 2024-07-06 04:27:43

I'm in as GlennsPref. Thank you for the info.

#5 Re: Other Issues » How do I stop apt deleting stuff from /etc/service? » 2024-07-02 23:30:25

Hi stribika,

Your situation has not happened to my system, but

you could try setting the immuteable attribute to the file with...

chattr +i (absolute path to file)

At least you'll get a chance to see if it works without breaking the system.

you may remove the attribute with

chattr -i (absolute path to file)

I realise it's a hack, but it may sustain you untill there is a proper solution (I use openrc, not runit). All the best.

#6 Re: Hardware & System Configuration » Blacklisting unused driver modules » 2024-07-02 23:01:58

save editing my last post, but with more to add...

Another way to blacklist unwanted kernel modules

This was done as a step towards hardening this system.

/etc/modules

# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.
# Parameters can be specified after the module name.
install dccp /bin/false #    DCCP — Datagram Congestion Control Protocol
install sctp /bin/false #    SCTP — Stream Control Transmission Protocol
install rds /bin/false #    RDS — Reliable Datagram Sockets
install tipc /bin/false #    TIPC — Transparent Inter-process Communication
install n-hdlc /bin/false #    HDLC — High-Level Data Link Control
install ax25 /bin/false #    AX25 — Amateur X.25
install netrom /bin/false #    NetRom
install x25 /bin/false #    X25
install rose /bin/false #    ROSE
install decnet /bin/false #    DECnet
install econet /bin/false #    Econet
install af_802154 /bin/false #    af_802154 — IEEE 802.15.4
install ipx /bin/false #    IPX — Internetwork Packet Exchange
install appletalk /bin/false #    AppleTalk
install psnap /bin/false #    PSNAP — Subnetwork Access Protocol
install p8023 /bin/false #    p8023 — Novell raw IEEE 802.3
install p8022 /bin/false #    p8022 — IEEE 802.2
install can /bin/false #    CAN — Controller Area Network
install atm /bin/false #    ATM
install cramfs /bin/false
install freevxfs /bin/false
install jffs2 /bin/false
install hfs /bin/false
install hfsplus /bin/false
install squashfs /bin/false
install udf /bin/false
install cifs /bin/false
install nfs /bin/false
install nfsv3 /bin/false
install nfsv4 /bin/false
install ksmbd /bin/false
install gfs2 /bin/false
install vivid /bin/false
install firewire-core /bin/false
install thunderbolt /bin/false

I hope this helps you.

#7 Re: Hardware & System Configuration » Blacklisting unused driver modules » 2024-07-02 22:55:00

Hi, I blacklist modules in /etc/modules.d/...

like lp

/etc/modules.d/LP-blacklist

# The LP module is seup for network printers, so we block it by default.
blacklist lp

you may also blacklist by adding it to your /etc/default/grub file line GRUB_CMDLINE_LINUX_DEFAULT= (and running "update-grub" before rebooting)

/etc/default/grub

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# GlennsPref 20230920 ipv6
# GlennsPref 20240209 hardening-tips

GRUB_DEFAULT=0
GRUB_TIMEOUT=4
GRUB_DISTRIBUTOR=`lsb_release -i -s`
GRUB_CMDLINE_LINUX_DEFAULT="console=tty12 vga=794 modeset.nouveau=0 nokmsboot ipv6.disable=1 security=none selinux=0 apparmor=0 amd_iommu=on usbcore.autosuspend=-1"

# discover other os's
GRUB_DISABLE_OS_PROBER=false

GRUB_GFXMODE=1920x1080

GRUB_INIT_TUNE="400 440 1"
# resume=uuid errors... noresume "we don't susspend"
GRUB_CMDLINE_LINUX="noresume idle=nomwait"

GRUB_THEME=/usr/share/desktop-base/grub-themes/desktop-grub-theme/theme.txt

I am not sure which is most efficient.

#8 Re: Hardware & System Configuration » [SOLVED] Progressively upgraded Daedalus / dead/dangling links » 2024-07-01 22:20:32

The symlinks program is effective.

I have been using symlinks to clean up for a long, long time and can't remember it failing or causing any other problems.

You may find a manual (diy) approach more reliable, but (you only have a very short list there) you might find that even if you rename the dangling links to correct them or to make them safely redudndant the proper links already exist or it'll be so catastophic you'll be reistalling anyway.

Trust me, I am not a doctor.

#9 Re: Hardware & System Configuration » [SOLVED] Huge upgrade this morning ... » 2024-06-30 23:55:17

My BT mouse still works.... it's a wifi card based BT chip, not usb dongle.

#10 Re: Hardware & System Configuration » [SOLVED] Huge upgrade this morning ... » 2024-06-30 22:51:57

Hi, if you have progessively upgraded from beowulf to Daedalus you may have dead links in your file system.

2 programs I have used are, ldconfig and symlinks.

The warning may be just noise, but cleaning up old links may remove them.

check out ...

symlinks --help (is a stand-alone package)
ldconfig --help (is installed with libc-bin package)

I use these quite often, but have a look first to be sure, to be sure.

symlinks -csrv /

ldconfig -Cfpv

I hope this helps get rid of the noise so you can see other messages clearer.

#11 Re: Desktop and Multimedia » Firefox broken? » 2024-06-29 23:17:29

I get similar problems when a browser update has been released and I'm still using an out-dated version. And upgrade may sort you out.

#12 Re: Off-topic » Music » 2024-06-24 22:13:37

Queen Live Killers

#13 Re: Hardware & System Configuration » kernel -- immutable - DEFECT in 6.0 onwards or hardened » 2024-06-11 22:51:38

Just a guess.

@FAipLLC-Andrew
Maybe the issue is related to this?

That link to the asus forum is just a guess. It may be informative but still doesn't address the issue. Not a technical response, just an opinion from a more experienced user, imho.

For instance,
1. when I had the nvme drive in the 2nd slot I could format and install the os, but the mobo bios would not boot from it.
2. Using the nvme does not turn off the sata 5 & 6, ...I have 6 sata slots with 5 hdd's, (3 ssd's and 2 Hdd's) all are working.
3. It wasn't untill I moved the nvme drive to slot 1 AND enabled the nvme chipset in bios that the drive became available for booting the system.

Sorry for being vague, I had thought my problem was from overheating the nvme drive because I had it installed outside the heatsink cover.
I had that drive installed in the system, but unused for about 4 weeks until I figured my easy install method was holding me back from getting the nvme drive to boot. I could install the OS but not boot from the drive. The installer program was able to find the drive and do all kinds of tests except boot.

The user manual is not a service manual with technician notes... The service notes never make it to the public forum, otherwise we would not need them (ASUS service department) to repair systems as much. Just my 2cents worth.

I'm glad you got it working. All the best.

#14 Re: Off-topic » The Joke Thread » 2024-06-07 22:12:06

Please keep the jokes coming.

Would be nice if there was a constantly updated page detailing the highest priority items to be done, and how exactly to get started on it.

I think that is a very good idea, perhaps it could be called "The ToDo List".

I haven't any experience in packaging or mirroring either, but I've built kernels and other software from source in previous days.

Generally, I don't install any 'dev' packages unless I really need them.

#15 Re: DIY » init script for stubby » 2024-06-03 22:46:41

I don't use sudo, you might be better off starting a new thread with your question. All the best.

#16 Re: Off-topic » What are you reading/want to read ? » 2024-06-03 22:44:06

Narcotopia, Patrick Winn... just got this one, it's about the golden triangle and the drug manufacturing trade there.

The Myth Of Normal, Gabor Mate'. About trauma and recovery and culture.

#17 Re: DIY » init script for stubby » 2024-06-03 03:33:32

Hi, in case you are waiting for HoaS to reply, he hasn't been on these forums for a while.

#18 Re: Installation » [SOLVED] Chimaera to Daedalus upgrade broke WINE » 2024-05-24 22:27:38

Hi, I haven't had this problem, but I wonder if the app "symlinks" may help.

I use it with this...

symlinks -csrv /

symlinks --help to see the options

Either that, or reinstalling wine to reconnect the links with the system.

#19 Re: Hardware & System Configuration » kernel -- immutable - DEFECT in 6.0 onwards or hardened » 2024-05-15 03:05:16

Hi, I have a similar mobo, Asus ROG strig x470-F gaming, and had a problem with the nvme when attached to the external (outside the heatsink) slot.

It wasn't untill I moved the nvme stick to the first slot (under the heatsink, and mounting points) that it was recognised by grub and possibly the install program as well, been a while now, so I forget the exact details.

Your description is very interesting. I thought I had a heating problem, and it may well have been, but I do remember it was a complicated issue.

#20 Re: Off-topic » Music » 2024-05-12 01:37:40

Billy Strings - Away From The Mire - Live in New Orleans - 12.30.2023

Amazing bluegrass. on youtube...

https://www.youtube.com/watch?v=HmC_oM6__xA

#21 Re: Off-topic » The Joke Thread » 2024-05-09 23:41:35

Thank you for making me smile again @quickfur... I hope you're well. And I wish for you peace, & have a good weekend too.

#22 Re: Other Issues » KDE login oddity » 2024-05-05 23:20:05

Hi, it's probably waiting for network shares, time (ntp) and dhcp. Kde is a networking office environment... imo

I don't have your problem, It could be that I turn off all services non-related to a single pc.

#23 Re: Hardware & System Configuration » Broken link fix? » 2024-05-05 23:13:45

I also had two versions installed...

apt list | grep installed | grep "openjdk"
...
openjdk-11-jre-headless/oldstable-security,now 11.0.23+9-1~deb11u1 amd64 [installed,automatic]
openjdk-17-jre-headless/stable-security,now 17.0.11+9-1~deb12u1 amd64 [installed,automatic]
...

So, I tried to get rid of it...

root@GamesBox:/root  nala purge openjdk-11-jre-headless
====================================================================================================================================================================================
 Purging                                                                                                                                                                            
====================================================================================================================================================================================
  Package:                                                    Version:                                                                                                       Size:  
  openjdk-11-jre-headless                                     11.0.23+9-1~deb11u1                                                                                         175.7 MB  
                                                                                                                                                                                    
====================================================================================================================================================================================
 Summary                                                                                                                                                                            
====================================================================================================================================================================================
 Purge 1 Packages                                                                                                                                                                   
                                                                                                                                                                                    
 Disk space to free  175.7 MB   
                                
Do you want to continue? [Y/n] 
╭─ Purging Packages ───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│Removing:   openjdk-11-jre-headless:amd64 (11.0.23+9-1~deb11u1) 

Well, that's 175Mb recovered space. And who knows what kinds of adventures... I would only install it if I was programming, I'm not.

thanks for the heads-up.

#24 Re: Documentation » How to: Devuan 5 Daedalus an pipewire » 2024-04-23 22:30:18

@mirrortokyo: HoaS's scripting solution may be found all over the net, I wouldn't know where to start, am just the messenger.

I like your solution Steve, looks nice and tidy and repeatable from install to install.

Thank you

#25 Re: Off-topic » What are you reading/want to read ? » 2024-04-18 22:45:58

I just got a copy of Hacking Exposed, Linux 3rd edition.

600 pages, ...

I thought I should share, this book edition was published in 2008, so it's not that current...

Kernel 2.4, netfilter, iptables (no nftables) and many of the links are old as well.

just a heads-up... it's quite expensive for a history story.

Board footer

Forum Software