Linux Not Running
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:
- Right-click on the downloaded file location -> Open in terminal
- sudo dpkg -i ./LionoteInstall.deb
- 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:
- Right-click -> Properties -> Allow opening as an application
- 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:
- Open terminal and run:
lionote
command - 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
- Search online for installation methods for
libmpv.so.1
, install it, then re-run thelionote
command
sudo apt remove libmpv-dev libmpv2 sudo ln -s /usr/lib/x86_64-linux-gnu/libmpv.so /usr/lib/libmpv.so.1 lionote
- Open terminal and run:
.AppImage Format Runtime Issues, Crashes, or No Response
- This is usually caused by missing dependency libraries. Please:
- Right-click at the location of the LionoteNew.AppImage file -> Open in terminal, run:
./LionoteNew.AppImage
command - 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
- 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
- Right-click at the location of the LionoteNew.AppImage file -> Open in terminal, run: