This repository contains a script to properly install and update Cursor IDE on Ubuntu 24.04 without relying on FUSE/libfuse. This is particularly important as using FUSE-based AppImages on Ubuntu 24.04 can potentially cause system issues.
- Uninstall Cursor (if previously installed already)
- Go to https://cursor.com/downloads
- Download the correct .deb package (tell ChatGPT or Google what processor you are running and which version you need)
- After the .deb package got downloaded completely, go run this command in the terminal:
cd ~/Downloads
sudo dpkg -i cursor-*.deb
sudo apt-get install -f -y
This makes the .deb version of cursor run without libfuse or fuse or anything like that.
Cursor's Linux version is distributed as an AppImage, which normally requires FUSE to run. However, Ubuntu 24.04 has made changes to how FUSE works, and installing it can potentially break your system. This script:
- Downloads the latest Cursor AppImage
- Extracts it (without requiring FUSE)
- Sets up proper permissions
- Creates a desktop shortcut
- Ubuntu 24.04
curl
(pre-installed on most Ubuntu systems)sudo
privileges (needed only for fixing sandbox permissions)
- Clone this repository or download the
install-cursor.sh
script - Make the script executable:
chmod +x install-cursor.sh
- Run the script:
./install-cursor.sh
The script will:
- Download the latest Cursor IDE
- Extract it to
~/squashfs-root
- Set appropriate permissions
- Create a desktop shortcut
To update to the latest version of Cursor, simply run the script again. It will download the newest version and update your existing installation.
If you encounter any issues:
- Ensure you have adequate permissions to execute the script
- Check that you have an internet connection to download the AppImage
- If you get errors about missing dependencies, install them using
apt
To uninstall Cursor installed with this method:
- Remove the extracted directory:
rm -rf ~/squashfs-root
- Remove the desktop shortcut:
rm ~/.local/share/applications/cursor.desktop
- Remove the downloaded AppImage:
rm ~/Applications/cursor-latest.AppImage
This script is provided as-is under the MIT License.
Created to help Ubuntu 24.04 users run Cursor IDE without the potential system issues caused by FUSE/libfuse.