Skip to content

Commit

Permalink
appimage
Browse files Browse the repository at this point in the history
  • Loading branch information
amiyatulu committed Dec 31, 2023
1 parent a8ad7ce commit fb7476b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@
# Linux

- [Offline Centric Apps](./linux/Offline_centric_apps.md)
- [Firejail](./linux/firejail.md)
- [Firejail](./linux/firejail.md)
- [AppImage](./linux/appimage.md)

12 changes: 11 additions & 1 deletion src/linux/Offline_centric_apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,14 @@ Conclusion:

A privacy-centric approach to app development, emphasizing offline functionality and transparent communication, not only enhances security but also empowers users to have greater control over their data. By implementing features such as permission-based connections, user traceability, and file ignore options, we can strike a balance between functionality and safeguarding user privacy.

A similar experiment to design crypto wallet using intents here: [One Wallet App](../rust/one_wallet_app.md)
A similar experiment to design crypto wallet using intents here: [One Wallet App](../rust/one_wallet_app.md)

## Security enhancement of an operating system (e.g. Linux OS)

With technology like [AppImage](./appimage.md), there is no need to change the operating system. This further increases the security of the OS. One can also check if something has changed or tampered in the system files crucial for security by obtaining the hash of the OS folder, as it will have the same hash at all times. In the case of an OS update, the changed hash can be publicly declared.

If you just want to check if something in the folder changed:

```bash
ls -alR --full-time /folder/of/stuff | sha1sum
```
5 changes: 5 additions & 0 deletions src/linux/appimage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# AppImage

<https://appimage.org/>

Download an application, make it executable, and run! No need to install. No system libraries or system preferences are altered. Can also run in a sandbox like [Firejail](./firejail.md)

0 comments on commit fb7476b

Please sign in to comment.