这篇文章主要介绍Linux下如何安装配置Typora,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
Typora是一款轻便简洁的Markdown编辑器,支持即时渲染技术,这也是与其他Markdown编辑器最显著的区别,将写作与预览窗口相结合,为用户呈现所见即所得的编辑模式。
下载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-sandboxsudo chown root chrome-sandboxsudo chgrp root chrome-sandbox
再次运行,成功
以上是“Linux下如何安装配置Typora”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注编程网行业资讯频道!