This is an old revision of the document!
- Linux
- Windows
- Android
Finca LaDichium โ DEBRiS Chrome
Name: DEBRiS Chrome (official) | ๋๋ผ์๋ชฝ (korean)
System Consideration: โ Size of system partition is critically small โก Data should be stored on attached disk(s)
Specification
CPU: Intelยฎ Celeronยฎ CPU N3060 @ 1.60GHz (2 cores) โ Product info
Main Memory: 2G
Storages:
32G(m.2 type SSD) โ/partition1024Gโ/homepartition
Live status of storages
Mounted on Type Size Used Avail Use% /home ext4 29G 12G 16G 43% / ext4 916G 368G 502G 43%
Wireless Network:
- Intelยฎ Dual Band Wireless-AC 3160 (802.11ac) โ Product info
- Realtek Semiconductor Corp. RTL8188EUS 802.11n Wireless Network Adapter
๏ผWork logs
- Upgrade
mariadb10.5 โ Updated on 2020/08/31 13:15 - Get certificates for
sayah.krโ Updated on 2020/06/28 19:09 - Install
WordPressforsayahโ Updated on 2020/06/28 19:07 - Change
backup rsyncto another partition โ Updated on 2020/06/27 04:01 - Install
Nextcloudnamedcloud.ejestate.tkโ Updated on 2020/03/29 22:22
๏ผQue to do
Hosting Services
Showing lively on OWL for DEBRiS Chrome
Gemini Services
Duplicate and backup for wiki.meson.in and wiki.meson.one (OWL) toward backup server.
Create /var/www/.ssh and Generate Pairwise keys on source server
sudo mkdir /var/www/.ssh sudo chown -Rf www-data:www-data /var/www/.ssh sudo -u www-data ssh-keygen -t rsa -b 4096
File synchronization using rsync to remote (target) server
sudo -u www-data rsync -azP --rsync-path="sudo rsync" /var/www/source.directory/ user@target.server:/home/to/path/target.directory/
Create executive file /usr/local/rsync_wiki and make it executable sudo chmod +x
#!/bin/sh sudo -u www-data rsync -azP -e 'ssh -p 2020' --progress --rsync-path="sudo rsync" /var/www/wiki.meson.in/ meson@target.com:/home/meson/webroot/wiki.meson.in/
Limit size of journal logs
edit /etc/systemd/journald.conf
SystemMaxUse=100M
Clear journal logs with command
journalctl --vacuum-time=2d journalctl --vacuum-size=500M
Usually it could free over 3.0G up on (system) disk.
Nginx Reverse proxy
Subsonic server is using port 4040. Then create virtual host in Nginx with SSL and add the following lines.
location / { proxy_pass http://localhost:4040/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; }
Edit /etc/default/subsonic with commenting out the following
SUBSONIC_ARGS="--port=0 --https-port=4040 --context-path=/ --max-memory=200"