The officially official Devuan Forum!

You are not logged in.

#2 Re: Desktop and Multimedia » [SOLVED] Dual Display on Dual screen with HDMI(i915) and nvidia Card / xrandr » 2024-03-12 20:16:40

@bai4Iej2need
are you sure that you use proprietary Nvidia driver and Nouveau is blacklisted?

#3 Re: Desktop and Multimedia » [SOLVED] Stupid music player tricks » 2024-03-12 20:11:17

@rankbeginner
do you tried deadbeef player?
https://deadbeef.sourceforge.io/download.html

ps i am hear music only at lossy format. But if you tell me how, i can test lossless music with Audacious.

#4 Re: Desktop and Multimedia » [SOLVED] OpenRC warning during screen log at rebooting or turning off pc » 2024-02-10 19:08:49

@chris2be8
Thanks you for investigation MrPoirot

Something found here
etc/init.d/rc.local
restart|reload|force-reload)
        echo "Error: argument '$1' not supported" >&2
        exit 3

#! /bin/sh
### BEGIN INIT INFO
# Provides:          rc.local
# Required-Start:    $all
# Required-Stop:
# Default-Start:     2 3 4 5
# Default-Stop:
# Short-Description: Run /etc/rc.local if it exist
### END INIT INFO

PATH=/usr/sbin:/usr/bin:/sbin:/bin

. /lib/init/vars.sh
. /lib/lsb/init-functions

do_start() {
        if [ -x /etc/rc.local ]; then
                [ "$VERBOSE" != no ] && log_begin_msg "Running local boot scripts (/etc/rc.local)"
                /etc/rc.local
                ES=$?
                [ "$VERBOSE" != no ] && log_end_msg $ES
                return $ES
        fi
}

do_stop() {
        if [ -x /etc/rc.shutdown ]; then
                [ "$VERBOSE" != no ] && log_begin_msg "Running local shutdown scripts (/etc/rc.shutdown)"
                /etc/rc.shutdown
                ES=$?
                [ "$VERBOSE" != no ] && log_end_msg $ES
                return $ES
        fi
}

case "$1" in
    start)
        do_start
        ;;
    restart|reload|force-reload)
        echo "Error: argument '$1' not supported" >&2
        exit 3
        ;;
    status)
        # No-op
        exit 0
        ;;
    stop)
        do_stop
        exit 0
        ;;
    *)
        echo "Usage: $0 start|stop" >&2
        exit 3
        ;;
esac

#5 Re: Desktop and Multimedia » [SOLVED] OpenRC warning during screen log at rebooting or turning off pc » 2024-02-09 12:17:13

chris2be8 wrote:

Exactly when does that message come out? Is it when you boot the system, log on, log off or shut it down?

less /etc/init.d/kmod should tell you what kmod is (unless all the comments are missing).

Try this:

ls -l /etc/rc?.d/*kmod*
lrwxrwxrwx 1 root root 14 May  9  2018 /etc/rcS.d/S09kmod -> ../init.d/kmod

You should get only 1 line, a symlink that tells the OS to run kmod start when bringing the system up. I suspect you have a stop link somewhere (it will be probably named something like K09kmod).

For belt and braces try ls -l /etc/rc?.d/ | grep kmod which searches the destination of the symlink. If still stuck grep meaningless /etc/rc?.d/* in case there is a stray copy of kmod somewhere.

Thanks, yes source of warning is string at /etc/init.d/kmod
Action '$1' is meaningless for this init script

freeartist-devuan@home:~$ ls -l /etc/rc?.d/ | grep kmod
lrwxrwxrwx 1 root root 14 Aug 18 23:11 S09kmod -> ../init.d/kmod
freeartist-devuan@home:~$ grep meaningless /etc/rc?.d/*
/etc/rcS.d/S09kmod:  log_warning_msg "Action '$1' is meaningless for this init script"
freeartist-devuan@home:~$ 

Ok. So i must ignore it? And i see this warning only when use lightdm, using slim i do not see it.

#6 Re: Desktop and Multimedia » [SOLVED] OpenRC warning during screen log at rebooting or turning off pc » 2024-02-05 16:37:29

@chris2be8
Thanks for helpful reply! I here have same as you. And what next?

freeartist-devuan@home:/etc/init.d$ grep meaningless *
kmod:  log_warning_msg "Action '$1' is meaningless for this init script"
freeartist-devuan@home:/etc/init.d$ ./kmod
Usage: ./kmod start.

freeartist-devuan@home:/etc/init.d$ ./kmod start
Loading kernel module lp.
Loading kernel module ppdev.
Loading kernel module parport_pc.
Loading kernel module cuse.
freeartist-devuan@home:/etc/init.d$ 

What is kmod?
And why i see this warning only at lightdm but no at slim?
Action 'stop' is meaningless for this init script ... (warning)

#7 Re: Desktop and Multimedia » [SOLVED] OpenRC warning during screen log at rebooting or turning off pc » 2024-02-04 03:15:06

i have seen in .xsession-errors but not find this warning
is there command for parsing all system logs to find this warning?

#8 Re: Desktop and Multimedia » [SOLVED] OpenRC warning during screen log at rebooting or turning off pc » 2024-02-01 20:42:17

But why i cant find
Action 'stop' is meaningless for this init script ... (warning)
at any logs?
May be this message is related to lightdm? Where i can find ldm shutdown logs?
Why usung lightdm shutdown screen log looks different than slim log?

#9 Re: Desktop and Multimedia » [SOLVED] OpenRC warning during screen log at rebooting or turning off pc » 2024-02-01 20:33:23

@Andre4freedom
@GlennW
Thanks for reply)

I wouldn't worry about the message, it's not related to slim or apparmor

Revert back to slim from lightdm,
now shutdown log looks bit different than with lightdm, and no any warnings, thanks

#11 Re: Desktop and Multimedia » [SOLVED] OpenRC warning during screen log at rebooting or turning off pc » 2024-01-31 17:32:53

For the shutdown warning message, I have that one too, I just ignore it. It's not an error.

Thanks, yes, it just warning, but previously i have no this message. Curious where can be source of this warning? I cant find it at logs.

Removing apparmor can be sensible too, if you install applications foreign to the specific distribution.

So this warning can be shown after removing apparmor? How resolve this?

#12 Re: Desktop and Multimedia » [SOLVED] OpenRC warning during screen log at rebooting or turning off pc » 2024-01-31 17:27:36

I don’t know anything about OpenRC, but in my opinion there is something superfluous here
Running services

Yes, i am try several variants, disable, stop, enable, slim all the same warning.
Also i do not know why slim is enabled if i do dpkg-reconfigure and select lightdm default dm?

#13 Desktop and Multimedia » [SOLVED] OpenRC warning during screen log at rebooting or turning off pc » 2024-01-31 06:55:53

deepforest
Replies: 22

Just curious where is source of this message?
I do not find it at /var/log

Action 'stop' is meaningless for this init script ... (warning)

Previously
-i am disable and remove Apparmor
-change Slim to LightDM

root@home:/home/freeartist-devuan# rc-status --servicelist
 umountroot                                                                                                                                                                     [  started  ]
 umountfs                                                                                                                                                                       [  started  ]
 mountkernfs.sh                                                                                                                                                                 [  started  ]
 eudev                                                                                                                                                                          [  started  ]
 mountdevsubfs.sh                                                                                                                                                               [  started  ]
 bootlogd                                                                                                                                                                       [  started  ]
 hostname.sh                                                                                                                                                                    [  started  ]
 keyboard-setup.sh                                                                                                                                                              [  started  ]
 checkroot.sh                                                                                                                                                                   [  started  ]
 checkfs.sh                                                                                                                                                                     [  started  ]
 checkroot-bootclean.sh                                                                                                                                                         [  started  ]
 mountall.sh                                                                                                                                                                    [  started  ]
 mountall-bootclean.sh                                                                                                                                                          [  started  ]
 pulseaudio-enable-autospawn                                                                                                                                                    [  started  ]
 hwclock.sh                                                                                                                                                                     [  started  ]
 urandom                                                                                                                                                                        [  started  ]
 procps                                                                                                                                                                         [  started  ]
 networking                                                                                                                                                                     [  started  ]
 mountnfs.sh                                                                                                                                                                    [  started  ]
 mountnfs-bootclean.sh                                                                                                                                                          [  started  ]
 umountnfs.sh                                                                                                                                                                   [  started  ]
 rsyslog                                                                                                                                                                        [  started  ]
 gpm                                                                                                                                                                            [  started  ]
 sendsigs                                                                                                                                                                       [  stopped  ]
 acpid                                                                                                                                                                          [  started  ]
 dbus                                                                                                                                                                           [  started  ]
 avahi-daemon                                                                                                                                                                   [  started  ]
 x11-common                                                                                                                                                                     [  started  ]
 lightdm                                                                                                                                                                        [  started  ]
 anacron                                                                                                                                                                        [  started  ]
 bootlogs                                                                                                                                                                       [  started  ]
 console-setup.sh                                                                                                                                                               [  started  ]
 cron                                                                                                                                                                           [  started  ]
 cups                                                                                                                                                                           [  started  ]
 cups-browsed                                                                                                                                                                   [  started  ]
 elogind                                                                                                                                                                        [  started  ]
 network-manager                                                                                                                                                                [  started  ]
 openvpn                                                                                                                                                                        [  started  ]
 osspd                                                                                                                                                                          [  started  ]
 pcscd                                                                                                                                                                          [  started  ]
 sudo                                                                                                                                                                           [  started  ]
 rmnologin                                                                                                                                                                      [  started  ]
 saned                                                                                                                                                                          [  started  ]
 slim                                                                                                                                                                           [  started  ]
 tor                                                                                                                                                                            [  started  ]
 stop-bootlogd                                                                                                                                                                  [  started  ]
 kmod                                                                                                                                                                           [  started  ]
 savecache                                                                                                                                                                      [  stopped  ]
 bootmisc.sh                                                                                                                                                                    [  started  ]
 killprocs                                                                                                                                                                      [  stopped  ]
 speech-dispatcher                                                                                                                                                              [  stopped  ]
 alsa-utils                                                                                                                                                                     [  started  ]
 stop-bootlogd-single                                                                                                                                                           [  started  ]
 lm-sensors                                                                                                                                                                     [  started  ]
 agetty                                                                                                                                                                         [  stopped  ]
 reboot                                                                                                                                                                         [  stopped  ]
 mount-configfs                                                                                                                                                                 [  started  ]
 cgroups                                                                                                                                                                        [  started  ]
 brightness                                                                                                                                                                     [  started  ]
 single                                                                                                                                                                         [  stopped  ]
 halt                                                                                                                                                                           [  stopped  ]
 rc.local                                                                                                                                                                       [  started  ]
root@home:/home/freeartist-devuan# 
root@home:/home/freeartist-devuan# rc-update
                acpid |      default                                        
           alsa-utils |                                              sysinit
              anacron |      default                                        
         avahi-daemon |      default                                        
             bootlogd |                                              sysinit
             bootlogs |      default               recovery                 
          bootmisc.sh |                                              sysinit
           brightness |                                              sysinit
              cgroups |                                              sysinit
           checkfs.sh |                                              sysinit
 checkroot-bootclean.sh |                                              sysinit
         checkroot.sh |                                              sysinit
     console-setup.sh |      default                                        
                 cron |      default                                        
                 cups |      default                                        
         cups-browsed |      default                                        
                 dbus |      default                                        
              elogind |      default                                        
                eudev |                                              sysinit
                  gpm |      default                                        
          hostname.sh |                                              sysinit
           hwclock.sh |                                              sysinit
    keyboard-setup.sh |                                              sysinit
            killprocs |                            recovery                 
                 kmod |                                              sysinit
              lightdm |      default                                        
           lm-sensors |                                              sysinit
       mount-configfs |                                              sysinit
 mountall-bootclean.sh |                                              sysinit
          mountall.sh |                                              sysinit
     mountdevsubfs.sh |                                              sysinit
       mountkernfs.sh |                                              sysinit
 mountnfs-bootclean.sh |                                              sysinit
          mountnfs.sh |                                              sysinit
      network-manager |      default                                        
           networking |                                              sysinit
              openvpn |      default                                        
                osspd |      default                                        
                pcscd |      default                                        
               procps |                                              sysinit
 pulseaudio-enable-autospawn |      default                                        
             rc.local |      default                                        
            rmnologin |      default                                        
              rsyslog |      default                                        
                saned |      default                                        
            savecache |                        off                          
             sendsigs |                        off                          
               single |                            recovery                 
                 slim |      default                                        
        stop-bootlogd |      default                                        
 stop-bootlogd-single |                                              sysinit
                 sudo |      default                                        
                  tor |      default                                        
             umountfs |                        off                          
         umountnfs.sh |                        off                          
           umountroot |                        off                          
              urandom |                                              sysinit
           x11-common |                                              sysinit
root@home:/home/freeartist-devuan# 

#14 Re: Desktop and Multimedia » fvwm or fvwm3 what to install? » 2024-01-29 06:19:54

At least it's easier than blindly sculpting Frankenstein.

here the point, it's so exciting making something with experemets wink

#15 Re: Desktop and Multimedia » fvwm or fvwm3 what to install? » 2024-01-27 16:09:39

This is on purpose so that users of the blog don’t get bored. What else to do on long winter evenings if not sculpting Frankensteins?

Agree, its interesting but have no practical sense, at the begining feeling pleasure but after frustration

FWIW FVWM3 is supported, active, and has especially good themes.  I gave up on the earlier versions quite awhile ago.

Thanks for reply, and personaly to you for supporting my homeland Ukraine!:)

But how configure stalonetray at fvwm3 and nscde? How activate it and add volume control and keyboard layout?

#16 Re: Desktop and Multimedia » fvwm or fvwm3 what to install? » 2024-01-26 20:44:10

Now i install NsCDE. And have questions.
Why now all Qt applications at xfce have NsCDE window theme style, how change it to default?
Screenshot-2024-01-26-22-43-18.png

UPD
qt5ct is help
huh, why at linux all is "muddle"?

#17 Re: Desktop and Multimedia » fvwm or fvwm3 what to install? » 2024-01-26 20:41:12

Ok, thanks i will try, but fvwm and fvwm3 installed from devuan rpos looks equally when i load as sessions from Slim.

#18 Re: Desktop and Multimedia » fvwm or fvwm3 what to install? » 2024-01-26 14:14:03

Ok, thanks.
But i am talking about two packages avaible at devuan repos. Its bit werid that why i am ask.
https://pkginfo.devuan.org/cgi-bin/poli … m&x=submit
https://pkginfo.devuan.org/cgi-bin/poli … 3&x=submit
I am install both. But i see that fvwm and fvwm3 have same versions. And i see at slim now two sessions, fvwm and fvwm3 but it looks equally. Can you explain?

#19 Re: Desktop and Multimedia » fvwm or fvwm3 what to install? » 2024-01-25 18:56:08

what wrong here?

freeartist-devuan@home:~/Downloads/FVWM$ sudo dpkg -i nscde_2.3-3_amd64.deb 
Selecting previously unselected package nscde.
(Reading database ... 208978 files and directories currently installed.)
Preparing to unpack nscde_2.3-3_amd64.deb ...
Unpacking nscde (2.3-3) ...
dpkg: dependency problems prevent configuration of nscde:
 nscde depends on stalonetray; however:
  Package stalonetray is not installed.

dpkg: error processing package nscde (--install):
 dependency problems - leaving unconfigured
Processing triggers for gnome-menus (3.36.0-1.1) ...
Processing triggers for desktop-file-utils (0.26-1) ...
Processing triggers for mailcap (3.70+nmu1) ...
Errors were encountered while processing:
 nscde
freeartist-devuan@home:~/Downloads/FVWM$ 

stalonetray

freeartist-devuan@home:~/Downloads/FVWM/stalonetray-0.8.5$ sudo make install
Making install in src
make[1]: Entering directory '/home/freeartist-devuan/Downloads/FVWM/stalonetray-0.8.5/src'
make[2]: Entering directory '/home/freeartist-devuan/Downloads/FVWM/stalonetray-0.8.5/src'
 /bin/mkdir -p '/usr/local/bin'
  /usr/bin/install -c stalonetray '/usr/local/bin'
make[2]: Nothing to be done for 'install-data-am'.
make[2]: Leaving directory '/home/freeartist-devuan/Downloads/FVWM/stalonetray-0.8.5/src'
make[1]: Leaving directory '/home/freeartist-devuan/Downloads/FVWM/stalonetray-0.8.5/src'
make[1]: Entering directory '/home/freeartist-devuan/Downloads/FVWM/stalonetray-0.8.5'
make[2]: Entering directory '/home/freeartist-devuan/Downloads/FVWM/stalonetray-0.8.5'
make[2]: Nothing to be done for 'install-exec-am'.
 /bin/mkdir -p '/usr/local/share/man/man1'
 /usr/bin/install -c -m 644 stalonetray.1 '/usr/local/share/man/man1'
make[2]: Leaving directory '/home/freeartist-devuan/Downloads/FVWM/stalonetray-0.8.5'
make[1]: Leaving directory '/home/freeartist-devuan/Downloads/FVWM/stalonetray-0.8.5'
freeartist-devuan@home:~/Downloads/FVWM/stalonetray-0.8.5$ 

#21 Re: Desktop and Multimedia » [SOLVED] Cloudflare WARP, how to install? » 2024-01-25 17:33:45

After installation
Found here

root@home:/bin# ls warp*
warp-cli  warp-dex  warp-diag  warp-svc  warp-taskbar
root@home:/bin# 

All working good despite install warnings

root@home:/bin# /bin/warp-svc                                                                                                                                                             [^]

freeartist-devuan@home:/bin$ warp-cli register
NOTICE:

Cloudflare only collects limited DNS query and traffic data (excluding payload)
that is sent to our network when you have the app enabled on your device. We
will not sell, rent, share, or otherwise disclose your personal information to
anyone, except as otherwise described in this Policy, without first providing
you with notice and the opportunity to consent. All information is handled in
accordance with our Privacy Policy.

More information is available at:
- https://www.cloudflare.com/application/terms/
- https://www.cloudflare.com/application/privacypolicy/

Accept Terms of Service and Privacy Policy? [y/N] y

Success
freeartist-devuan@home:/bin$ warp-cli connect
Success
freeartist-devuan@home:/bin$ curl https://www.cloudflare.com/cdn-cgi/trace/
fl=636f69
h=www.cloudflare.com
ip=2a09:bac5:5981:18f0::27c:45
ts=1705776501.577
visit_scheme=https
uag=curl/7.88.1
colo=FRA
sliver=none
http=http/2
loc=UA
tls=TLSv1.3
sni=plaintext
warp=on
gateway=off
rbi=off
kex=X25519
freeartist-devuan@home:/bin$ warp=on
freeartist-devuan@home:/bin$ 

#22 Re: Desktop and Multimedia » [SOLVED] Cloudflare WARP, how to install? » 2024-01-25 17:30:36

I also use openrc.
It works, try it.

Thanks and how it works your script trick?

#23 Desktop and Multimedia » fvwm or fvwm3 what to install? » 2024-01-25 17:27:09

deepforest
Replies: 16

Hi)
I want try FVWM new version that still development, what i need to install fvwm or fvwm3?

root@home:/home/freeartist-devuan# apt install fvwm3
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following additional packages will be installed:
  libperl4-corelibs-perl
Suggested packages:
  stalonetray
The following NEW packages will be installed:
  fvwm3 libperl4-corelibs-perl
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 2,564 kB of archives.
After this operation, 6,299 kB of additional disk space will be used.
Do you want to continue? [Y/n] n
Abort.
root@home:/home/freeartist-devuan# apt install fvwm
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following additional packages will be installed:
  libperl4-corelibs-perl librplay3 libstroke0
Suggested packages:
  stalonetray
The following NEW packages will be installed:
  fvwm libperl4-corelibs-perl librplay3 libstroke0
0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded.
Need to get 2,605 kB of archives.
After this operation, 7,050 kB of additional disk space will be used.
Do you want to continue? [Y/n] n
Abort.
root@home:/home/freeartist-devuan# 

#25 Re: Desktop and Multimedia » [SOLVED] Cloudflare WARP, how to install? » 2024-01-19 19:04:38

root@home:/home/freeartist-devuan# rc-service warp-svc.sevice start
 * rc-service: service `warp-svc.sevice' does not exist
root@home:/home/freeartist-devuan# 

systemd is needed?

Board footer

Forum Software