Compilation and Installation
Procedure
- Use PuTTY to log in to the server as the root user.
- Go to the source package directory and decompress the source package.
cd /path/to/QDK && tar xvf v2.3.12.tar.gz
- Modify the installation script.
- Open the ./InstallToUbuntu.sh file.
vim ./InstallToUbuntu.sh
- Press i to enter the insert mode, comment out lines 9 and 10, and add line 11.
Before the modification:
9 apt-get update 10 apt-get install -y build-essential wget bsdmainutils curl python openssl rsync
After the modification:
9 #apt-get update 10 #apt-get install -y build-essential wget bsdmainutils curl python openssl rsync 11 yum install -y wget curl python openssl rsync
- Press Esc, type :wq!, and press Enter to save the file and exit.
- Open the ./InstallToUbuntu.sh file.
- Compile and install QDK.
./InstallToUbuntu.sh ./InstallToUbuntu.sh install
Parent topic: QDK 2.3.12 Porting Guide (Kylin V10)