jmpd(jump directory): fuzzy finds and opens directory with fzf
# fish shell
function jmpd
set _selection $(fzf --walker=dir);
if test -n "$_selection"
cd "$_selection";
end
end
jmpd(jump directory): fuzzy finds and opens directory with fzf
# fish shell
function jmpd
set _selection $(fzf --walker=dir);
if test -n "$_selection"
cd "$_selection";
end
end
I don’t think its rpi or network switch, unless you’ve overclocked rpi with liquid nitrogen 😅. So, I assume its TrueNas device.
If it were a significant power difference, say 20-30 watts, you could easily find the process using htop/iotop. However, 6 watt difference is a relatively small value for a device with ~25 watts of idle power . It might be a process using just 1% system resources. That’s why I would look for systemd timers, cronjobs etc. to find scheduled tasks on specific times. Another possibility is automated S.M.A.R.T. self-tests. Those tests don’t show up in htop or iotop.
LinkedIn.
Imagine Twitter and Facebook teaming up for a Dragon Ball style fusion, turning into this cringe fake business guru with a Ghibli style profile picture, spitting out AI generated posts and running impression based non-sense polls.
UPS devices normally uses wall (input) power, and switches to battery when input voltage is out of the target thresholds. So, input.load should represent the percentage of current wall power (in VA) relative to UPS’s max rated input power (VA). If your devices uses more power, input power from wall should increase as well.
If it’s peaking in certain times, it could be due some scheduled job temporarily increase CPU frequency, or automated tasks like file system snapshot might power-up/spin drives longer than regular usage.
Instead of single pool, I simply split my drives into tiers: cache, storage, and trash due to limited drive counts. Most R/W goes to the cheap trash and cache disks instead of relatively new and expensive NAS drives.
LinkedIn?
I’m currently using InfluxDB + Telegraf + Grafana combination to monitor Linux systems and k3s pods. It’s basically same as Prometheus, but InfluxDB uses push model, which makes it easier to develop tools for collecting custom time series data.
For alerts and dashboards, I think Grafana is the simplest and most hassle free solution available at the moment.
I have a APC Back-UPS 1600VA. It powers two desktop PC/Server, a monitor, and router. So far, it gets the job done.
The biggest downside is; battery is not user replaceable, at least it’s not straight forward like the other models. If possible, prefer a UPS with the easy battery replacement option.
I was a backend developer for a startup company where:
I left there after 6 months.
Biggest difference is being able to execute INSTCMD commands, at least that was the main reason why I developed my own tool. Another less important differences are: older ARM support and since it’s written in Rust, it’s much more efficient in terms of resource usage. TBH, being that efficient only makes sense for very low-power devices.
Besides that, I don’t think you can go wrong with either project.
Thanks! I appreciate any kind of feedback.
Jiatan probably is in shambles right now. Poor guy spends years to infiltrate in a project and got caught. Meanwhile CrowdStrike took whole infrastructure down with a single update.
I’m actively using ollama with docker to run llama2:13b model. It’s generally works fine but heavy on resources as expected.
I recommend Obsidian with community plugins. Application itself isn’t open-source but your content stored as markdown files.
I personally use Traggo, but TimeTagger is also a great option: https://timetagger.app/articles/selfhost/
I just checked the manga artist’s site, he also posted the source PSD files of the chapters. Literally gigachad move.
If I’m recall correct, Sugo 13 only has single 3.5 slot. I’d say look for Sugo 14 (2x3.5) or Node 304 (6x3.5)
Make sure all of your components fits to the planned case including power supply.
Oblivion
The RAID on your motherboard is a mess and you should avoid it like the plague. — Wendell from Level1Tech
Creating RAID with either zfs or btrfs is much more easier and they perform better than motherboard’s RAID implementations. If you want a UI, you can even install TrueNAS Core as a server and manage zfs pools, share on network etc.
For media files (bad idea for databases), I’m using Kubernetes CronJobs with restic. It mounts PVC to the cron job pod and backups target directories to S3 storage.