openQA
min-sized-rust
openQA | min-sized-rust | |
---|---|---|
52 | 101 | |
340 | 8,865 | |
-1.2% | 1.9% | |
9.9 | 6.2 | |
4 days ago | 4 months ago | |
Perl | Rust | |
GNU General Public License v3.0 only | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
openQA
-
How to view which packages will be in the next snapshot on tumbleweed?
I sometimes look at https://openqa.opensuse.org/ when I'm excited for a new package release (example, kernel 6.5) just to see how far along the next snapshot is. While this is interesting, I can't seem to figure out which packages will be in the snapshot when I do this.
-
What distro do you use and recommend?
anyway, one great thing about SUSE is openqa.opensuse.org/ which does automatic testing that updates work before releasing....and every pkgs is build using Open Build Service (OBS) which is great as that makes sure Distro has more consistent/automatic binary built
-
make me one of yours
I use Tumbleweed since years and although rolling, its more stable than Pop ever was for me. Stable in the sense of daily use and upgrading in particular. Every update you get on OpenSuse is, as a TLDR version of an explanation, run through an automated AI process that checks if everything works, only then the update is pushed out. The AI analyzes pictures of the OS to check. For example, it goes through the boot process and sees if it works, then clicks on certain apps like yast and see if they open, comparing whats shown on screen with a reference picture. You can see whats currently going on in terms of testing here.
- PSA: Flatpaks are currently broken on Fedora. Here's a temporary solution.
- Segmentation fault when starting Nautilus on snapshot 20230616
-
Is anyone else concerned about the future of OpenSUSE Leap/ALP?
I value Greg KH's Tumbleweed. It does everything I want. Thanks to build.opensuse.org and openqa.opensuse.org . If I had to start from scratch, MicroOs, I would learn along the way.
-
Looking for a distro to teach Linux to teenagers
Rolling release players? openSUSE Tumbleweed (backed/tested by OpenQA before released), EndeavourOS (Arch with an installer; however, this could be too advanced when it breaks)
-
Advice on Distro / DE
I would recommend openSUSE (KDE) tumbleweed you get the newest pkgs and they are well tested and they have great tools like openQA, obs, YaST etc. and if you have issue with any updates you can easily just rollback to latest working snapshot
-
OpenSUSE vs Arch for gaming?
And even though Arch stability heavily depends on the user and package maintainers doing everything right (I'm looking at you TimeShift), openSUSE, being backed by a company, have way more resources and robust infrastructure for ensuring their system is stable than Arch does (I have said this a couple of times, SUSE's openQA is incredible).
-
Reliable distro for work with new KDE
Tumbleweed is very current - well, as current as your last update.g/ This means that it's very rare that something is rolled out to the community that hasn't been tested as working.
min-sized-rust
-
The Linux Kernel Prepares for Rust 1.77 Upgrade
This is a good guide on building small Rust binaries: https://github.com/johnthagen/min-sized-rust
This talks about going to extreme lengths on making the smallest Rust binary possible, 400 bytes when it was written, https://darkcoding.net/software/a-very-small-rust-binary-ind...
The thing is, you lose a lot of nice features when you do this, like panic unwinding, debug symbols, stdlib… for kernel and some embedded development it’s definitely important, but for most use cases, does it matter?
-
Rust wont save us, but its ideas will
Oh it was 137, haha. I will link you to this older comment of mine: https://news.ycombinator.com/item?id=29408906
See also https://github.com/johnthagen/min-sized-rust
-
Making Rust binaries smaller by default
Are you sure? If so then this is awesome news, but I'm a bit confused; the commit in that min-sized-rust repo adding `build-std` to the README was merged in August 2021: https://github.com/johnthagen/min-sized-rust/pull/30
Are you saying that at that point the feature still hadn't "landed in Rust nightly" until recently? If so then what's the difference between a feature just being available in Rust nightly, vs having "landed"?
-
Was Rust Worth It?
Rust binaries are by default nowhere close to 500MB. If they are not small enough for you, you can try https://github.com/johnthagen/min-sized-rust. By avoiding the formatting machinery and using `panic_immediate_abort` you can get about the size of C binaries.
-
Compiling Rust binaries for Windows 98 SE and more: a journey
A useful reference: https://github.com/johnthagen/min-sized-rust
- How to minimize Rust binary size
- Error on flashing embedded code to stm32f103
-
Tiny Binaries (2021)
That must be without stripping. Also there are ways to reduce binary size. See e.g. [min-sized-rust](https://github.com/johnthagen/min-sized-rust). I've gotten stripped binaries of small cli utils less than 400KiB without doing anything special, less than 150 KiB by customizing profile settings and compressing with upx, and less than 30 KiB by replacing the std with the libc as the link shows. Haven't tried with fltk though...
-
Shared libraries
This is not quite what you're asking, but it does also address the underlying concern: https://github.com/johnthagen/min-sized-rust
What are some alternatives?
tumbleweed-cli - Command line interface for interacting with Tumbleweed snapshots.
rustc_codegen_gcc - libgccjit AOT codegen for rustc
open-build-service - Build and distribute Linux packages from sources in an automatic, consistent and reproducible way #obs
embedded-graphics - A no_std graphics library for embedded applications
apulse - PulseAudio emulation for ALSA
tiny-rust-executable - Using Rust to make a 137-byte static AMD64 Linux executable