Search found 136 matches

by Chris
Tue Apr 28, 2026 4:44 pm
Forum: Linux
Topic: SOLVED: 'unknown': I need something more specific.
Replies: 2
Views: 1171

Re: 'unknown': I need something more specific.

After a lot of searching a found the problem.

the command less is used in my script.
Under normal use, under my login in bash it is
/usr/bin/less but is the same in /bin/less, /sbin/less and /usr/sbin/less -> vesion: less 692 (PCRE2 regular expressions)
Works perfect without problem.

But not when ...
by Chris
Wed Apr 22, 2026 6:57 pm
Forum: Linux
Topic: SOLVED: 'unknown': I need something more specific.
Replies: 2
Views: 1171

Re: 'unknown': I need something more specific.

I found a work around,
put all the output of the script to /dev/null in cron,
so it doesn't send mails.

Code: Select all

test.sh > /dev/null 2>&1
But this is not exactly what I want.
I want to know the rootcause.
by Chris
Sun Apr 19, 2026 6:43 pm
Forum: Linux
Topic: SOLVED: 'unknown': I need something more specific.
Replies: 2
Views: 1171

SOLVED: 'unknown': I need something more specific.

I get the following errors when cron executes scripts

'unknown': I need something more specific.

It is new, since the last update of cronie.
It happens on several script. (But not all)
The version is : cronie (OpenRC) 0.63
by Chris
Wed Apr 15, 2026 7:02 pm
Forum: General
Topic: Opera password
Replies: 1
Views: 2987

Re: Opera password

You can turn it off in
opera://password-manager/settings
by Chris
Tue Oct 14, 2025 7:21 pm
Forum: Linux
Topic: system crashes at boot
Replies: 1
Views: 96988

Re: system crashes at boot

Sure it is crashing because of disk ?

You can disable mounting the disk in /etc/fstab
Just comment it out with #
or you can add noauto , so it doesn't mount at boot.
like for a cd-rom
# Device Mountpoint FStype Options Dump Pass#
/dev/cd0 /cdrom cd9660 ro,noauto 0 0

Or you can add nofail, so ...
by Chris
Mon Sep 29, 2025 1:15 pm
Forum: Linux
Topic: SOLVED: test disk speed
Replies: 2
Views: 75851

Re: test disk speed

You can use:
sudo hdparm -Tt /dev/sda

You should see something like this:
/dev/sda:
Timing cached reads: 15132 MB in 1.99 seconds = 7586.99 MB/sec
Timing buffered disk reads: 330 MB in 3.00 seconds = 109.86 MB/sec

or for M2 SSD:
/dev/nvme0n1p2:
Timing cached reads: 17356 MB in 2.00 seconds ...
by Chris
Wed Sep 10, 2025 7:01 pm
Forum: Linux
Topic: swap partition not present
Replies: 1
Views: 68896

Re: swap partition not present

You can choose to add a swap-file.
Similar to what windows does.

you create a swap-file, usually in root. But do it on the partition with the most space.
sudo fallocate -l 2G /swapfile

Usually you take 2 times the available ram, 1G ram x 2 = 2G swapfile.

Assign it read/write permissions for ...
by Chris
Thu Aug 01, 2024 9:04 pm
Forum: General
Topic: openvpn Authenticate/Decrypt packet error: packet HMAC authentication failed
Replies: 1
Views: 617386

Re: openvpn Authenticate/Decrypt packet error: packet HMAC authentication failed

This usually means you have the wrong ta.key installed on Server or client.

Check

Code: Select all

tls-auth /etc/openvpn/easy-rsa/pki/ta.key 0
or

Code: Select all

<tls-crypt>
Make sure the are the same.
by Chris
Sun May 19, 2024 12:14 pm
Forum: Linux
Topic: ping scan LAN network
Replies: 1
Views: 603596

Re: ping scan LAN network

Excellent tools are nmap and fping
nmap -sP 192.168.1.1/24

fping -a -r 0 -g 192.168.1.1/24

But if you don't want to install a new tools,
you can try with the default ping.

for i in {1..254}; do (ping -vc 1 -t 4 192.168.1.$i); done

Or, if you want a clearer output, add grep:
for i in {1 ...
by Chris
Sat May 06, 2023 5:58 pm
Forum: Linux
Topic: openvpn Authenticate/Decrypt packet error: packet HMAC authentication failed
Replies: 2
Views: 345704

Re: openvpn Authenticate/Decrypt packet error: packet HMAC authentication failed

It looks like there is problem with the key.

If you can post part of your server/client config
we can verify a little more.