Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| linux:linux-tutorials:quickfixes [2024/04/03 15:49] – removed - external edit (Unknown date) 127.0.0.1 | linux:linux-tutorials:quickfixes [2025/01/02 06:25] (current) – [Relaunch KDE Plasma after freeze] Zyzonix | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ===== Quickfixes ===== | ||
| + | |||
| + | ==== Relaunch KDE Plasma after freeze ==== | ||
| + | Sometimes after some weeks of uptime when I entered my office in the morning, I discovered a freezed Plasma. | ||
| + | To fix this, enter the system via SSH and then execute this command: | ||
| + | <code bash> | ||
| + | |||
| + | And without re-login: | ||
| + | <code bash> | ||
| + | kquitapp5 plasmashell && kstart5 plasmashell | ||
| + | </ | ||
| + | |||
| + | ----- | ||
| + | |||
| + | ==== Fix NTFS file system ==== | ||
| + | |||
| + | If a NTFS volume cannot be mounted due to a corrupted filesystem, it might be repairable by using '' | ||
| + | |||
| + | <code bash> | ||
| + | Example: '' | ||
| + | |||
| + | After running this command the filesystem might be able to mounted again. | ||
| + | |||
| + | ----- | ||
| + | |||
| + | |||
| + | |||
| + | ==== Setlocale failed Debian/ | ||
| + | If you got any error of the following when running '' | ||
| + | |||
| + | '' | ||
| + | |||
| + | '' | ||
| + | |||
| + | '' | ||
| + | |||
| + | Just run the following command and select the correct locale: | ||
| + | <code bash> | ||
| + | |||
| + | Or use: | ||
| + | <code bash> | ||
| + | |||
| + | ----- | ||
| + | |||
| + | ==== Allow users to write to specific directory ==== | ||
| + | |||
| + | To allow any user to read/write a directory adjust permissions with: | ||
| + | |||
| + | <code bash> | ||
| + | |||
| + | '' | ||
| + | |||
| + | //Sourced from [[https:// | ||