mgutt

Results 30 issues of mgutt

I know it's on the to do list, but now you have an official user request, too ;) I'm using autopoweroff for energy saving. I start a VM every hour...

enhancement
help wanted

I mounted an external SMB share as a local path and synced this path through rsync with verbose and stats flags as follows: ``` rsync -av --stats "${source_path}" "${backup_path}" ```...

I made several tests with rsync and had over the time different errors as follows: Provided the wrong source path (= "huge error"): ``` rsync: link_stat "/mnt/disks/DESKTOP-I0HHMD9_*" failed: No such...

The [SC2012](https://github.com/koalaman/shellcheck/wiki/SC2012) is perfectly fine if a filename could contain a control character, but in the following example this isn't possible as it allows only alphanumeric characters: ``` most_recent_syslog=$(ls -t...

This works to preload head and tail of one file, but it is not persistent: ``` head -c 60000000 "$file" > /dev/null tail -c 1000000 "$file" > /dev/null ``` Now...

Sadly I'm not able to find a tgz package and I don't know how to build one.

The following command does not make sense, as the first execution leaves vmtouch open: ``` vmtouch -l /file1 vmtouch -l /file2 vmtouch -l /file3 ``` So instead I need to...

I like to use `vmtouch` similar to `tail`. At the moment I need to check the size of the file before being able to read the last bytes of the...

``` vmtouch "/mnt/disk1/Movie/OP" Files: 213 Directories: 137 Resident Pages: 386/850054462 1M/3242G 4.54e-05% Elapsed: 12.575 seconds ``` Result is: 4.54e-05% Should be: 0.00% or 0.01% if you prefer rounding up.

In Unraid its important of being able to set UID and GID to 99:100. I tried it through the following docker flag: ``` --user=99:100 ``` But the NPM docker container...

enhancement