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/12/25 14:04] – [Create .img on Linux CLI] Zyzonix | linux:linux-tutorials:quickfixes [2025/01/02 06:25] (current) – [Relaunch KDE Plasma after freeze] Zyzonix | ||
---|---|---|---|
Line 5: | Line 5: | ||
Sometimes after some weeks of uptime when I entered my office in the morning, I discovered a freezed Plasma. | 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: | To fix this, enter the system via SSH and then execute this command: | ||
- | <code bash> | + | <code bash> |
And without re-login: | And without re-login: | ||
Line 14: | Line 14: | ||
----- | ----- | ||
- | ==== Show WiFi password via CLI ==== | + | ==== Fix NTFS file system |
- | Thereby that a system is required | + | |
- | By running the following command, the SSID, password and a QR-code of the current connected WiFi will be displayed in your CLI: | + | If a NTFS volume cannot be mounted due to a corrupted filesystem, it might be repairable by using '' |
- | <code bash>nmcli device wifi show-password</ | + | |
+ | <code bash>sudo ntfsfix | ||
+ | Example: '' | ||
+ | |||
+ | After running this command the filesystem might be able to mounted again. | ||
----- | ----- | ||
+ | |||
+ | |||
==== Setlocale failed Debian/ | ==== Setlocale failed Debian/ | ||
Line 35: | Line 41: | ||
Or use: | Or use: | ||
<code bash> | <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:// |