Linux安装运行Typora

心不动则不痛 提交于 2019-12-05 07:38:44
  1. 下载Typora

    wget https://typora.io/linux/Typora-linux-x64.tar.gz
  2. 解压

    tar -zxf Typora-linux-x64.tar.gz
  3. 运行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
  4. 再次运行,成功

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!