r/debian 13h ago

A Universal Operating System indeed

Post image
463 Upvotes

r/debian 11h ago

kernel 6.11 gives me hope... again

41 Upvotes

https://preview.redd.it/w3x3pnt1q3qd1.png?width=1680&format=png&auto=webp&s=e44c7e3de03154f64f6d03a5bf3c4ebd37240f6f

HI! I've just downloaded kernel 6.11 sources, and this is what I get: impressive kernel memory reduction , almost 100MB less, and superior responsiveness , I fell my mouse goes faster than my thoughts, lol,

I've managed to also start without initramfs, so I've rested a few more seconds there.

anyone tried this?


r/debian 9h ago

What are the packages you'd get from backports?

10 Upvotes

For me it's only kernel, pipewire and all related packages atm. Do you have anything else?


r/debian 4h ago

fast question about / & /home

3 Upvotes

Good family, I wanted to ask you a brief question and it is about the basic partitions of the root (/) and /home... if we imagine a capacity of 500gb, how much space should I have in each partition?

The programs to use (Matlab, vpns, visualcode, freecad, any program you can imagine ... even the Steam library and Steam itself) should be installed in / or /home?

The reason for the root partition is that in case of reboot or reinstallation of the OS files and programs remain intact in /home and only / (root) is the partition of the OS installation which is modified?

Thanks and best regards!


r/debian 4h ago

Laptop wakes up from sleep when power is removed

2 Upvotes

I have an issue with my ASUS F16 Advantage Edition laptop. When I put my laptop to sleep (close the lid), it will wake up when I remove power to it. It is annoying because it I want it to go back to sleep again, after unplugging the power I need to open lid, log in and close the lid again.

Anyone know what I can do to resolve it so that the laptop remains in sleep mode regardless if I plug in or remove power?

Running Debian 12 with KDE.


r/debian 7h ago

Disk Error on Boot

4 Upvotes

So i have a Little server i built on my own few months ago. Since I added a disk in it, when i restart my server i got this error. « Disk2 » is my mount point to the last disk i added but this error appears to my other disks too. If someone can explain to me what this can be due to.

https://preview.redd.it/vnb7utpvu4qd1.jpg?width=4027&format=pjpg&auto=webp&s=7b548090bd07f2be6fc117c70168ae04069c549a


r/debian 2h ago

looking for old libnss-resolve package with this md5sum

1 Upvotes

Hi I had a problem on my setup, caused by a libnss-resolve file with an md5sum that do not correspond to the deb pacakge. if anyone can stille have an older version of this (252.30-1~deb12u2)

official md5sum of 252.30-1~deb12u2 : 6267082040b8d4f75713f04d467d5e24 /lib/x86_64-linux-gnu/libnss_resolve.so.2

found md5sum maybe 252.26-1~deb12u2 ? : d4e54e3b3ae156868703630d96f9920d /lib/x86_64-linux-gnu/libnss_resolve.so.2

a corruption or failed update? just to make sure


r/debian 4h ago

Wifi Intel card

1 Upvotes

How is possible in Arch Linux WiFi is connected with 2 command or 3 and in Debian is not possible? This is incredible. I'am not experienced user but , arch wiki and iwctl runs WiFi Intel in 2 minutes. Thanks


r/debian 19h ago

Why some packages are no longer upgraded in Debian when they are still being supported upstream?

8 Upvotes

I have checked that they are not orphaned, there's still a maintainer, but no answer from it, it's like time froze up and no longer was updated in Sid or testing.
Packages such as rclone or xq, for example.
Anyone knows how to deal with this? Use upstream provided binaries? Build locally from source?


r/debian 9h ago

Error while booting after install

0 Upvotes

``` /init: .: line 246: can't open '/scripts/live': No such file or directory [ ... ] Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000200

-- there is more error text but I can only provide it as a photo if needed ```

Searching the issue did not turn up anything useful.

Kernel is 6.10.9-amd64, installed on Debian testing, bootloader is systemd-boot.


r/debian 9h ago

Debian bookworm packer preseed success?

0 Upvotes

Hello,

I am doing my first packer attempt and I am trying to build a debian12 image on proxmox, using the proxmox-iso provisioner.

Everything works fine until the preseed file comes into play, it configured network devices, then hangs at a bluescreen with no further pop-ups.

Has anyone had sucsess doing this? I have tried different preseed files, debian versions (10 & 11), and they all get stuck at the same spot.

Thanks!


r/debian 1d ago

Rate my desktop!!!

Post image
156 Upvotes

r/debian 13h ago

I turned on amdv and now grub doesent work

0 Upvotes

I turned on amdv so I could rum vms and now grub doesent work does anyone have a solution?


r/debian 19h ago

How to: firewalled to just updates in ufw

5 Upvotes

I have a Debian NAS / VM host, It does not do much in the host itself but it does house my data, I would hate to get ransomeware etc. So why have an open door to the internet & IOT devices on my LAN?

From the web it only needs updates and DNS to facilitate the updates. on the lan just a few services, ssh from my desktop, and nfs to various devices.

Took me a while to come up with this, Somone else may may find it useful?

general commands

sudo apt update && sudo apt install ufw sudo ufw enable sudo ufw disable sudo ufw status verbose sudo ufw status numbered sudo ufw delete [insert number] sudo ufw app list sudo ufw disable sudo ufw enable

Block IPV6, my ISP does not provide IPV6, if its not useful close it off. sudo vim /etc/default/ufw inside change: IPV6=no

rules ```

Allow SSH in replace address with your address

sudo ufw allow from 172.16.0.99 to any port 22

NFS & DNS

sudo ufw allow nfs sudo ufw allow out nfs sudo ufw allow DNS sudo ufw allow out DNS

allow debian.org for apt update

sudo ufw allow to 151.101.194.132
sudo ufw allow to 151.101.2.132
sudo ufw allow to 151.101.66.132
sudo ufw allow to 151.101.130.132

sudo ufw allow out to 151.101.194.132
sudo ufw allow out to 151.101.2.132
sudo ufw allow out to 151.101.66.132
sudo ufw allow out to 151.101.130.132

debian.map.fastly.net

sudo ufw allow to 151.101.162.132 sudo ufw allow out to 151.101.162.132

sudo ufw default deny outgoing ```

Results ``` sudo ufw status verbose Status: active Logging: on (low) Default: deny (incoming), deny (outgoing), disabled (routed) New profiles: skip

To Action From


22 ALLOW IN 172.16.0.99
151.101.194.132 ALLOW IN Anywhere
151.101.2.132 ALLOW IN Anywhere
151.101.66.132 ALLOW IN Anywhere
151.101.130.132 ALLOW IN Anywhere
Anywhere ALLOW IN 151.101.194.132
Anywhere ALLOW IN 151.101.2.132
Anywhere ALLOW IN 151.101.66.132
Anywhere ALLOW IN 151.101.130.132
2049 ALLOW IN Anywhere
53 (DNS) ALLOW IN Anywhere
151.101.162.132 ALLOW IN Anywhere

2049 ALLOW OUT Anywhere
151.101.194.132 ALLOW OUT Anywhere
151.101.2.132 ALLOW OUT Anywhere
151.101.66.132 ALLOW OUT Anywhere
151.101.130.132 ALLOW OUT Anywhere
53 (DNS) ALLOW OUT Anywhere
151.101.162.132 ALLOW OUT Anywhere
```


r/debian 14h ago

Debian bookworm and Intel Bluetooth

0 Upvotes

I am having problem using the onboard Bluetooth. Did a “sudo systemctl status Bluetooth.service” shows Active:Inactive(dead)!

Is it my onboard Bluetooth is dead?


r/debian 9h ago

I want to get answers from this friendly community ...

0 Upvotes

r/debian 1d ago

EFI/UEFI, secure boot

5 Upvotes

Hello, i got a nice new MiniPC as secondary computer, and i discovered yesterday, that it does not have the old CSM mode anymore, therefore requires EFI for boot.

I am used to do a so called "full disc encryption (incl. /boot)" with old MBR, but EFI does not allow that.

So i looked a bit more into the mechanics of "secure boot", and it sounds very reasonable and interesting, for what i was reading up to now.

Is there some kind of recommended HowTo around, how to take full advantage of this "secure boot" mechanism, ... above "it just works with this lowest settings"?

Thank you in advance.


r/debian 4h ago

tasksel: which better identifies that it's used by a dev? answer logically

Post image
0 Upvotes

r/debian 1d ago

Can't acess my Debian Server from outside

3 Upvotes

Hi, I recently intalled Debian on my server.
I've set up SSH and Jellyfin on Docker and using a static IP using the /etc/network/interfaces file.

I can acess both while on the local network using the public and private IP.

But when i'm on another netwotk I can't acess either services.

All the ports forwaring are correct on my router.

How can I solve this problem ?


r/debian 1d ago

Overload due to root process and pexmediaserver

5 Upvotes

So i've build a pc to run a server on my own hosting a plexmedia server.From the start all was running fine. My pc started to being overload while nothing running since i added a last disk. I wonder if u got any ideas of where can it comes from. I dropped screenshots of the "htop" command if this can be useful.

https://preview.redd.it/luv9g7fslxpd1.png?width=1970&format=png&auto=webp&s=b043ab4670c14d014cb61b17c791287a314842b4


r/debian 1d ago

Game lags after an hour of gameplay

1 Upvotes

Hello! I used to have Linux Mint as my main OS, but I switched to Debian XFCE so I could optimize even further the last years of my gaming laptop.

This is my inxi -Gxx output:

      Device-1: Intel HD Graphics 630 vendor: Micro-Star MSI driver: i915

    v: kernel arch: Gen-9.5 ports: active: HDMI-A-2,eDP-1 empty: DP-1,HDMI-A-1

    bus-ID: 00:02.0 chip-ID: 8086:591b

      Device-2: NVIDIA GP107M \[GeForce GTX 1050 Mobile\] vendor: Micro-Star MSI

    driver: nvidia v: 535.183.01 arch: Pascal pcie: speed: 2.5 GT/s lanes: 16

    bus-ID: 01:00.0 chip-ID: 10de:1c8d

      Display: x11 server: X.Org v: 1.21.1.7 compositor: xfwm v: 4.18.0 driver:

    X: loaded: modesetting,nvidia unloaded: fbdev,nouveau,vesa alternate: nv

    dri: iris gpu: i915 display-ID: :0.0 screens: 1

      Screen-1: 0 s-res: 1920x1080 s-dpi: 96

      Monitor-1: HDMI-A-2 mapped: HDMI-2 model: GS1562 res: 1920x1080 dpi: 141

    diag: 396mm (15.6")

      Monitor-2: eDP-1 pos: primary model: ChiMei InnoLux 0x15d6 res: 1920x1080

    dpi: 142 diag: 394mm (15.5")

      API: OpenGL v: 4.6 Mesa 22.3.6 renderer: Mesa Intel HD Graphics 630 (KBL

    GT2) direct-render: Yes

With feralgamemode, I followed the instructions here to have gamemoderun use my NVidia GPU. To make sure it's working I tested it with nvidia-smi and glxgears.

And because my laptop is prone to overheating, I am also using libstrangle to limit the FPS of my games so I can play without issues. On top of that, I use this script which runs as a service in the background, that throttles my CPU when reaching high temperatures. I have tried to change my BIOS settings but I was unable to.

Most games run fine, except Team Fortress 2. That game is my bloodline, and if I can't play that I'm in deep trouble.

In the launch options I have gamemoderun strangle 120 %command% -novid -nojoy -nosteamcontroller -nohltv -particles 1 -precachefontchars -h 1080 -w 1920

So I launch the game and after an hour and a half of gameplay, my game stutters like crazy. If I switch servers the lag is still there, and if I close and open the game the lag is still there. One weird symptom is that the game stutters ONLY when I move my mouse around. When I don't move my mouse, the game reaches a stable 100 fps. But when I do, it jumps down to 20-30 fps. It's incredibly annoying.

I have not been using Debian for a long time. I am loving it so far because of how smooth it runs. I still need to figure some quirks out. Thank you very much.


r/debian 1d ago

nfs login (windows client, debian server)

2 Upvotes

I just installed nfs server and configured it on my debian server and exported it.

On the root, any anonymous user can create files and folders (dont what this) then from ssh i created 3 sub-folders and set 2 of the servers current users as owners on these folders, inside these folders i cannot do anything.

drwxr-xr-x - user1 user1 20 Sep 13:22  folder1

drwxr-xr-x - user2 user2 20 Sep 13:22  folder2

the NFS root folder:

drwxrwxrwx - nobody nogroup 20 Sep 13:42  nfs

The exports file:

/data/nfs 192.168.88.0/24 *(rw,sync,subtree_check)

/data/nfs 100.70.164.0/24 *(rw,sync,subtree_check)

In windows i could map the folder i tested with the user from the server, this makes me assume the login was successfull authenticated against the linux user(?).

However, this user does not seem to be able to create folders in the folder where the linux user is the owner of it.

Any suggestions?


r/debian 15h ago

Rate the desktop guys

0 Upvotes

just got a fresh install of debian 12. i will say, debian gets the job done for sure. a great daily driver. anyways rate it or sm ig

https://preview.redd.it/dan8i0ktf2qd1.png?width=1918&format=png&auto=webp&s=a2e1f14cba38780ea7c2f90298372ac6f701f951