Differences
This shows you the differences between two versions of the page.
| linux:start [2021/08/19 14:55] – [Wired network doesn't work after suspend (does not work)] mh | linux:start [2025/06/02 21:23] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Linux ====== | ====== Linux ====== | ||
| - | -[[linux: | + | -**[[linux: |
| - | -[[linux: | + | -**[[linux: |
| - | -[[linux: | + | -**[[linux: |
| - | -[[linux: | + | -**[[linux: |
| - | -[[linux: | + | -**[[linux: |
| ===== PATH ===== | ===== PATH ===== | ||
| Line 97: | Line 97: | ||
| [[https:// | [[https:// | ||
| + | |||
| + | To run an AppImage just make it executable : | ||
| + | |||
| + | <code bash> | ||
| + | $ chmod +x / | ||
| + | $ ./ | ||
| + | </ | ||
| + | |||
| ---- | ---- | ||
| Line 502: | Line 510: | ||
| <code bash> | <code bash> | ||
| - | #All the following commands are verbose (-v) | + | #All the following commands are verbose (-v) and target a file archive (-f) |
| - | $ tar -xvf file.tar #Unpack tar | + | $ tar -xvf file.tar #Unpack tar (-x : extract) |
| - | $ tar -xvzf file.tar.gz #Unpack compressed (gzip) tar | + | $ tar -xvzf file.tar.gz #Unpack compressed (gzip) tar (-z : filter through gzip) |
| - | $ tar -cvf file.tar / | + | $ tar -cvf file.tar / |
| - | $ tar -cvzf file.tar / | + | $ tar -cvzf file.tar / |
| </ | </ | ||
| Line 512: | Line 520: | ||
| ---- | ---- | ||
| + | === Samba === | ||
| + | |||
| + | <code bash> | ||
| + | sudo service smbd start/ | ||
| + | </ | ||
| + | |||
| + | ---- | ||
| + | |||
| + | ===== apt and dpkg ===== | ||
| + | |||
| + | ==== Fixing apt dependency problems ==== | ||
| + | |||
| + | This can fix some states in which apt is broken and refuses to update because some libraries fail : | ||
| + | |||
| + | <code bash> | ||
| + | $ dpkg --configure -a | ||
| + | $ apt --fix-broken install | ||
| + | </ | ||
| Line 609: | Line 635: | ||
| *[[https:// | *[[https:// | ||
| + | |||
| *[[https:// | *[[https:// | ||
| + | |||
| + | *[[https:// | ||