Here I'll attempt to document all aspects of the home network in order to save some headaches later on!!
https://www.markdownguide.org/extended-syntax/#tables
https://www.tablesgenerator.com/markdown_tables
docker exec -it [container_name] bash
ex: docker exec -t nextcloud-mariadb bash
mariadb -u [username] -p[password] [db_name]
ex: mariadb -u root -p[root_pw] nextcloud
- note no space after -p
SELECT * FROM [table_name]
ex: SELECT * FROM oc_calendars
- shows whole table
Updating entry:
ex: UPDATE oc_calendars SET components = 'VEVENT,VTODO' WHERE id = 2;
Maria DB resources:
https://mariadb.com/kb/en/connecting-to-mariadb/
sfsdfdfsd
fdsfsdsdsdfdsf
Check disk speeds:
for ((i=0;i<12;i++)) do hdparm -tT /dev/hda; done
Replace hda with disk id (e.g. sda, sdb, sdf, nvme0n1), will run 12 times
April 2025 benchmarks:
sdb: ~150MB/s
sdc: ~170MB/s
sdd: ~212MB/s
sde: ~221MB/s
sdf: ~265MB/s
sdg: ~257MB/s
sdh: ~227MB/s
nvme0n1: ~4220MB/s