Gists
-
mountStoragebox.md
View Gist
Error message when running mount
mount error(79): Can not access a needed shared library
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) and kernel log messages (dmesg)
mount error(79): Can not access a needed shared library
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) and kernel log messages (dmesg)Install missing kernel modul
sudo mount -a sudo apt install linux-modules-extra-$(uname -r) sudo mount -a
Auto install missing kernel modul
sudo vim /etc/kernel/postinst.d/install-modules-extra
Add following lines
#!/bin/bash apt install -y linux-modules-extra-$(uname -r)
Add execute permissions
sudo chmod +x /etc/kernel/postinst.d/install-modules-extra
-
performance.cmd
View Gist
# Get read performance winsat disk -seq -read -drive <DRIVE> # Get write performance winsat disk -seq -write -drive <DRIVE> # Example winsat disk -seq -read -drive C: winsat disk -seq -write -drive C: