this post was submitted on 12 Mar 2024
124 points (97.7% liked)

Linux

46794 readers
1319 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 5 years ago
MODERATORS
 

I've seen a lot of self-hosted software wanting to store their data in /opt, is there any reason why?

you are viewing a single comment's thread
view the rest of the comments
[–] captain_aggravated 14 points 5 months ago

It is my understanding that /opt is short for optional, a bit like how /etc does actually mean et cetera, and their modern use cases were evolved rather than designed. /etc became a catch-all for system settings and configurations, and /opt became a place for executable binaries other than those managed by the local package manager. Which often meant "a big monolithic binary that arrives in a .tar.gz file." /opt became less popular to use when /usr/local/bin was made for basically the same purpose.

In modern practice, /opt gets used as a drunk tank for irritatingly unfriendly monolithic software. A lot of the time, software that isn't managed by the system's package manager gets put in /usr/local/bin, but occasionally if it's a pain in the ass it'll get put in /opt.