2024年10月12日 / kirito / 0 Comments
jp: Overlord The Sacred Kingdom (2024) 24fps.jp
cn: Overlord The Sacred Kingdom (2024) 24fps.cn
en: Overlord The Sacred Kingdom (2024) 24fps.en
Note: These subtitles were generated by AI. But better than nothing.
2023年8月29日 / kirito / 3 Comments
- Install LibreOffice and unoserver with the following commands:
|
apt install libreoffice python3 python3-pip pip install unoserver |
- Make sure the environment is ok:
|
wget -O find_uno.py https://gist.githubusercontent.com/regebro/036da022dc7d5241a0ee97efdf1458eb/raw/find_uno.py python3 find_uno.py |
- Start unoserver and take a conversion in diffrerent command line prompt:
|
python3 -m unoserver.server |
|
python3 -m unoserver.converter --convert-to pdf my.docx my.pdf |
- If you encounter the font problem, you should add windows fonts to Linux with the following steps.
- Copy all fonts files under C:\Windows\Fonts
- Remove the .fon files
- Copy the font files to Linux and paste the files in /usr/share/fonts/win/. and you should create win directory by yourself.
- Update the font cache with the following commands in /usr/share/fonts/win/ :
|
mkfontscale mkfontdir fc-cache |
If you cannot find the commands, run
|
apt-get install xfonts-utils |
- You can also check the font status via fc-list
- Create a system service for unoserver in /etc/systemd/system/unoserver.service:
|
[Unit] Description=unoserver After=network.target [Install] WantedBy=multi-user.target [Service] Type=simple User=root Group=root ExecStart=/usr/local/bin/unoserver Environment=PYTHONUNBUFFERED=true Restart=on-failure RestartSec=3 |
You should also use systemctl daemon-reload to take effect. And if you want to make the service on startup, run systemctl enable daemon-reload
2020年7月9日 / kirito / 0 Comments
Backup:
|
cd /var/lib/lxc/${lxc_name}/ tar --numeric-owner -czvf ${lxc_name}.tar.gz ./* |
Restore:
|
mkdir/var/lib/lxc/${lxc_name}/ cd/var/lib/lxc/${lxc_name}/ tar --numeric-owner -xzvf ${lxc_name}.tar.gz . |
${lxc_name} should be your lxc`s name.