- 6 Posts
- 106 Comments
We tried that already, they still won the election,
ohshit604@sh.itjust.worksto
Linux@lemmy.ml•Debian -- News -- Debian 13 "trixie" releasedEnglish
7·9 months agoIn this scenario if a user is using Debian 12 (Bookworm) and wanted to upgrade to Debian 13 (Trixie) it is possible to do by editing your
/etc/apt/sources.listfile and replacing Bookworm with Trixie.Obviously consult the documentation and backup your files before making drastic changes to your operating system.
ohshit604@sh.itjust.worksto
Linux@lemmy.ml•Debian -- News -- Debian 13 "trixie" releasedEnglish
8·9 months agoI upgraded my distro relatively easily, had to purge and reinstall my nvidia packages & driver but other than that we’re back in action almost as if nothing changed.
KDE got a bit fancier with Plasma 6, a lot of themes no longer work.
ohshit604@sh.itjust.worksto
Linux@lemmy.ml•What problems does Linux have to overcome to get more usersEnglish
2·9 months agoMajority of average office workers do not use CAD software.
That really depends on the office, doesn’t it? Project Managers, Detailers and Engineers should be familiar with CAD software.
ohshit604@sh.itjust.worksOPto
Linux@lemmy.ml•[Proxmox/Debian 12] Drives randomly disconnect an unmountEnglish
1·10 months agoThat’s fair, I’ve updated my grub to reflect the changes you linked earlier, I’ll give the machine a good ol fashioned reboot once I get home.
Thanks again.
ohshit604@sh.itjust.worksOPto
Linux@lemmy.ml•[Proxmox/Debian 12] Drives randomly disconnect an unmountEnglish
3·10 months ago- Do they BOTH disconnect at the same time?
- Is this connected over USB?
Yup they disconnect at the same time, it uses USB for data transfer however, the dock does have its own power supply.
If you don’t have another way to connect these drives to your machine, then do this: https://danielbrennand.com/blog/proxmox-fix-usb-disconnect/#troubleshooting
I’ll give this a shot when I get home, I have an 2.5” SSD that is connected to a regular USB 3.0 port that isn’t shutting off like the HDD’s so I’m skeptical to think that a power saving feature is causing this.
Thank you!
ohshit604@sh.itjust.worksOPto
Linux@lemmy.ml•[Proxmox/Debian 12] Drives randomly disconnect an unmountEnglish
2·10 months agoBack up your important files while you still have them and get new ones ASAP; preferably some form of SSD
Unfortunately I’m going to have to until pay day for me to replace the drives, and I currently don’t have 6tb to back up to, I was thinking of getting a 10tb western digital NAS drive as it is significantly cheaper than a 10tb SSD.
Granted an SSD would be ideal if I can find one relatively ”cheap” that still has a NAND chip for caching.
ohshit604@sh.itjust.worksOPto
Linux@lemmy.ml•[Proxmox/Debian 12] Drives randomly disconnect an unmountEnglish
1·10 months agoWell that’s worrisome, I suppose this is where I start looking for replacements. Thank you!
Things happen magically with docker. Container needs PostgreSQL? Expose the port, define a volume, username and password, connect service to that port, forget PostgreSQL’s existence until data corruption.
Ah man, my boss wants to get our department Meta glasses for taking pictures of parts we make, we literally get a bonus on our pay cheques for us having our phones on us an be reachable.
ohshit604@sh.itjust.worksto
Linux@lemmy.ml•Why does Arch seem to have a cult like following?English
2·10 months agoWhile true, at least I ain’t getting the updates that bloat applications with Ai… yet
ohshit604@sh.itjust.worksto
Linux@lemmy.ml•Why does Arch seem to have a cult like following?English
4·10 months agoPeople praising Arch, people hating on Ubuntu, meanwhile me on Debian satisifed with the minimalism.
Setting static IP’s is generally a good practice to take if you want to keep track of any device.
ohshit604@sh.itjust.worksto
Linux@lemmy.ml•Recommendations for an Offline Music Player That Supports Synced LyricsEnglish
5·11 months agoBeen using Jellyfin to host my music and Finamp to play it, Lyrics are pulled from https://lrclib.net/ using a Jellyfin plugin, certain lyrics are timestamped allowing for synchronization other are just static.
ohshit604@sh.itjust.worksto
Linux@lemmy.ml•Has anyone had success putting ProtonVPN or any other VPN aside from MullvadVPN on Bazzite?English
21·11 months agoProtonVPN works fine for Debian based systems, wish I could say the same for ProtonDrive.
ohshit604@sh.itjust.worksto
Privacy@lemmy.ml•DNS Black-holing w/ DNS over TLS - Personal Privacy Part 1English
2·11 months agoIf you don’t mind DM’ing me or dropping it in a comment here it would be greatly appreciated! The docker engine isn’t something entirely new to me so i’m a bit skeptical into thinking that i missed something but always happy to compare with others, actually Docker is what pushed me to switch fully to Linux on my personal computers.
Snippet from my docker-compose.yml:
pihole: container_name: pihole hostname: pihole image: pihole/pihole:latest networks: main: ipv4_address: 172.18.0.25 # For DHCP it is recommended to remove these ports and instead add: network_mode: "host" ports: - "53:53/tcp" - "53:53/udp" - "127.0.0.1:67:67/udp" # Only required if you are using Pi-hole as your DHCP server - "127.0.0.1:85:80/tcp" - "127.0.0.1:7643:443" environment: TZ: 'America/Vancouver' FTLCONF_webserver_api_password: 'insert-password-here' FTLCONF_dns_listeningMode: 'all' # Volumes store your data between container upgrades volumes: - './config/pihole/etc-pihole:/etc/pihole' - './config/pihole/etc-dnsmasq.d:/etc/dnsmasq.d' - '/etc/hosts:/etc/hosts:ro' # https://github.com/pi-hole/docker-pi-hole#note-on-capabilities cap_add: - NET_ADMIN # Required if you are using Pi-hole as your DHCP server, else not needed - CAP_SYS_TIME - CAP_SYS_NICE - CAP_CHOWN - CAP_NET_BIND_SERVICE - CAP_NET_RAW - CAP_NET_ADMIN restart: unless-stopped labels: - "traefik.enable=true" - "traefik.http.routers.pihole.rule=Host(`pihole.my.domain`)" - "traefik.http.routers.pihole.entrypoints=https" - "traefik.http.routers.pihole.tls=true" - "traefik.http.services.pihole.loadbalancer.server.port=80" - "traefik.http.routers.pihole.middlewares=fail2ban@file" unbound: image: alpinelinux/unbound container_name: unbound hostname: unbound networks: main: ipv4_address: 172.18.0.26 ports: - "127.0.0.1:5334:5335" volumes: - ./config/unbound/:/var/lib/unbound/ - ./config/unbound/unbound.conf:/etc/unbound/unbound.conf - ./config/unbound/unbound.conf.d/:/etc/unbound/unbound.conf.d/ - ./config/unbound/log/unbound.log:/var/log/unbound/unbound.log restart: unless-stoppedEdit: After re-reading the Unbound github and their documentation it seems i may have missed some volume mounts that are key to the function of Unbound, i’ll definitely have to dive deeper into it.
ohshit604@sh.itjust.worksto
Privacy@lemmy.ml•DNS Black-holing w/ DNS over TLS - Personal Privacy Part 1English
3·11 months agoI got two PiHoles running on my network via Docker Compose, I tried setting up Unbound in Docker-Compose and that fell flat, from my understanding DNSSEC was preventing DNS resolution outright.
Also tried OpenSense + Unbound which led to the same thing.
Eventually got tired of having my network cutting in and out over minor changes so I just stuck with Quad9 for my upstream needs.
ohshit604@sh.itjust.worksto
Linux@lemmy.ml•What is your most useful Linux app which others might not know about (please don't just give the name but a link and why it is good for you) ?English
5·11 months agoThe Docker Engine makes hosting applications over your network easy, if you have spare hardware I highly recommend setting up your own server.
ohshit604@sh.itjust.worksto
Privacy@lemmy.ml•Most used encrypted messenger besides Signal, Whatsapp, iMessage, and RCS?English
3·11 months agoI may not know much about software development & programming itself however, I feel like I did my part here.





Baffling how this got downvoted to lemmy’s equivalent of oblivion with no rebuttals by anyone, you’re absolutely right.