Skip to main content
Recent Posts
42
Off-Topic / Re: Neww Hardware Shopping
Last post by Shoun2137 -
Such systems are not intended for ordinary mouse pushers.

Once set up and properly maintained, such systems run for decades without any problems, so the ‘outdated, overpriced CPU’ is a bargain.
This is where the real advantage of opensource comes to the fore.
True. I don't know that the intended usecase, but I still believe this as 4 core CPU for this kind of price and as I said, considering intel drama with all of those faulty cpus doesn't make this any more trustworthy...
do you think it could handly the compiling needed  for artix builds?
Any particular reason you need a thin embedded client of this class? As for the question, if you need to compile anything on such a weak CPU (Multicore wise), then I'd look for something with more juice...
43
Installation / Migration / Configuration / Re: Plank error. wnck_set_client_type: changing the client type is not supported.
Last post by tom-a -
Code: [Select]
XDG_SESSION_TYPE=x11 plank &
If you don't background plank exec startlxqt does not get executed (at least until plank exits).
Disclaimer: I have no idea what plank is.

Thank you very much, your recommendation worked! Now when I exit the session and re-enter the plank on the spot. I was recommended to use crystal-dock, it is written in C++   https://github.com/dangvd/crystal-dock (GPL-3.0 license), it was great if it was included in the repository. I'll try to install and use it.
45
Applications & Software / Wazuh Agent -- OpenRC Script
Last post by TopHatProductions115 -
In late 2023, I started work on an OpenRC script for the Wazuh agent. As of Wazuh 4.9.X and 4.11.X, it appears to still work. I've decided to share it here, in case anyone else can benefit from it:

https://github.com/wazuh/wazuh/discussions/19790

Code: [Select]
#!/sbin/openrc-run

# OpenRC script for Wazuh XDR agent
# Minimal draft written by TopHatProductions115
# TopHatProductions115@mail.txp-network.ml
# Ping-able 0900 to 1145 EST on business days

# Some references taken from
# https://github.com/wazuh/wazuh/blob/master/src/init/templates/ossec-hids-gentoo.init


# BEGIN CONFIGURATION SECTION
# Required parameters for service
name="wazuh-controld"
description="Wazuh Agent control and init for Artix OpenRC"
# This parameter should not be used or called anywhere else in this script
BASE_PATH="/var/ossec"
configfile="$BASE_PATH/etc/ossec.conf"
command="$BASE_PATH/bin/wazuh-control"

# Assuming that wazuh-controld is a well-behaved service that backgrounds itself
# command_background="yes"
# Assuming that wazuh-controld manages its own PID file
# pidfile=$PID_PATH/wazuh-controld.pid
# END CONFIGURATION SECTION


# Service Dependencies
depend() {
need net network-online syslog-ng
use logger syslog-ng
provide wazuh-controld
}

# Non-standard functions that aren't included in OpenRC by default
extra_commands="info"
extra_started_commands="reload"

# Configuration file check - stub?
checkconfig() {
ebegin "Checking Wazuh Configuration File..."
if [ ! -r "${configfile}" ]; then
eerror "Unable to read configuration file: ${configfile}"
return 1
fi
# Maybe something to check the contents of the config file?
return $ret
eend $?
}


# Many sources state not to define start and stop (and sometimes even restart) functions...

# After discussing with some people online, I've learned a few details.
# By using the start-stop-daemon, I'd be committing at least two bad practices:
# Using a startup script to (attempt to) control another script
# Spawning a daemon, to (attempt to) control another daemon
# Wazuh control appears to have its own daemon, which can fork and control its own processes.
# Therefore, I won't use the start-stop-daemon here.


start() {
checkconfig || return 1
ebegin "Attempting to initialise $name ..."
${command} start
eend $?
}

stop() {
checkconfig || return 1
ebegin "Attempting to terminate $name ..."
${command} stop
eend $?
}


# Stop the service, check the config file, restart the service
# Restart tends to be defined as stop() + start()
restart() {
# Insert OpenRC service status check here
# Which parameter should I use in place of SERVICE_NAME ?
# if ! service_started "${SERVICE_NAME}" ; then
# eerror "ERR :: $name is not running. Please start the service first before attempting a restart or reload..."
# else
checkconfig || return 1
ebegin "Attempting to restart $name ..."
${command} restart
eend $?
# fi
}

# Reload the config file without restarting the entire service
# Can only be attempted when the service is running
# Not a standard OpenRC command - extra_started
reload() {
checkconfig || return 1
ebegin "Attempting to reload $name ..."
${command} reload
eend $?
}

# Get general service information
# Also not a standard OpenRC command - extra
info() {
ebegin "Retrieving all $name service info..."
${command} info
eend $?
}

# Get service status
status() {
checkconfig || return 1
# ebegin "Retrieving status of $name ..."
${command} status
# eend $?
}


I'm not a package maintainer, so I can't easily post this to AUR (or another repo) at the moment.

If someone wants to make this into a package, go for it :)
46
News about Artix / Re: Artix descussion in NY
Last post by HighBridge -
Dang it! I'm not too far away but the time and day won't work for me.
If you ever decide to do this again, please let us know!
I'm always up for meeting people of like mind!
Enjoy your night out good Sir!  
47
Forum / Re: OpenRC or dinit?
Last post by Penaz -
I've been using OpenRC for years (since my "Gentoo days"): it is stable and works a treat.

I've been using dinit as a supervisor for my "user services" and it's simple enough for that task, never had any stability issues at all.

I'd say your choice should depend on your personal preference and experience with non-systemd distros, since you mentioned you have experience only with SystemD, I'd suggest OpenRC since it's very well documented and supported.
48
Installation / Migration / Configuration / Re: Plank error. wnck_set_client_type: changing the client type is not supported.
Last post by tom-a -
I've tried making these entries in.xinitrc

Code: [Select]
 $ nano .xinitrc 

XDG_SESSION_TYPE=x11
 exec startlxqt
plank can start but every time the plank reboots it disappears, how do I make it so that plank is always there when I start startx?
 I tried this option
Code: [Select]
XDG_SESSION_TYPE=x11 plank 
exec startlxqt
But after rebooting, I only see plank and black screen. As I understand it, there is a conflict between Wayland and X11 or something like that.
49
Installation / Migration / Configuration / Plank error. wnck_set_client_type: changing the client type is not supported.
Last post by tom-a -
 Hello everyone. Please tell me why I am getting this error?

Code: [Select]
[CRITICAL 20:16:47.173510] [AbstractMain:255] Only X11 environments are supported.

Code: [Select]
$ XDG_SESSION_TYPE=x11 plank

[CRITICAL 21:27:23.122921] [Wnck] wnck_set_client_type: changing the client type is not supported.
[WARN 21:27:23.213743] [Preferences:192] '/usr/share/plank/themes/Default/dock.theme' is read-only!

Forgot to tell you that I'm using
Code: [Select]
Lxqt + Kwin + Plank


Code: [Select]
$ echo $XDG_SESSION_TYPE
tty

$ env | grep "XDG_SESSION"
XDG_SESSION_CLASS=user
XDG_SESSION_ID=1
XDG_SESSION_TYPE=tty


Artix forum uses a single cookie to remember youOK