-
下載Typora
wget https://typora.io/linux/Typora-linux-x64.tar.gz
-
解壓
tar -zxf Typora-linux-x64.tar.gz
-
運行Typora
./Typora
報錯:
[3469:1122/213956.912137:FATAL:setuid_sandbox_host.cc(157)] The SUID sandbox helper binary was found, but is not configured correctly. Rather than run without sandboxing I'm aborting now. You need to make sure that /usr/share/Typora-linux-x64/chrome-sandbox is owned by root and has mode 4755.
需要將Typora目錄下的chrome-sandbox文件設置成4755權限,並將他的所屬用戶和用戶組設置成root。
更改權限和所屬用戶及用戶組
chmod 4755 chrome-sandbox sudo chown root chrome-sandbox sudo chgrp root chrome-sandbox
-
再次運行,成功