this post was submitted on 19 Jun 2023
-1 points (33.3% liked)

Debian operating system

2724 readers
2 users here now

Debian is a free operating system (OS) for your computer. An operating system is the set of basic programs and utilities that make your computer run. Debian provides more than a pure OS: it comes with over 59000 packages, precompiled software bundled up in a nice format for easy installation on your machine.

founded 4 years ago
MODERATORS
 

Hi, if you're trying to build lemmy from scratch, on debian (not ubuntu), and you're following this guide: https://join-lemmy.org/docs/en/administration/from_scratch.html

There are a few corrections I would like to point you.

Install those two things before following the guide:

apt install sudo

Of course, 'sudo' is not installed by default on Debian, so I guess it would be a good idea to install it.

sudo apt install build-essential

This will install the 'cc' compiler needed by Rust.

sudo apt install protobuf-c-compiler protobuf-compiler

This is needed to compile opentelemetry-proto.

you are viewing a single comment's thread
view the rest of the comments
[–] pascal@lemm.ee 2 points 1 year ago (1 children)

Since this isn't Reddit, I decided to not insult your knowledge and investigate about why our opinions differ.

I installed a couple of Debian recently and remember vividly that sudo wasn't there.

After reading the Debian wiki, it seems we're both right: sudo is automatically installed only if you don't give root a password.

Source: https://wiki.debian.org/sudo/

Thank you for making me learn something I didn't know.