Post

Cài đặt và Tạo Shortcut cho Mendeley Reference Manager (AppImage) trên Linux

Cài đặt và Tạo Shortcut cho Mendeley Reference Manager (AppImage) trên Linux

Trong bài viết này, mình sẽ hướng dẫn cách cài đặt Mendeley Reference Manager dạng AppImage trên Linux, sau đó tạo shortcut để hiển thị trong menu ứng dụng.

1. Tải Mendeley Reference Manager

Truy cập trang chính thức:

👉 Download Mendeley Reference Manager

File tải về có dạng:

1
2
3
mendeley-reference-manager-2.137.0-x86_64.AppImage


2. Di chuyển AppImage sang thư mục Applications

Tạo thư mục riêng để quản lý ứng dụng:

1
2
mkdir -p ~/Applications
mv ~/Downloads/mendeley-reference-manager-2.137.0-x86_64.AppImage ~/Applications/mendeley.AppImage

3. Cấp quyền thực thi

1
chmod +x ~/Applications/mendeley.AppImage

Cài thêm thư viện cần thiết cho AppImage:

1
sudo apt install libfuse2

4. Tạo shortcut trong menu ứng dụng

Tạo file .desktop:

1
vim ~/.local/share/applications/mendeley.desktop

Dán vào nội dung sau (chỉnh lại đường dẫn theo máy bạn):

1
2
3
4
5
6
7
[Desktop Entry]
Name=Mendeley Reference Manager
Exec=/home/dataguy/Applications/mendeley.AppImage --no-sandbox
Icon=/home/dataguy/Applications/mendeley.png
Type=Application
Categories=Office;
Terminal=false

Gợi ý: bạn có thể tải icon chính thức hoặc dùng icon .png bất kỳ, lưu tại ~/Applications/mendeley.png.


5. Kích hoạt shortcut

1
2
chmod +x ~/.local/share/applications/mendeley.desktop
update-desktop-database ~/.local/share/applications

Giờ bạn có thể mở menu ứng dụng và tìm Mendeley Reference Manager.

This post is licensed under CC BY 4.0 by the author.