๐Ÿ“ฆ qarmin / Rusty-Linux

Simple script to install most basic Rust apps as alternative to default one

โ˜… 57 stars โ‘‚ 3 forks ๐Ÿ‘ 57 watching
๐Ÿ“ฅ Clone https://github.com/qarmin/Rusty-Linux.git
HTTPS git clone https://github.com/qarmin/Rusty-Linux.git
SSH git clone git@github.com:qarmin/Rusty-Linux.git
CLI gh repo clone qarmin/Rusty-Linux
0xflotus 0xflotus feat: add `dysk` to list (#21) 1afb941 7 months ago ๐Ÿ“ History
๐Ÿ“‚ main View all commits โ†’
๐Ÿ“ .github
๐Ÿ“„ README.md
๐Ÿ“„ RustyLinux.sh
๐Ÿ“„ README.md

Rusty Linux

Simple script to install basic Rust apps as alternative to default one

Why?

Most linux tools are written in C(and C++) for performance and history reasons.

This language is still very popular, but I know from experience that it is very easy to make a mistake in it, which results in memory integrity violation, often resulting in program shutdown, or even worse, in data corruption or leaks.

One of the potential solutions to these problems is to use Rust language providing comparable performance, offering elimination of many types of typical bugs already at the compilation stage.

Although rewriting software from C(or similar) may initially require a lot of work, when adding new features, the programmer will be able to save time on detecting memory corruption (address sanitizer, valgrind) or memory leaks (leak sanitizer, valgrind).

Creating memory safe and big application(>100K code) in C language is almost impossible because every bigger change brings a huge amount of bugs (Rust from all of them will of course magically not protect).

Of course, Rust is not a silver bullet, so it is also worth considering popular and mature apps in another languages.

Install apps

To install apps you need just download this script, remove unwanted apps and run it

wget https://raw.githubusercontent.com/qarmin/Rusty-Linux/main/RustyLinux.sh
xdg-open RustyLinux.sh
chmod +x RustyLinux.sh
./RustyLinux.sh

Upgrade

To upgrade apps, just run again script. This will install only newer version of packages.

List of apps with replacements

Cli appRust appDescription
lsezaList content(files/dirs) in dir
cdzoxideChanges the current directory.
sedsdText stream editor.
vimampText editor.
coreutilscoreutils uutilsBasic Unix utilities.
catbatConcatenates and displays file content.
grepripgrepSearches text using patterns.
dudustEstimates disk usage.
dfdyskGet information on filesystems.
digdogDNS query tool.
findfdSearches for files and directories.
rmripRemoves files or directories.
locatelolcateQuickly finds files.
curlwebsocatData transfer tool.
hexdumphxDisplays files in hexadecimal format
psprocsLists process information.
topbottomDisplays system processes and resources.
cut/awkchooseText processing tools
sort/uniq -cuniqtooSorts and counts lines.
makejustBuild automation tool.
htopzenithInteractive system monitor.
jqjqlCommand-line JSON processor.
gnome-terminalalacrittyText-based system interface.
cloctokeiCounts lines of code
bcevaCommand-line calculator.
treebrootDisplays directory structure.
GomutermamusicMusic player
?hyperfinebenchmark tool
Gui appRust appDescription
Eye of gnomeemulsionImage Viewer
gnome-system-monitorprocess viewerProvides system performance info
gnome-text-editorgxiText editor
| Etcher/Rufus/Ventoy | popsicle | Creates bootable USB drives | | FSlint | czkawka, fclones-gui | Removes unnecessary files/duplicates. | | Bulky, Nautilus Renamer | szyszka | Bulk File/Folder renamer | | Strawberry | amberol | Music player | | Godot | Fyrox | Game engine | | Gnome, KDE Plasma | Cosmic DE | Desktop environment | | VLC, mpv | ? | Video player | | Gimp/inkscape | ? | Graphic editor | | Cheese | ? | Camera | | Qbittorrent/Transmission | ? | Torrent downloader |

Contribute

If you know about some good Rust application for Linux, which is alternative to existing one, please create pull-request or new issue about it.

This applications should be active and newest commit should be younger than 1 year.