wgranicki

Results 8 comments of wgranicki

> I have the same Issue and disabling "nice" doesn't help because the next the invalid command complains is "/usr/sbin/backintime". I'll resort to creating backups based on an interval. If...

My setup: - Manjaro Linux 21.3.7, kernel version 5.15.60, running on Intel i7-6820HK - BackInTime version 1.3.2 installed from official Manjaro repository Steps to reproduce: - Start BackInTime - Open...

I think the problem is here https://github.com/bit-team/backintime/blob/29e874f5080f7cf85c8297ea807cb8070a427c10/qt/serviceHelper.py#L104 If I understand it correctly, only `nice` and `/usr/bin/nice` are accepted (whitelisted) as outputs of `which`, but in my case it's `/usr/sbin/nice`

I don't think it's a Manjaro problem, because there's also `/usr/bin/nice` present. But I'm running BIT as root, because I want to backup the whole system, and not just the...

>Why does `backintime` appear in `/usr/sbin`? It definitely should not. How did you install it? It appears both in `/usr/bin` and `/usr/sbin`, because the latter is just a symlink to...

I have tested it in all three variants: as regular user, with `sudo` and as root. Every time the results are the same, and they never include the symlinked `sbin`,...

Just in case, I also tested running `Popen(['which', 'nice'], stdout = PIPE).communicate()[0].strip().decode()` in Python console (again as regular user, with `sudo` and as root) and the results are the same...

> This makes me think that it's a bad design decision by Manjaro to symlink `/usr/sbin` to `/usr/bin` I don't think that's a bad decision in itself... But combined with...