The officially official Devuan Forum!

You are not logged in.

#51 Re: Hardware & System Configuration » Disable a NIC at boot. » 2024-11-28 11:42:53

update

I've just tried in /etc/init.d/networking

EXCLUDE_INTERFACES=wlan0

but it's not working... the NIC is still up...

same with /etc/rc.local

ifconfig wlan0 down

:'(

#52 Re: Hardware & System Configuration » Disable a NIC at boot. » 2024-11-28 11:36:38

@greenjeans
Thanks, but I don't have an hardware switch to shutdown disable the WiFi.
Another way it's to disable it in the BIOS/UEFI smile (I'll try on my in a couple of hours)

@fanderal
Thanks, I believe you meant: /etc/network/interfaces smile

in that file I got (I didn't modify it)

auto lo
iface lo inet loopback

indeed I see in /etc/init.d/networking

CONFIGURE_INTERFACES=yes
EXCLUDE_INTERFACES=

If I set CONFIGURE_INTERFACES to no I assum it will affect all the interface
Maybe I can use just EXCLUDE_INTERFACES ? EXCLUDE_INTERFACES=wlan0 ?

#53 Hardware & System Configuration » Disable a NIC at boot. » 2024-11-27 17:04:17

SpongeBOB
Replies: 11

Hi,

I would like to disable a NIC a boot.

I've created an init script

#!/bin/sh
### BEGIN INIT INFO
# Provides:          disable_WiFi
# Required-Start:    $network $local_fs
# Required-Stop:     $network $local_fs
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Disable WiFi and BlueTooth
### END INIT INFO

case "$1" in
  start)
    echo "Disabling WiFi & BlueTooth"
    ifconfig wlan0 down
    ;;
  stop)
    echo "WiBT will not be reactived"
    ;;
  *)
    echo "Usage: $0 {start|stop}"
    exit 1
esac

exit 0

But after reboot and login ifconfig still show the interface :'(

Any ideas ?

Thanks.

#54 Re: Hardware & System Configuration » How to disable IPv6? » 2024-11-27 15:26:43

Thanks nixer & SSCM

I created a init script /init.d/....

with

sysctl -w net.ipv6.conf.default.disable_ipv6=1
sysctl -w net.ipv6.conf.all.disable_ipv6=1

inside.

now just remain to test if IPv6 is really disabled ! (any ideas ?)

#55 Re: Hardware & System Configuration » How to disable IPv6? » 2024-11-26 17:12:54

Hi,

I have a devuan-daedalus-6.1.93 running on a Raspberry.

I would like also to disable the ipv6 (system wide)

I've seen many time this:

nano /etc/sysctl.d/disableipv6.conf
#add line:
net.ipv6.conf.all.disable_ipv6=1

But If I don't mistaken this is only for systemd 🤢 ?

In the OP link, is the method 2 nano /etc/modprobe.d/blacklist-ipv6.conf ...

will work on sysv init ?

Thanks.

#56 Other Issues » How compile iperf on a live (load to RAM) devuan ? » 2024-11-04 11:07:11

SpongeBOB
Replies: 0

Hi,

I would like to run iperf3 on a live (load to RAM) devuan.

In one of my topic I've managed to install gcc on devuan5 (installed not live)
https://dev1galaxy.org/viewtopic.php?pid=50058#p50058

so it seem when devuan is installed ,/etc/apt/sources.list have this line:

deb cdrom:[Devuan GNU/Linux 5.0.1 daedalus amd64 - desktop 20230914]/ daedalus contrib main non-free non-free-firmware

but the live (loaded into RAM)
have this by default

# Package repositories
deb http://deb.devuan.org/merged daedalus main non-free-firmware
deb http://deb.devuan.org/merged daedalus-updates main non-free-firmware
deb http://deb.devuan.org/merged daedalus-security main non-free-firmware

So, how can I point the "booted" USB or the RAMed file into /etc/apt/sources.list ?

Thank you.

#57 Other Issues » What is the real MAC of wlan0 ? » 2024-09-20 10:12:44

SpongeBOB
Replies: 13

Hi,

in Devuan 4 (that run as a Virtual Machine)

in the xfce GUI Network connection, under the tab Wi-Fi I can see Device: wlan0 (a MAC address )

with nmcli

...
wifi (the chipset name), a different MAC address
...

So I was wondering which one give the true "physical"/OEM MAC address

Thanks

#58 Re: Other Issues » What is best way to install latest version of Firefox? » 2024-08-25 08:14:22

I also noticed that the third command

gpg -n -q --import --import-options import-show /etc/apt/keyrings/packages.mozilla.org.asc | awk '/pub/{getline; gsub(/^ +| +$/,""); if($0 == "35BAA0B33E9EB396F59CA838C0BA5CE6DC6315A3") print "\nThe key fingerprint matches ("$0").\n"; else print "\nVerification failed: the fingerprint ("$0") does not match the expected one.\n"}'

gpg: keyblock resource '/root/.gnupg/pubring.kbx': No such file or directory

The key fingerprint matches (35BAA0B33E9EB396F59CA838C0BA5CE6DC6315A3).

Is the Public ring is somewhere else on devuan ?

Thanks.

#59 Re: Other Issues » What is best way to install latest version of Firefox? » 2024-08-22 19:06:49

First thank you @VH smile I was just about to ask the question tongue

I've tried your link.

but at the last step I got

su
apt-get update && apt-get install firefox
Hit:1 http://deb.devuan.org/merged chimaera InRelease
Hit:2 http://deb.devuan.org/merged chimaera-updates InRelease
Hit:3 http://deb.devuan.org/merged chimaera-security InRelease             
Get:4 https://packages.mozilla.org/apt mozilla InRelease [1,528 B]         
Err:4 https://packages.mozilla.org/apt mozilla InRelease
  Unknown error executing apt-key
Reading package lists... Done
W: GPG error: https://packages.mozilla.org/apt mozilla InRelease: Unknown error executing apt-key
E: The repository 'https://packages.mozilla.org/apt mozilla InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details

If anyone have an idea. ?

#60 Devuan » Devuan has migrated from the gitlab store. » 2024-07-14 11:35:04

SpongeBOB
Replies: 1

Hi,

https://git.devuan.org

display

WHERE ARE MY GITLAB PROJECTS ???

Devuan has migrated from the gitlab store.
You should register here and migrate your projects.

Is this url still the GIT for Devuan ?

Thanks.

#61 Installation » Upgrade custom Devuan. » 2024-07-14 11:30:52

SpongeBOB
Replies: 4

Hi,

I'm using Chimaera 4 and I ❤️ it !

of course I'm looking to upgrade it to Daedalus 5.0 or excalibur

But I've done a LOT of core/system changes like in `/etc/sysctl.d` disabling a lot a Daemon etc etc..

So is an upgrade would be wise ? or should I start with a fresh install ?

Thanks

#62 Devuan » Be noticed of new Devuan release ? » 2024-07-14 11:03:18

SpongeBOB
Replies: 0

Hi,

I would like to be noticed for every new Devuan release.

I like very much RSS, but it seem there is none available on devuan.org

So for now I will subscribe on https://dev1galaxy.org/extern.php?actio … 2&type=rss ( News & Announcements )

But this also include other news than release, So I humbly propose to create a new forum section (Release) that will contain duplicate/link post of only release ?

Cheers.

#64 Hardware & System Configuration » [SOLVED] Directory question. » 2024-07-13 15:15:33

SpongeBOB
Replies: 4

Hi,

I'm serving websites (trough Python). For the moment the venv are located under /home/aUser/Sites I'm wondering if it's a good place ? Maybe a place like /Sites will be better ?

Is there any concern doing so ?

Thanks.

#66 Re: Other Issues » [SOLVED] install GCC etc.. offline ? » 2024-05-23 17:49:05

I found !

actually with a fresh install and the etc/apt/sources.list untouched

deb cdrom:[Devuan GNU/Linux 5.0.1 daedalus amd64 - desktop 20230914]/ daedalus contrib main non-free non-free-firmware

a "simple"

apt install gcc

works.

if anyone have a good documentation about apt I'm all ears smile

#67 Re: Other Issues » [SOLVED] install GCC etc.. offline ? » 2024-05-23 17:09:29

Hi,

is `gcc` come with one of the install medium ?

Thanks.

#68 Other Issues » [SOLVED] install GCC etc.. offline ? » 2024-04-06 17:14:59

SpongeBOB
Replies: 5

Hi everyone,

I need to compile few package on a Devuan5 that is offline.

What would be the best way to install common compiler ?

gcc
cc
cl

Do I need the three ? or just gcc will be enough ?

Thanks.

#69 Re: Other Issues » [SOLVED] is cron daemon crond is running when there is no cronjob set ? » 2023-07-29 13:12:01

Thank you all for your additional inputs !

I've tried pgrep = ♥

#70 Re: Other Issues » [SOLVED] is cron daemon crond is running when there is no cronjob set ? » 2023-07-07 05:28:07

Thank you all for your reply !

Thank you that have confirmed my thinking. I'm shocked that some people can post "tutorial" without mastering a bit the topic.... Internet peoples.. big_smile

@boughtonp, oh great indeed I will use also a regex expression in grep to avoid to have the grep itself in the results.

ps aux | grep 'cron$'

#71 Other Issues » [SOLVED] is cron daemon crond is running when there is no cronjob set ? » 2023-07-06 09:13:05

SpongeBOB
Replies: 9

Hi everyone,

I would like to create a cronjob.

I've found a "tutorial" online -->  https://linuxhandbook.com/crontab/#the-cron-daemon

But it's start already weirdly...

on his example

christopher@pop-os:~$ ps ux | grep crond
christo+  8942  0.0  0.0  18612   840 pts/0    S+   02:16   0:00 grep --color=auto crond

I can see that the daemon is running for my user account.

neutral for me it's look like that we see the grep process ! not the crond !? Am I right?

anyway I've tried on my Devuan(Chimaera) and I don't see a crond running.. is that normal ?

Thanks.

#72 Re: Other Issues » Update nginx > 1.19.4 » 2023-05-29 08:33:11

BTW I followed those instructions

Installing a Prebuilt Debian Package from the Official NGINX Repository

but when I do an sudo apt update

i get

Hit:1 http://deb.devuan.org/merged chimaera InRelease
Ign:2 http://nginx.org/packages/debian chimaera InRelease
Hit:3 http://deb.devuan.org/merged chimaera-updates InRelease
Hit:4 http://deb.devuan.org/merged chimaera-security InRelease
Err:5 http://nginx.org/packages/debian chimaera Release
  404  Not Found [IP: 3.125.197.172 80]
Reading package lists... Done
E: The repository 'http://nginx.org/packages/debian chimaera Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

#73 Other Issues » Update nginx > 1.19.4 » 2023-05-26 06:57:00

SpongeBOB
Replies: 8

Hi everyone !

I'm running Chimaera and I would like to update my nginx to >= 1.19.4

When running https://pkginfo.devuan.org/cgi-bin/poli … x&x=submit I get:

nginx

1.22.1-9
  http://deb.devuan.org/merged ceres/main amd64
  http://deb.devuan.org/merged daedalus/main amd64

1.18.0-6.1+deb11u3
  http://deb.devuan.org/merged chimaera/main amd64
  http://deb.devuan.org/merged chimaera/main i386

So it's seem that 1.22.1-9 is ready for the next Devuan release ( I can't wait smile )

But how can I update my Chimaera to a version above 1.19.4 ?

Thanks

#74 Re: Other Issues » [SOLVED] How to Install the latest version of Python ? » 2023-04-15 06:16:45

Thank you @rbit,

btw for future reader, after the upgraded

python -V

was still giving my previous version, but just relaunching the terminal was giving the one just installed.

Cheers.

#75 Re: Other Issues » [SOLVED] How to Install the latest version of Python ? » 2023-04-14 16:58:35

I've found this --> https://aruljohn.com/blog/install-pytho … on--source

is this ok for Devuan too ?

BTW I changed

sudo make altinstall

by

sudo make install

Board footer

Forum Software