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
Search found 134 matches
- Sun Apr 19, 2026 6:43 pm
- Forum: Linux
- Topic: 'unknown': I need something more specific.
- Replies: 0
- Views: 4
- Wed Apr 15, 2026 7:02 pm
- Forum: General
- Topic: Opera password
- Replies: 1
- Views: 782
Re: Opera password
You can turn it off in
opera://password-manager/settings
opera://password-manager/settings
- Tue Oct 14, 2025 7:21 pm
- Forum: Linux
- Topic: system crashes at boot
- Replies: 1
- Views: 95920
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 ...
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 ...
- Mon Sep 29, 2025 1:15 pm
- Forum: Linux
- Topic: SOLVED: test disk speed
- Replies: 2
- Views: 74768
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 ...
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 ...
- Wed Sep 10, 2025 7:01 pm
- Forum: Linux
- Topic: swap partition not present
- Replies: 1
- Views: 67973
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 ...
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 ...
- Thu Aug 01, 2024 9:04 pm
- Forum: General
- Topic: openvpn Authenticate/Decrypt packet error: packet HMAC authentication failed
- Replies: 1
- Views: 616183
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
or
Make sure the are the same.
Check
Code: Select all
tls-auth /etc/openvpn/easy-rsa/pki/ta.key 0Code: Select all
<tls-crypt>- Sun May 19, 2024 12:14 pm
- Forum: Linux
- Topic: ping scan LAN network
- Replies: 1
- Views: 602617
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 ...
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 ...
- Sat May 06, 2023 5:58 pm
- Forum: Linux
- Topic: openvpn Authenticate/Decrypt packet error: packet HMAC authentication failed
- Replies: 2
- Views: 344568
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.
If you can post part of your server/client config
we can verify a little more.
- Thu Apr 27, 2023 6:41 pm
- Forum: General
- Topic: Remove write protection on a usb drive
- Replies: 2
- Views: 353142
Re: Remove write protection on a usb drive
You can check with hdparm :
sudo hdparm /dev/sdc
/dev/sdc:
multcount = 0 (off)
readonly = 1 (on)
readahead = 256 (on)
geometry = 15904/64/32, sectors = 32571392, start = 0
Change it with:
sudo hdparm -r0 /dev/sdc1
If it doesn't work, it might be a problem with the USB drive.
sudo hdparm /dev/sdc
/dev/sdc:
multcount = 0 (off)
readonly = 1 (on)
readahead = 256 (on)
geometry = 15904/64/32, sectors = 32571392, start = 0
Change it with:
sudo hdparm -r0 /dev/sdc1
If it doesn't work, it might be a problem with the USB drive.
- Thu Apr 27, 2023 11:09 am
- Forum: General
- Topic: Remove write protection on a usb drive
- Replies: 2
- Views: 353142
Re: Remove write protection on a usb drive
Best is to erase the partitions with fdisk or gparted
and create new ones.
and create new ones.