Linux installation and operation Typora

  1. Download Typora

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

    tar -zxf Typora-linux-x64.tar.gz
  3. Run Typora

    ./Typora

    Error:

    [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 need to be in the directory chrome-sandbox file permissions set to 4755, he owned and set user and group to root.

    Change the permissions and your users and groups

    chmod 4755 chrome-sandbox
    sudo chown root chrome-sandbox
    sudo chgrp root chrome-sandbox
  4. Run again, success

Guess you like

Origin www.cnblogs.com/dagger9527/p/11914413.html