Skip to content

Linux Not Running

Lionote

About 296 wordsLess than 1 minute

LinuxUbuntuCannot OpenCannot Run

2024-03-04

Linux Installation and Running

.deb Format

  • The deb format is suitable for Linux distributions that support deb packages, such as Ubuntu and Deepin
  • If your system has a deb package manager, you can install it directly by double-clicking
  • Installation via command line:
    1. Right-click on the downloaded file location -> Open in terminal
    2. sudo dpkg -i ./LionoteInstall.deb
    3. After installation, you can see the Lionote icon in the application panel

.AppImage Format

  • AppImage supports most Linux desktops and has better compatibility
  • No installation required, run directly:
    1. Right-click -> Properties -> Allow opening as an application
    2. Right-click -> Run or double-click to run

Runtime Issues

.deb Format Runtime Issues, Crashes, or No Response

  • This is usually caused by missing dependency libraries. Please:
    1. Open terminal and run: lionote command
    2. Check the error message, for example: lionote: error while loading shared libraries: libmpv.so.1: cannot open shared object file: No such file or directory
    3. Search online for installation methods for libmpv.so.1, install it, then re-run the lionote command
      sudo apt remove libmpv-dev libmpv2
      sudo ln -s /usr/lib/x86_64-linux-gnu/libmpv.so /usr/lib/libmpv.so.1
      lionote

.AppImage Format Runtime Issues, Crashes, or No Response

  • This is usually caused by missing dependency libraries. Please:
    1. Right-click at the location of the LionoteNew.AppImage file -> Open in terminal, run: ./LionoteNew.AppImage command
    2. Check the error message, for example: ./lionote: error while loading shared libraries: libffi.so.7: cannot open shared object file: No such file or directory
    3. Search online for installation methods for libffi.so.7, install it, then re-run the ./LionoteNew.AppImage command
      wget http://es.archive.ubuntu.com/ubuntu/pool/main/libf/libffi/libffi73.3-4amd64.deb
      sudo dpkg -i libffi73.3-4amd64.deb
      ./LionoteNew.AppImage
Contributors: Ray