Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| linux:start [2022/03/07 20:19] – [Useful shell] mh | linux:start [2025/12/23 10:54] (current) – [AppImages] mh | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Linux ====== | ====== Linux ====== | ||
| - | -[[linux: | + | -**[[linux: |
| - | -[[linux: | + | -**[[linux: |
| - | -[[linux: | + | -**[[linux: |
| - | -[[linux: | + | -**[[linux: |
| - | -[[linux: | + | -**[[linux: |
| ===== PATH ===== | ===== PATH ===== | ||
| Line 92: | Line 92: | ||
| Extract the content of an AppImage : | Extract the content of an AppImage : | ||
| + | <code bash> | ||
| ./ | ./ | ||
| + | #And copy to somewhere sensible | ||
| + | sudo cp squashfs-root/ | ||
| + | </ | ||
| This is useful if you want to get the Icon. | This is useful if you want to get the Icon. | ||
| [[https:// | [[https:// | ||
| + | |||
| + | To run an AppImage just make it executable : | ||
| + | |||
| + | <code bash> | ||
| + | $ chmod +x / | ||
| + | $ ./ | ||
| + | </ | ||
| + | |||
| + | Some AppImages support: | ||
| + | |||
| + | <code bash> | ||
| + | ./ | ||
| + | </ | ||
| + | |||
| + | This automatically: | ||
| + | * Creates a .desktop file | ||
| + | * Extracts the icon | ||
| + | * Registers everything correctly | ||
| + | |||
| + | If it works, this is the cleanest solution. If not, manual extraction remains the most reliable path. | ||
| + | |||
| ---- | ---- | ||
| Line 510: | Line 535: | ||
| [[https:// | [[https:// | ||
| + | ---- | ||
| + | |||
| + | === Samba === | ||
| + | |||
| + | <code bash> | ||
| + | sudo service smbd start/ | ||
| + | </ | ||
| + | |||
| ---- | ---- | ||
| Line 619: | Line 652: | ||
| *[[https:// | *[[https:// | ||
| + | |||
| *[[https:// | *[[https:// | ||
| + | |||
| + | *[[https:// | ||