How to upgrade? #44
-
Hey team, I saw that the version 3.0 has been made available on the website. A huge congrats on that! I really appreciate the work you all have been putting in to make the OS awesome. I am currently using Lingmo 2.1. How can I upgrade to 3.0 without losing my data? Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
elysia-best
Mar 17, 2025
Replies: 1 comment 1 reply
-
For 3.0, you need to do some modification for your apt source! Here's a summarized step-by-step guide to update your software sources and add new Lingmo sources on a Debian-based system:
Summary of Commands: cat /etc/apt/sources.list
ls /etc/apt/sources.list.d
# Use 'rm' or a text editor to remove old Lingmo entries
echo 'deb https://packages.lingmo.org/lingmo helium main' | sudo tee /etc/apt/sources.list.d/lingmo.list
# or
# sudo bash -c "echo 'deb https://packages.lingmo.org/lingmo helium main' > /etc/apt/sources.list.d/lingmo.list"
wget -qO - https://packages.lingmo.org/lingmo/key/lingmo-key.gpg.key | gpg --dearmor -o lingmo-key.gpg
sudo mv lingmo-key.gpg /etc/apt/trusted.gpg.d/
sudo apt update
sudo apt upgrade |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
elysia-best
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For 3.0, you need to do some modification for your apt source!
Here's a summarized step-by-step guide to update your software sources and add new Lingmo sources on a Debian-based system:
/etc/apt/sources.list
or/etc/apt/sources.list.d/
that contain old Lingmo sources. You can userm
command for files or edit the files withnano
orvim
to remove the entries.