301
submitted 2 years ago by cyclohexane@lemmy.ml to c/linux@lemmy.ml

I thought I'll make this thread for all of you out there who have questions but are afraid to ask them. This is your chance!

I'll try my best to answer any questions here, but I hope others in the community will contribute too!

you are viewing a single comment's thread
view the rest of the comments
[-] sag@lemm.ee 7 points 2 years ago

Hey, Thanks I have one more question. Is it possible to ship all required library with software?

[-] Nibodhika@lemmy.world 16 points 2 years ago

It is, that's what Windows does. It's also possible to compile programs to not need external libraries and instead embed all they need. But both of these are bad ideas.

Imagine you install dolphin (the KDE file manager) It will need lots of KDE libraries, then you install Okular (KDE PDF reader) it will require lots of the same library. Extend that to the hundreds of programs that are installed on your computer and you'll easily doubled the space used with no particular benefit since the package manager already takes care of updating the programs and libraries together. Not just that, but if every program came with it's own libraries, if a bug/security flaw was found in one of the libraries each program would need to upgrade, and if one didn't you might be susceptible to bugs/attacks through that program.

[-] sag@lemm.ee 2 points 2 years ago

Thanks you so much for explanation.

[-] Bienenvolk@feddit.de 8 points 2 years ago

That is possible indeed! For more context, you can look up "static linking vs dynamic linking"

Tldr: Static linking: all dependencies get baked into the final binary Dynamic linking: the binary searches for libraries in your system's PATH and loads them dynamically at runtime

[-] sag@lemm.ee 1 points 2 years ago
[-] PlexSheep@infosec.pub 4 points 2 years ago

Absolutely! That's called static linking, as in the library is included in the executable. Most Rust programs are compiled that way.

[-] jack@monero.town 2 points 2 years ago* (last edited 2 years ago)

Doesn't that mean that you have a lot of duplicate libraries when using Rust programs, even ones with the same version? That seems very inefficient

[-] PlexSheep@infosec.pub 1 points 2 years ago

It's true that boundaries get inflated as a result, but with today's hard drives it's not really a problem.

[-] sag@lemm.ee 2 points 2 years ago

Yea, That's why I am learning Rust but I didn't know it called Static Linking I think it just how Rust works LMAO. And Thanks again

[-] PlexSheep@infosec.pub 1 points 2 years ago

No problem. Good luck with your rust journey, it's imo the best programming language.

[-] Nithanim@programming.dev 1 points 2 years ago

Appimage might also be a way

this post was submitted on 09 Apr 2024
301 points (98.7% liked)

Linux

67386 readers
346 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 7 years ago
MODERATORS