This NVMe SSD achieves 736MB/s reads and 174MB/s writes.
The numbers were calculated using the badblocks command, and tracking how long it took to complete the read and write phases.
badblocks -wsv /dev/sda
This NVMe SSD achieves 736MB/s reads and 174MB/s writes.
The numbers were calculated using the badblocks command, and tracking how long it took to complete the read and write phases.
badblocks -wsv /dev/sda
Are you looking for a tastier, lower-carb alternative to the standard McDonald’s menu?
Make a Chick-Double! Here’s how. . .
I just transitioned from onsite WordPress hosting (in my garage) to using a cloud provider.
I went with the provider DreamHost.
Another con: The Let’s Encrypt certificate took a few hours to process. Not a huge deal, but it’s inconvenient because it’s long enough that you have to idle and wait, or do it another day. Just frustrating because you are basically sitting there with everything else done just waiting for this process to happen.
The servers, UPS, etc took just over 100 watts to run. That’s approximately $10 per month.
The yearly DreamHost unlimited plan has an intro rate of $2.95 per month, and then renews at $12.95 per month.
So basically, having everything done for me is the same as the cost of just power.
Complete the one-click migration before making any DNS changes. Otherwise, the software has trouble pulling the data from your old/existing site.
Be sure about how you plan to handle www in the URL before copying the site over. It can be tricky to change later.
For example, know whether you want the URL to be https://www.saelzler.com or https://saelzler.com.
Another circumstance where a long-winded explanation brings us to a fact we already know!
Shared cloud hosting is easier to manage, but has lower performance.
If you have a simple site, and can live with average response times in the 2-3 second range, I highly recommend shared hosting!
If not, explore other options.
I am not in the same position as hon1nbo, but I feel like their story and mine do have many parallels.
For the past few years, I’ve physically set up and managed several web servers in my garage.
I am giving them up. Doing my own web hosting was a ton of fun! There was lots to learn, and it was engaging. However, I want to make room for other things in my life.
When I am administering the physical and software configuration of these machines, I am not journaling, working out, or connecting with friends.
Therefore, I’ve migrated this website, along with https://bethanyandvincent.com to a cloud provider.
This is the most recent step in my ongoing quest to spend my limited time in life wisely.
I removed the seats to get all of those left-over fries from the last 4 years!
I’ve always struggled to find info about the boot!
Turns out, it is really easy.
journalctl -b
Well I thought I knew how to do an oil change with no problem.
There was one caveat: Using super thin SAE 0W-20 oil on the oil filter gasket doesn’t work well.
I was changing the oil in my 2016 Mazda 3.
Tools Required: (Those last two messed me up)
First problem was that I took of the wrong plastic cover piece. There is one closer to the front of the car. I thought it was for the drain plug. I was wrong. One (slightly larger about 15″x15″) cover piece allows access to both the oil filter and drain plug.
When I was taking off the old oil filter, I could barely get it off. I spent about 15 minutes getting in just the right position and used all of my hand strength.
I was confused why it was so difficult, because I put the last one on myself, and I would have been careful not to over-tighten it.
When I put the new one on, the directions said to turn it 3/4 to 1 full turn after contact with the block.
Now, I was discouraged and laying under a hot car, debating whether to leave an improperly tightened filter as-is and hope for the best, or actually fix it.
Thankfully, my neighbor had a large set of pliers and I was able to get the filter off!
I retried the installation using a 3-IN-ONE multipurpose oil. It’s the kind that is used for bike chains, casters, etc.
This time, everything felt normal. I was able to turn to about 3/4 turn perfectly. Hopefully, the oil is still on there when I got to take the filter off!
In addition to using better filter gasket lubricant, I would never risk doing the job without something to take off the oil filter with force. Oil filter wrench is probably ideal, but at least something like large enough pliers.
We have a 2016 Mazda 3. I needed to replace the rear brake pads.
I’ve done this before on other cars, so I thought it would be easy. Due to my inexperience and lack of tools, it was not.
Getting everything to the point of removing the caliper went fine. Then, I needed to compress the caliper piston. The idea is to move it in the direction of the red arrows.
Unfortunately, I didn’t have the official tool, so I got creative. I tried forcing it in with several items.
After breaking my neighbor’s pliers, I gave up for the day, and re-assembled everything with the old brake pads still in the car. ???? ????
I became furious, then cried a little bit, then went online and ordered the tool.
The key is actually to rotate/screw the caliper piston back in, as opposed to pushing it straight in.
This is true for the back brakes, not the front ones. The process is different because the parking brake is connected to the back brakes.
Now that I know how the piston needs to rotate, I’m not sure that the tool was actually required. I probably could have used pliers.
However, I had a new problem! It looked like the rubber seal was completely messed up as a result of the twisting.
Luckily, this turned out to be no problem. I easily pushed the rubber seal back in place with my thumbs.
After swapping out the old pads for new ones, the brakes were ready for re-assembly!
The car is now back on the road.
InfluxDB will run on in a Docker container.
This setup assumes that a Docker host is accessible on the LAN. In this example, the local domain is vnet
and the host name is docker4
.
Therefore, the Docker host FQDN is docker4.vnet
Your USERNAME, PASSWORD, and ORG will vary.
I made my org the same as my local networking domain, but that is not a requirement.
docker run -d \
-p 8086:8086 \
--mount type=volume,source=influx-data,target=/var/lib/influxdb2 \
--mount type=volume,source=influx-conf,target=/etc/influxdb2 \
--name idb \
-e DOCKER_INFLUXDB_INIT_MODE=setup \
-e DOCKER_INFLUXDB_INIT_USERNAME=vince \
-e DOCKER_INFLUXDB_INIT_PASSWORD=secret-password \
-e DOCKER_INFLUXDB_INIT_ORG=vnet \
-e DOCKER_INFLUXDB_INIT_BUCKET=proxmox \
As of Proxmox 6.4, it is possible to use the version 2 API of Influx.
Before that, Proxmox would connect to Influx 1.x, but it was sending graphite line protocol over UDP (yuck). Now it connects via TCP/HTTP to the Influx API.
Log into the Influx web user interface, and copy the token for the user.
Click the token name to reveal the token.
http://docker4.vnet:8086/
There is probably a command-line way to do that, but I don’t know it.
The name can be whatever you want.
Paste the token from the last step into the “Token” field in the Proxmox UI.
Navigate back to the InfluxDB web UI, and confirm that data is flowing. http://docker4.vnet:8086/
If things are working, there will be some measurements that clearly look related to Proxmox resource utilization.
In the next post, we will connect the InfluxDB bucket to a pre-built dashboard using Grafana.
This is a quote by Heraclitus. He lived from 535-475 BC.