Table of Contents |
---|
minLevel | 1 |
---|
maxLevel | 3 |
---|
outline | false |
---|
type | list |
---|
printable | false |
---|
|
1. System Requirements
First, confirm that your hardware is Phytium D2000/FT2000.
Operating System: Galaxy Kylin V10 (SP1) versions 2203 and 2303, also supported on ARM64 architecture.
Kernel: linux-5.4.18-53 and above.
Graphics:AMD Radeon
Storage:Minimum 8GB. Recommended 16GB or higher
2. Configure Installation Source And Certificates(Optional)
When installing OpenFDE for the first time, you will need to obtain the complete software source and configure the installation source and certificates.
Note: If this is not your first time installing OpenFDE, you can skip the "Configure Installation Source and Certificates" section and proceed directly to the Install OpenFDE
2.1 Install wget and gpg
Code Block |
---|
sudo apt-get install wget gpg |
2.2 Download the encryption key file from the official website and decrypt it locally
Code Block |
---|
wget -qO- http://openfde.com/keys/openfde.asc | gpg --dearmor > packages.openfde.gpg |
2.3 Copy the decrypted key file to the key folder of your local apt tool
Code Block |
---|
sudo install -D -o root -g root -m 644 packages.openfde.gpg /etc/apt/keyrings/packages.openfde.gpg |
2.4 Configure the software repository address for OpenFDE
Code Block |
---|
sudo echo \
"deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/packages.openfde.gpg] http://openfde.com/repos/ubuntu/ \
"$(. /etc/os-release && echo "$PROJECT_CODENAME")" main" | \
sudo tee /etc/apt/sources.list.d/openfde.list > /dev/null |
2.5 Delete the downloaded key file
Code Block |
---|
rm -f packages.openfde.gpg |
3. Install OpenFDE
Anchor |
---|
| install-openfde |
---|
| install-openfde |
---|
|
3.1 Update Software Source
Code Block |
---|
sudo apt-get update |
3.2 Install OpenFDE
Code Block |
---|
sudo apt-get install openfde |
4. Upgrade OpenFDE
Firstly update the software source.
Code Block |
---|
sudo apt-get update |
Upgrade OpenFDE to the latest version.
Code Block |
---|
sudo apt-get install openfde |