Been Busy

Uncategorized
Way to much going on. I've worked on many projects and dropped a couple. People...heh.Right now I'm going to relocate my server's physically to a back room...sort of closet area. I have a few servers. I have 7 dell R720 and R820 servers. I've set up a proxmox cluster. Two main servers with a smaller (not included in the count) dell server designated only as a quorum device for the cluster. I picked up a coupleof puppies about 2 months after my dog River died. He was 14 years old and was my best friend. He and I have been through a lot. I got very lonely and decided to look to see if there were any puppies. I found two older puppies. Brothers. I decided to get them both.…
Read More

iVentoy container from Proxmox scripts Github repo looses IP address

Uncategorized
I found that the script creates a /etc/network/interfaces file entry for eth1 along with eth0. As there is no eth1 (unless you create it) in order to keep it from disconnecting after a while you should delete the eth1 section in that interfaces file. Unless you remove it you will not be able to restart the service manually as it will error out. https://tteck.github.io/Proxmox/#iventoy-lxc The script is under the servers option.
Read More

Adding a bind mount using a remote folder using SSHFS.

Uncategorized
I wanted to add a bind mount to a container so I could index the content for playback. This would allow the program in the container to index the data without the need to store it locally. The media is my music library. I want to be able play it while driving and while at work. This became a multistage process. First I had to mount the remote folder in my Proxmox host. Then I needed to provide that folder as a bind mount in the container where the program that needed the data that ran. The two steps are to use a secure method to talk to the remote computer. I used SSHFS to contact the server and mount the connection in the PVE host. I used the root…
Read More

FreeBSD 13.2 Troubles

Uncategorized
I've used Linux for going on 20 years. It is a nice well rounded OS with a lot of support. The OS is settling in and there are a ton of features, programs, and well, policies. The latter is what is bothering me and I'm worried that it is getting too complex. This isn't to say that it wasn't complex but it is getting more so complex. It is hard to get an answer to a problem without a lot of research on the issue and the surrounding technologies. Then there are limits these days, such as the drive to forced use of flatpacks, appimages, and snaps. Canonical owns snaps and they are pushing to get everyone to use them. They have the biggest overall market share for distributions; albeit…
Read More

Rock Solid BSD (FreeBSD 13.2) with KDE Plasma (and including video acceleration setup)

Uncategorized
Note: FreeBSD 14 is due out in the middle of this year. Note: FreeBSD has a linux compatibility layer as well as support for wine. It has jails. Jails is a tool similar to containers. BSD does not support LXC as LXC means Linux containers. The video linked below walks you through downloading and the install FreeBSD and then XORG and then X11 with KDE Plasma. Since the video does this and since I already did it I have not included those steps. The install was near flawless, albeit somewhat dated in the installer's UX (user experience). As well since the video shows the person installing it into a container it does not cover configuring video hardware acceleration. I added that at the bottom of this guide. https://www.youtube.com/watch?v=kzIWXdcrK5I sudo does…
Read More

Upon boot BSD spams that the file system is read-only

BSD, rc.conf, read-only
The actual message is "/usr/sbin/rsysrc: cannot create /etc/rc.conf: Read-only file system" I worked quite a bit yesterday discovering the different programs that I use on Linux that I wanted to work on BSD. My reasoning is that if these are there then there's little keeping me from switching to BSD on at least one of my main desktop computers. The program that I wanted to install was tuptime. This program will keep an eye on how long the computer has been up along with various statistics involved, such as the longest interval up, longest interval down, etc. I did the install of the package which is part of the BSD repository. At the end of the install it generated a message indicating that I needed to add a couple of…
Read More

FreeBSD Enable Graphics Acceleration for your Desktop.

Uncategorized
You can get FreeBSD (and maybe others) installed without graphics acceleration and that will still allow you go install and run KDE Plasma. However, the experience will be somewhat poor. What made me take note is that when I looked at KDE Plasma settings under Display and Monitor the refresh rate of the monitor was 0hz. When I was at a remote location I decided to run using x11 forwarding the settings program where I found the refresh rate properly set for that monitor, which was 60hz. In order to actually install the accelerated graphics you must install the appropriate drm-* driver. This is done with the following command. sudo pkg install graphics/drm-kmod This will download and install nearly 100 items pertaining to various graphics technologies, such as AMD, NVIDIA,…
Read More

Brother printers on Manjaro/Arch installation.

Uncategorized
Manjaro does not have proper support of printers out of the box. It seems they are working continually to limit what they are doing to produce a distribution. What I mean is that they are refusing to do things such as enable and start services as you install applications. They are requiring you to do this even if you have no idea what to do (or that you have to do it) to make it work. For instance, in installing CUPS they should enable and start it. It is that simple, period. If they tell you that some people want to do it differently then let them. Let them back out of the automatic setup. They can then configure the startup of the service to do it their own way.…
Read More

Proxmox container services not properly starting after a reboot of one container.

Uncategorized
My proxmox has many containers that must restart every time I reboot the host computer. Each is set to start on boot. There's one container that starts, yet not all the services start. The mail container is the one in question. It is the first container that happens to start. Once it starts you can SSH in and reboot it in order to get the services to start. The question is, why didn't the services start? The container started. You could SSH into it which means it gets an IP address. Some services start but some don't. To keep the story short it looks like the cause is the boot time of the virtualized pfsense router. It took too much time for pfsense to start all the while the other…
Read More

Samba mount from CLI generates error 95

Uncategorized
Really rough draft. There are a number of issues and many have worked out various solutions, however no one has worked out that the smbpasswd has to be correct. sudo mount -t cifs -o username=xxx,password=yyy //jim@192.168.1.2 xxx sudo prompts for admin privs. mount is the command to execute. -t is parameter telling it to use cifs as the protocol, -o inputs the username and password and any other option. //jim@ip address (the address of the server), and xxx is the folder to mount it under. The key here is that you need to have the samba password correct also or it will generate that message. sudo smbpasswd -a jim Then give it the smbpassword and then repeat it to ensure that it is correctly typed. This is the password used…
Read More