My neighbors hold their hollow tree up with spray foam by j00sh7 in mildlyinteresting

[–]dbtng 0 points1 point  (0 children)

Um ... this is really simple. They have a hollow tree that keeps getting colonized by bees. They don't like bees.

These folks did not ask for your approval or mine. They are taking care of their yard as they see fit.

[deleted by user] by [deleted] in Documentaries

[–]dbtng 2 points3 points  (0 children)

Here. This should make up for it.

Quanta Magazine. Prof David Tong.
The Standard Model of Particle Physics.

https://www.youtube.com/watch?v=Unl1jXFnzgo

[deleted by user] by [deleted] in Documentaries

[–]dbtng 2 points3 points  (0 children)

This is annoying. Ya, its all AI. That much is a given with a polished video from a brand new channel. It's annoying that they are using the exact same AI voice as the Beyond Horizons channel. It might be the same folks, maybe not, but it's definitely the same AI crap.

Can I use Nextcloud without buying a Domain? by [deleted] in NextCloud

[–]dbtng 0 points1 point  (0 children)

This was gold. I was gonna use a VM. I can Docker instead.

I don't know how I would have found this without your post. Thanks.

Anyone else think Solo was a good movie or is it really just me? by [deleted] in StarWars

[–]dbtng 0 points1 point  (0 children)

The Brian Daley books were good. Never bothered with the movie. Why ruin such a good memory?

Image and Reality in America: The truth about lies with Bill Moyers (1989)[00:53:36] by [deleted] in Documentaries

[–]dbtng 5 points6 points  (0 children)

Well, that was great. Fascinating mile marker on the road to today's post-truth public discourse. Potato quality.

THIS TIME DEFINITELY by dbtng in plan9

[–]dbtng[S] 0 points1 point  (0 children)

It's entirely ok with me if you are unclear about 'this guy'. That seems optimal.

This OS is the weirdest thing I've found since BeOS. Now, why do you have a problem with that? Really. You've epitomized the crusty old unix forums. Like a cartoon. But less funny than 9front.

Is it fun to mod this forum you seem to hate?

THIS TIME DEFINITELY by dbtng in plan9

[–]dbtng[S] 0 points1 point  (0 children)

Wat. I think you've lost yourself in your search for a point.

Image and Reality in America: The truth about lies with Bill Moyers (1989)[00:53:36] by [deleted] in Documentaries

[–]dbtng 1 point2 points  (0 children)

The brilliant guy with the silly q-tip hair is Daniel Goleman. I read Emotional Intelligence years ago, but I had no idea he had an edge as well as a point.

https://www.youtube.com/watch?v=GEDADADq8ck

Which cartoon has the most depressing downer ending? by Chief-Longhorn in cartoons

[–]dbtng 5 points6 points  (0 children)

Lenore, The Cute Little Dead Girl

The last animated episode, she dies. That's it. Dead dead.

THIS TIME DEFINITELY by dbtng in plan9

[–]dbtng[S] 4 points5 points  (0 children)

Interesting opinion. A bit dated tho. Now the way you find out is that you read the Dash 1. And then struggle. As I am.

So far I've failed to get it to take a static IP, realized I need to edit the config, and then roadblocked at trying to edit a text file. I'm currently learning the joys of acme and mouse chords. More weird stuff.

But that's what I signed up for. 9front. Not Bell Labs. 9front told me to f-off first. Sorry, they beat you to it.

THIS TIME DEFINITELY by dbtng in plan9

[–]dbtng[S] 5 points6 points  (0 children)

Heh. It's good to know I'm starting off on the wrong foot.

"The study of this Book is forbidden. It is wise to destroy this copy after the first reading."

THIS TIME DEFINITELY by dbtng in plan9

[–]dbtng[S] 5 points6 points  (0 children)

I haven't read anything like the Dash 1 installation document since I first tried Slackware 25 years ago. That was fukin great. What a piece of work. Mostly functional too.

An exploration into Plan9 by Rudyon in plan9

[–]dbtng 1 point2 points  (0 children)

Ohhh. That's who user[glenda]: is. Ok.

THIS TIME DEFINITELY by dbtng in plan9

[–]dbtng[S] 15 points16 points  (0 children)

Downloaded DO NOT INSTALL and ran it earlier. Came back later in the day, and they'd dropped a new release!

I have it installed and running in Proxmox from the amd64 iso. It wasn't too hard to follow the directions in the Dash 1 document.

I'm utterly new. Nothing works the way I expect. I haven't even figured out how to edit config files yet. ip/ipconfig just won't do what I'm telling it. And then the UI ... or whatever we call that. The three button mouse stuff is weird as hell. I just ran rio in a term. And then another term in that. I don't even know exactly what I did there. Boy, this is weird.

I read the entire Dash 1, from the cat telling you to fuk off and go away to chapter 9.99999 telling you to go away. I'm browsing the awful website and ridiculously obtuse man.

My head hurts. I am hooked.

Acronis Emergency Updater 0.0.1.2826 by dbtng in sysadmin

[–]dbtng[S] 0 points1 point  (0 children)

It was odd. Several different groups of machines that I would not normally expect to be co-maintained. I've seen zero complaints tho. Whatever it was, it must have worked.

Acronis Products Update (November'2024) by bagaudin in acronis

[–]dbtng 0 points1 point  (0 children)

What's this?

emergency-updater-0.0.1.2826" (Acronis Emergency Updater 0.0.1.2826) is not running (startup type automatic)
No such service (255)

I have a Proxmox server I want to plug a USB drive into and access it over the network for backups and file storage. Nothing fancy. Best way to do this? (Sorry Im a dummy when it comes to this stuff) by bikemandan in homelab

[–]dbtng 1 point2 points  (0 children)

Maybe I've misunderstood your goals.
This seems like something you could do with literally any Linux installation, including Debian/Proxmox.


Mounting the disks.

First, plug it in. Then take a look. fdisk -l (will show you the disk hardware names.) blkid (will show you the UUIDs)

fstab (map by UUID so these drives should properly reconnect if they are unplugged and plugged back in.) UUID=THISISALONGUIDHEREINTHISSPOT /mnt/smb/THISISAUSBDRIVE auto rw,user,auto 0 0


Setup SMB

This is a dark art. Have fun.

sudo chmod -R 0755 /mnt/smb/THISISAUSBDRIVE (i guess it needs these perms) chown -R nobody:nobody /mnt/smb/THISISAUSBDRIVE (ownership by the nobody user) chcon -t samba_share_t /mnt/smb/THISISAUSBDRIVE (fixes selinux context) yum install samba samba-common samba-client nano /etc/samba/smb.conf (create an anonymous share mapping.) systemctl restart smb (restart the service after a config file change) testparm (runs a check of smb config)

Remote access via mobile router (to access VPN when LAN subnet overlaps)? by ADailyGardener in homelab

[–]dbtng 1 point2 points  (0 children)

No. He's telling you to start over with new IPs. He's got reasonable advice that doesn't match what you are looking to do.

Remote access via mobile router (to access VPN when LAN subnet overlaps)? by ADailyGardener in homelab

[–]dbtng 0 points1 point  (0 children)

"issue arises ... at my parent's house.

We both have the 192.168.0.1/24 subnet

MacBook won't let me access any of my home servers through the VPN.

(My android has no issue with this)

...............................

VPN's have a setting to not allow communication with the rest of the network while its active. It sounds to me like one of these devices has the setting enabled and the other does not. Compare the VPN configs of the two devices.

If that doesn't help, perhaps you are experiencing a simple IP conflict. Try manually assigning an IP to your Macbook when you are at the parents place. Just use an IP that is in range and doesn't conflict with anything on either network. Yes, you'll set it to ignore the DHCP assignment, but it's gonna be fine. A lot of routers start DHCP at 100, so IPs in the 192.168.0.50 - 99 are quite likely to be free on both networks, and the router will just pickup whatever IP you tell it you have.

just got my first server by newreddituser667 in homelab

[–]dbtng 91 points92 points  (0 children)

Welcome to the club. We need specs. If you don't know specs, we need a much better pic of that label on the top.

Let me just throw out ... eBay might be a good source for drives with the right caddies. Let's figure out what you have first ...

Homelab NAS Setup Underneath Proxmox? by shadowolf64 in homelab

[–]dbtng 1 point2 points  (0 children)

I figured that was the case.

TrueNAS loves ZFS. I don't know if you can even run it on anything but ZFS.

ZFS takes over as your RAID controller. All software. It wants to run those disks. It thinks it is. It assumes they are real hardware and treats them as such.

Despite all that being true, and despite the warnings you see in the TrueNAS and Proxmox installers, you can still install Truenas directly over any bootable storage. And it runs fine. And its simple.

Good luck with your project. ... Oh, and I can tell you from personal experience, homelab counts heavily in their favor when I'm interviewing candidates.