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
				2023年8月20日 / kirito / 0 Comments	
	
- Press Shift + F10 to enter  the command prompt
- Type regedit to enter Windows Register Editor
- Go to HKEY_LOCAL_MACHINE\SYSTEM\Setup, and create “LabConfig” key
- Add three DWORD (32-bit) value,  BypassTPMCheck, BypassRAMCheck, BypassSecureBootCheck and set all the value to 1.
- Closed the regedit and command prompt and enjoy Windows 11 installation.