mirror of
https://github.com/GXDE-OS/GXDE.git
synced 2026-08-06 14:43:56 +08:00
Compare commits
53
Commits
2024.09.24
...
2024.10.20
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b62bb30caa | ||
|
|
f9060bd8e5 | ||
|
|
8a7549b717 | ||
|
|
b9253b56d2 | ||
|
|
b6c425bb47 | ||
|
|
6e5aa6329d | ||
|
|
41af5d686b | ||
|
|
285e6e9b6a | ||
|
|
6a7562a5dd | ||
|
|
0f073670f2 | ||
|
|
e4224ecaaa | ||
|
|
7856dd97cf | ||
|
|
9af839e7de | ||
|
|
29f824d25b | ||
|
|
76b325bd20 | ||
|
|
d9b167f6a1 | ||
|
|
0b4da70106 | ||
|
|
699c348d33 | ||
|
|
5d9d688dfc | ||
|
|
52949f303e | ||
|
|
480ede0225 | ||
|
|
d8f2381d51 | ||
|
|
4714509948 | ||
|
|
cb791da7a7 | ||
|
|
d60747a5e7 | ||
|
|
962db0a0b0 | ||
|
|
5f4dafc817 | ||
|
|
5f7714a6c2 | ||
|
|
7a81a14647 | ||
|
|
a71814cba5 | ||
|
|
8cc2ed1323 | ||
|
|
5a1a2390d2 | ||
|
|
d21b5907d2 | ||
|
|
c59a837cec | ||
|
|
e450748e92 | ||
|
|
8393ff7d4e | ||
|
|
9174b9be73 | ||
|
|
8f6fd15352 | ||
|
|
a4068fbe0c | ||
|
|
8f0f54025a | ||
|
|
4344d04817 | ||
|
|
50573e6c9a | ||
|
|
469ad1e04b | ||
|
|
6a9e064959 | ||
|
|
c1424103b1 | ||
|
|
1b2d82297f | ||
|
|
5483b1c0c4 | ||
|
|
680ba19760 | ||
|
|
c29171afdc | ||
|
|
a0b56b85ff | ||
|
|
a329699fca | ||
|
|
8b7a318744 | ||
|
|
078ea70801 |
Executable
+3
@@ -0,0 +1,3 @@
|
||||
Package: *
|
||||
Pin: release n=bookworm-backports
|
||||
Pin-Priority: 500
|
||||
Executable
+296
@@ -0,0 +1,296 @@
|
||||
name: Building GXDE Package (Debian Backport)
|
||||
run-name: Building ${{ GITHUB.REPOSITORY }}
|
||||
|
||||
on:
|
||||
workflow_call:
|
||||
secrets:
|
||||
PASSWD:
|
||||
required: true
|
||||
USERS:
|
||||
required: true
|
||||
HOST:
|
||||
required: true
|
||||
UPATH:
|
||||
required: true
|
||||
UPROGRAM:
|
||||
required: true
|
||||
UPORT:
|
||||
required: true
|
||||
|
||||
env:
|
||||
REPOSITORY: https://github.com/GXDE-OS/GXDE
|
||||
BOTTLEPATH: system-bottle
|
||||
|
||||
jobs:
|
||||
i386:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Clone Repository To Get Script
|
||||
run: |
|
||||
git clone $REPOSITORY --depth=1
|
||||
mv $(basename $REPOSITORY)/* . -v
|
||||
mv $(basename $REPOSITORY)/.* . -v | true
|
||||
|
||||
- name: Configure Base System
|
||||
run: |
|
||||
bash .github/workflows/configure-building-enviroment-base-system.sh i386 bookworm $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian/ backport
|
||||
|
||||
- name: Building ${{ GITHUB.repository }}
|
||||
run: |
|
||||
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GO111MODULE=off dpkg-buildpackage -b
|
||||
|
||||
- name: Remove Debug Package
|
||||
run: |
|
||||
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh rm -rfv ../*dbg*.deb
|
||||
|
||||
- name: Pack tar
|
||||
run: |
|
||||
cd $BOTTLEPATH
|
||||
sudo tar -cvf ../deb-$(date +%s).tar *.deb
|
||||
|
||||
- name: Push
|
||||
env:
|
||||
UPASSWD: ${{ secrets.PASSWD }}
|
||||
UUSERS: ${{ secrets.USERS }}
|
||||
UHOST: ${{ secrets.HOST }}
|
||||
UPATH: ${{ secrets.UPATH }}
|
||||
UPROGRAM: ${{ secrets.UPROGRAM }}
|
||||
UPORT: ${{ secrets.UPORT }}
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install sshpass -y
|
||||
mkdir -p ~/.ssh/
|
||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
||||
tarName=$(ls | grep .tar | head -n 1)
|
||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM $UPATH/$tarName > /dev/null
|
||||
|
||||
amd64:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Clone Repository To Get Script
|
||||
run: |
|
||||
git clone $REPOSITORY --depth=1
|
||||
mv $(basename $REPOSITORY)/* . -v
|
||||
mv $(basename $REPOSITORY)/.* . -v | true
|
||||
|
||||
- name: Configure Base System
|
||||
run: |
|
||||
bash .github/workflows/configure-building-enviroment-base-system.sh amd64 bookworm $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian/ backport
|
||||
|
||||
- name: Building ${{ GITHUB.repository }}
|
||||
run: |
|
||||
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GO111MODULE=off dpkg-buildpackage -b
|
||||
|
||||
- name: Remove Debug Package
|
||||
run: |
|
||||
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh rm -rfv ../*dbg*.deb
|
||||
|
||||
- name: Pack tar
|
||||
run: |
|
||||
cd $BOTTLEPATH
|
||||
sudo tar -cvf ../deb-$(date +%s).tar *.deb
|
||||
|
||||
- name: Push
|
||||
env:
|
||||
UPASSWD: ${{ secrets.PASSWD }}
|
||||
UUSERS: ${{ secrets.USERS }}
|
||||
UHOST: ${{ secrets.HOST }}
|
||||
UPATH: ${{ secrets.UPATH }}
|
||||
UPROGRAM: ${{ secrets.UPROGRAM }}
|
||||
UPORT: ${{ secrets.UPORT }}
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install sshpass -y
|
||||
mkdir -p ~/.ssh/
|
||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
||||
tarName=$(ls | grep .tar | head -n 1)
|
||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM $UPATH/$tarName > /dev/null
|
||||
|
||||
arm64:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Clone Repository To Get Script
|
||||
run: |
|
||||
git clone $REPOSITORY --depth=1
|
||||
mv $(basename $REPOSITORY)/* . -v
|
||||
mv $(basename $REPOSITORY)/.* . -v | true
|
||||
|
||||
- name: Configure Base System
|
||||
run: |
|
||||
bash .github/workflows/configure-building-enviroment-base-system.sh arm64 bookworm $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian/ backport
|
||||
|
||||
- name: Building ${{ GITHUB.repository }}
|
||||
run: |
|
||||
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GO111MODULE=off dpkg-buildpackage -b
|
||||
|
||||
- name: Remove Debug Package
|
||||
run: |
|
||||
env env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh rm -rfv ../*dbg*.deb
|
||||
|
||||
- name: Pack tar
|
||||
run: |
|
||||
cd $BOTTLEPATH
|
||||
sudo tar -cvf ../deb-$(date +%s).tar *.deb
|
||||
|
||||
- name: Push
|
||||
env:
|
||||
UPASSWD: ${{ secrets.PASSWD }}
|
||||
UUSERS: ${{ secrets.USERS }}
|
||||
UHOST: ${{ secrets.HOST }}
|
||||
UPATH: ${{ secrets.UPATH }}
|
||||
UPROGRAM: ${{ secrets.UPROGRAM }}
|
||||
UPORT: ${{ secrets.UPORT }}
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install sshpass -y
|
||||
mkdir -p ~/.ssh/
|
||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
||||
tarName=$(ls | grep .tar | head -n 1)
|
||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM $UPATH/$tarName > /dev/null
|
||||
|
||||
|
||||
mips64:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Clone Repository To Get Script
|
||||
run: |
|
||||
git clone $REPOSITORY --depth=1
|
||||
mv $(basename $REPOSITORY)/* . -v
|
||||
mv $(basename $REPOSITORY)/.* . -v | true
|
||||
|
||||
- name: Configure Base System
|
||||
run: |
|
||||
bash .github/workflows/configure-building-enviroment-base-system.sh mips64el bookworm $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian/ backport
|
||||
|
||||
- name: Building ${{ GITHUB.repository }}
|
||||
run: |
|
||||
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GO111MODULE=off dpkg-buildpackage -b
|
||||
|
||||
- name: Remove Debug Package
|
||||
run: |
|
||||
env env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh rm -rfv ../*dbg*.deb
|
||||
|
||||
- name: Pack tar
|
||||
run: |
|
||||
cd $BOTTLEPATH
|
||||
sudo tar -cvf ../deb-$(date +%s).tar *.deb
|
||||
|
||||
- name: Push
|
||||
env:
|
||||
UPASSWD: ${{ secrets.PASSWD }}
|
||||
UUSERS: ${{ secrets.USERS }}
|
||||
UHOST: ${{ secrets.HOST }}
|
||||
UPATH: ${{ secrets.UPATH }}
|
||||
UPROGRAM: ${{ secrets.UPROGRAM }}
|
||||
UPORT: ${{ secrets.UPORT }}
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install sshpass -y
|
||||
mkdir -p ~/.ssh/
|
||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
||||
tarName=$(ls | grep .tar | head -n 1)
|
||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM $UPATH/$tarName > /dev/null
|
||||
|
||||
loong64:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Clone Repository To Get Script
|
||||
run: |
|
||||
#apt update
|
||||
#apt install sudo git -y
|
||||
git clone $REPOSITORY --depth=1
|
||||
mv $(basename $REPOSITORY)/* . -v
|
||||
mv $(basename $REPOSITORY)/.* . -v | true
|
||||
|
||||
- name: Configure Base System
|
||||
run: |
|
||||
bash .github/workflows/configure-building-enviroment-base-system.sh loong64 unstable $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian-ports/
|
||||
|
||||
- name: Building ${{ GITHUB.repository }}
|
||||
run: |
|
||||
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GO111MODULE=off dpkg-buildpackage -b
|
||||
|
||||
- name: Remove Debug Package
|
||||
run: |
|
||||
env env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh rm -rfv ../*dbg*.deb
|
||||
|
||||
- name: Pack tar
|
||||
run: |
|
||||
cd $BOTTLEPATH
|
||||
sudo tar -cvf ../deb-$(date +%s).tar *.deb
|
||||
|
||||
- name: Push
|
||||
env:
|
||||
UPASSWD: ${{ secrets.PASSWD }}
|
||||
UUSERS: ${{ secrets.USERS }}
|
||||
UHOST: ${{ secrets.HOST }}
|
||||
UPATH: ${{ secrets.UPATH }}
|
||||
UPROGRAM: ${{ secrets.UPROGRAM }}
|
||||
UPORT: ${{ secrets.UPORT }}
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install sshpass -y
|
||||
mkdir -p ~/.ssh/
|
||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
||||
tarName=$(ls | grep .tar | head -n 1)
|
||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM $UPATH/$tarName > /dev/null
|
||||
|
||||
|
||||
|
||||
riscv64:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Clone Repository To Get Script
|
||||
run: |
|
||||
#apt update
|
||||
#apt install sudo git -y
|
||||
git clone $REPOSITORY --depth=1
|
||||
mv $(basename $REPOSITORY)/* . -v
|
||||
mv $(basename $REPOSITORY)/.* . -v | true
|
||||
|
||||
- name: Configure Base System
|
||||
run: |
|
||||
bash .github/workflows/configure-building-enviroment-base-system.sh riscv64 sid $REPOSITORY https://github.com/$GITHUB_REPOSITORY
|
||||
|
||||
- name: Building ${{ GITHUB.repository }}
|
||||
run: |
|
||||
set +e
|
||||
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GO111MODULE=off dpkg-buildpackage -b
|
||||
|
||||
- name: Remove Debug Package
|
||||
run: |
|
||||
set +e
|
||||
env env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh rm -rfv ../*dbg*.deb
|
||||
|
||||
- name: Pack tar
|
||||
run: |
|
||||
set +e
|
||||
cd $BOTTLEPATH
|
||||
sudo tar -cvf ../deb-$(date +%s).tar *.deb
|
||||
|
||||
- name: Push
|
||||
env:
|
||||
UPASSWD: ${{ secrets.PASSWD }}
|
||||
UUSERS: ${{ secrets.USERS }}
|
||||
UHOST: ${{ secrets.HOST }}
|
||||
UPATH: ${{ secrets.UPATH }}
|
||||
UPROGRAM: ${{ secrets.UPROGRAM }}
|
||||
UPORT: ${{ secrets.UPORT }}
|
||||
run: |
|
||||
set +e
|
||||
sudo apt update
|
||||
sudo apt install sshpass -y
|
||||
mkdir -p ~/.ssh/
|
||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
||||
tarName=$(ls | grep .tar | head -n 1)
|
||||
if [[ $tarName != "" ]]; then
|
||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH > /dev/null
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM $UPATH/$tarName > /dev/null
|
||||
fi
|
||||
|
||||
|
||||
@@ -63,9 +63,9 @@ jobs:
|
||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
||||
tarName=$(ls | grep .tar | head -n 1)
|
||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM $UPATH/$tarName > /dev/null
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM tianlu $UPATH/$tarName > /dev/null
|
||||
|
||||
amd64:
|
||||
amd64-Debian12:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Clone Repository To Get Script
|
||||
@@ -106,10 +106,11 @@ jobs:
|
||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
||||
tarName=$(ls | grep .tar | head -n 1)
|
||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM $UPATH/$tarName > /dev/null
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM tianlu $UPATH/$tarName > /dev/null
|
||||
|
||||
arm64:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-24.04
|
||||
#runs-on: self-hosted
|
||||
steps:
|
||||
- name: Clone Repository To Get Script
|
||||
run: |
|
||||
@@ -149,11 +150,11 @@ jobs:
|
||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
||||
tarName=$(ls | grep .tar | head -n 1)
|
||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM $UPATH/$tarName > /dev/null
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM tianlu $UPATH/$tarName > /dev/null
|
||||
|
||||
|
||||
mips64:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Clone Repository To Get Script
|
||||
run: |
|
||||
@@ -193,7 +194,7 @@ jobs:
|
||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
||||
tarName=$(ls | grep .tar | head -n 1)
|
||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM $UPATH/$tarName > /dev/null
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM tianlu $UPATH/$tarName > /dev/null
|
||||
|
||||
loong64:
|
||||
runs-on: ubuntu-24.04
|
||||
@@ -208,7 +209,7 @@ jobs:
|
||||
|
||||
- name: Configure Base System
|
||||
run: |
|
||||
bash .github/workflows/configure-building-enviroment-base-system.sh loong64 unstable $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://mirror.sjtu.edu.cn/debian-ports/
|
||||
bash .github/workflows/configure-building-enviroment-base-system.sh loong64 unstable $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian-ports/
|
||||
|
||||
- name: Building ${{ GITHUB.repository }}
|
||||
run: |
|
||||
@@ -238,5 +239,103 @@ jobs:
|
||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
||||
tarName=$(ls | grep .tar | head -n 1)
|
||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM $UPATH/$tarName > /dev/null
|
||||
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM tianlu $UPATH/$tarName > /dev/null
|
||||
|
||||
|
||||
|
||||
riscv64:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Clone Repository To Get Script
|
||||
run: |
|
||||
#apt update
|
||||
#apt install sudo git -y
|
||||
git clone $REPOSITORY --depth=1
|
||||
mv $(basename $REPOSITORY)/* . -v
|
||||
mv $(basename $REPOSITORY)/.* . -v | true
|
||||
|
||||
- name: Configure Base System
|
||||
run: |
|
||||
bash .github/workflows/configure-building-enviroment-base-system.sh riscv64 sid $REPOSITORY https://github.com/$GITHUB_REPOSITORY
|
||||
|
||||
- name: Building ${{ GITHUB.repository }}
|
||||
run: |
|
||||
set +e
|
||||
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GO111MODULE=off dpkg-buildpackage -b
|
||||
|
||||
- name: Remove Debug Package
|
||||
run: |
|
||||
set +e
|
||||
env env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh rm -rfv ../*dbg*.deb
|
||||
|
||||
- name: Pack tar
|
||||
run: |
|
||||
set +e
|
||||
cd $BOTTLEPATH
|
||||
sudo tar -cvf ../deb-$(date +%s).tar *.deb
|
||||
|
||||
- name: Push
|
||||
env:
|
||||
UPASSWD: ${{ secrets.PASSWD }}
|
||||
UUSERS: ${{ secrets.USERS }}
|
||||
UHOST: ${{ secrets.HOST }}
|
||||
UPATH: ${{ secrets.UPATH }}
|
||||
UPROGRAM: ${{ secrets.UPROGRAM }}
|
||||
UPORT: ${{ secrets.UPORT }}
|
||||
run: |
|
||||
set +e
|
||||
sudo apt update
|
||||
sudo apt install sshpass -y
|
||||
mkdir -p ~/.ssh/
|
||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
||||
tarName=$(ls | grep .tar | head -n 1)
|
||||
if [[ $tarName != "" ]]; then
|
||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH > /dev/null
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM tianlu $UPATH/$tarName > /dev/null
|
||||
fi
|
||||
|
||||
amd64-ubuntu24:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Clone Repository To Get Script
|
||||
run: |
|
||||
git clone $REPOSITORY --depth=1
|
||||
mv $(basename $REPOSITORY)/* . -v
|
||||
mv $(basename $REPOSITORY)/.* . -v | true
|
||||
|
||||
- name: Configure Base System
|
||||
run: |
|
||||
git clone https://github.com/$GITHUB_REPOSITORY
|
||||
cd $(basename $GITHUB_REPOSITORY)
|
||||
sudo bash ../.github/workflows/configure-building-enviroment.sh
|
||||
|
||||
- name: Building ${{ GITHUB.repository }}
|
||||
run: |
|
||||
cd $(basename $GITHUB_REPOSITORY)
|
||||
env GO111MODULE=off dpkg-buildpackage -b
|
||||
|
||||
- name: Remove Debug Package
|
||||
run: |
|
||||
rm -rfv *dbg*.deb
|
||||
|
||||
- name: Pack tar
|
||||
run: |
|
||||
sudo tar -cvf deb-$(date +%s).tar *.deb
|
||||
|
||||
- name: Push
|
||||
env:
|
||||
UPASSWD: ${{ secrets.PASSWD }}
|
||||
UUSERS: ${{ secrets.USERS }}
|
||||
UHOST: ${{ secrets.HOST }}
|
||||
UPATH: ${{ secrets.UPATH }}
|
||||
UPROGRAM: ${{ secrets.UPROGRAM }}
|
||||
UPORT: ${{ secrets.UPORT }}
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install sshpass -y
|
||||
mkdir -p ~/.ssh/
|
||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
||||
tarName=$(ls | grep .tar | head -n 1)
|
||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM hetao $UPATH/$tarName > /dev/null
|
||||
|
||||
|
||||
@@ -36,12 +36,17 @@ if [[ $? != 0 ]] && [[ $1 == loong64 ]]; then
|
||||
sudo mv squashfs-root $bottlePath -v
|
||||
fi
|
||||
sudo bash .github/workflows/pardus-chroot $bottlePath
|
||||
if [[ $6 == "backport" ]]; then
|
||||
sudo cp -rv .github/workflows/debian-backports.list $bottlePath/etc/apt/sources.list.d
|
||||
sudo mkdir -p $bottlePath/etc/apt/preferences.d/
|
||||
sudo cp -rv .github/workflows/90bookworm-backports $bottlePath/etc/apt/preferences.d/
|
||||
fi
|
||||
# 配置 git
|
||||
sudo chroot $bottlePath apt update
|
||||
sudo chroot $bottlePath apt full-upgrade -y
|
||||
sudo chroot $bottlePath apt install git -y
|
||||
sudo chroot $bottlePath git clone $3 --depth=1
|
||||
sudo chroot $bottlePath git clone $4 --depth=1
|
||||
sudo chroot $bottlePath git clone $3 #--depth=1
|
||||
sudo chroot $bottlePath git clone $4 #--depth=1
|
||||
sudo mv $bottlePath/$(basename $3)/.github/workflows/* $bottlePath/$(basename $4)/.github/workflows -v
|
||||
# 修改版本号
|
||||
#sudo sed -i "s/) UNRELEASED; urgency=medium/~$2) UNRELEASED; urgency=medium/g" $bottlePath/deep-wine-runner-qemu-system/debian/changelog
|
||||
|
||||
@@ -15,10 +15,16 @@ export DEBIAN_FRONTEND=noninteractive # 防止卡 tzdate
|
||||
# echo "deb-src http://deb.debian.org/debian sid main" > /etc/apt/sources.list.d/debian-sources.list
|
||||
#fi
|
||||
# 写入 GXDE 源
|
||||
echo "deb [trusted=true] https://repo1.gxde.top/gxde-os/tianlu ./" >> /etc/apt/sources.list.d/gxde-os.list
|
||||
echo "deb [trusted=true] https://repo1.gxde.top/gxde-os/bixie ./" >> /etc/apt/sources.list.d/gxde-os.list
|
||||
if [[ $1 == "loong64" ]]; then
|
||||
echo "deb [trusted=true] http://mirror.sjtu.edu.cn/debian-ports unreleased main" > /etc/apt/sources.list.d/debian-unreleased.list
|
||||
# 判断是否是 Ubuntu
|
||||
isUbuntu=$(cat /etc/os-release | grep Ubuntu | wc -l)
|
||||
if [[ $isUbuntu -gt 1 ]]; then
|
||||
echo "deb [trusted=true] https://repo1.gxde.top/gxde-os/hetao ./" >> /etc/apt/sources.list.d/gxde-os.list
|
||||
else
|
||||
echo "deb [trusted=true] https://repo1.gxde.top/gxde-os/tianlu ./" >> /etc/apt/sources.list.d/gxde-os.list
|
||||
echo "deb [trusted=true] https://repo1.gxde.top/gxde-os/bixie ./" >> /etc/apt/sources.list.d/gxde-os.list
|
||||
fi
|
||||
if [[ $(dpkg --print-architecture) == "loong64" ]]; then
|
||||
echo "deb [trusted=true] http://deb.debian.org/debian-ports unreleased main" > /etc/apt/sources.list.d/debian-unreleased.list
|
||||
fi
|
||||
for i in {1..8};
|
||||
do
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware
|
||||
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware
|
||||
@@ -1,47 +1,55 @@
|
||||

|
||||
<h1 align="center">GXDE</h1>
|
||||
<hr>
|
||||
<a href='https://gitee.com/GXDE-OS/GXDE/stargazers'><img src='https://gitee.com/GXDE-OS/GXDE/badge/star.svg?theme=dark' alt='star'></img></a>
|
||||
<a href='https://gitee.com/GXDE-OS/GXDE/members'><img src='https://gitee.com/GXDE-OS/GXDE/badge/fork.svg?theme=dark' alt='fork'></img></a>
|
||||
|
||||
**[中文](./README.zh.md)**
|
||||
|
||||
## System Installation
|
||||
> Currently, ISO supports amd64, loong64
|
||||
## Welcome to GXDE OS Community
|
||||
|
||||
123pan: https://www.123pan.com/s/pDSKVv-4XIWv.html
|
||||
huang111: https://pan.huang1111.cn/s/laonjFL
|
||||
Sourceforge: https://sourceforge.net/projects/gxde-os/files
|
||||
**[中文](/README.zh.md)**
|
||||
|
||||
GXDE OS is an Debian based Linux distro featuring GXDE Desktop Environment. It offers an elegant, beautifu, light weight and out-of-the-box experience.
|
||||
|
||||
### Classic and Extended Deepin DE Experience
|
||||
|
||||
GXDE Desktop, rebirth from the deepin 15 era, not only brings back the classic experience but also introduces a range of extended components, experience enhancements, and bug fixes. It offers both familiarity and innovation, ensuring a smoother and more versatile user experience.
|
||||
|
||||
GXDE stands for Gorgeous eXtended Deepin Environment
|
||||
|
||||
### Various Components and Experiences
|
||||
|
||||
GXDE OS integrates several community open-source projects, including a top bar, global menu, Spark App Store, AmberCE compatibility environment, and fantascene dynamic wallpapers. It supports the deepin Linyaps package too.
|
||||
|
||||
### One-Click App Installation without typing commands.
|
||||
|
||||
[Spark APP Store](https://gitee.com/spark-store-project/) is built in with GXDE OS, enabling users to effortlessly discover and install essential applications without needing to use the command line.
|
||||
|
||||
Also, simply replace apt with aptss will `apt` with `aptss` command can boost your download speed.
|
||||
|
||||
**For installation methods, please refer to: [Installation Guide](./docs/install/Install.md)**
|
||||
|
||||
**GXDE is still not perfect; please ensure to check the [FAQ](./docs/faq/FAQ.md) before installation. Solution like Nvidia graphic card installing guide is included. **
|
||||
|
||||
Users with Legacy boot should select the Debian installer in the advanced options during installation.
|
||||
|
||||
Please Click the Star in the Upper Right Corner, Your Support is Our Greatest Motivation
|
||||
|
||||
## Introduction
|
||||
|
||||
For many users, Deepin 15 is still a classic version, but its underlying system is quite outdated (Debian 9) and cannot run new programs. To solve this issue, GXDE was created based on an updated foundation, allowing DDE 15 to return to people's attention.
|
||||
|
||||
(GXDE stands for Gorgeous eXtended Deepin Environment)
|
||||
### User Group
|
||||
<center><img src=new-logo-long.png width=300/></center>
|
||||
|
||||
QQ Group: 881201853
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
## System Installation
|
||||
> Currently, ISO supports amd64, arm64
|
||||
|
||||

|
||||
|
||||

|
||||
Please check https://www.gxde.org/en/install/
|
||||
|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## Other Projects
|
||||
Deepin: https://github.com/linuxdeepin/
|
||||
@@ -54,7 +62,7 @@ Deepin Community Live CD: https://gitee.com/gfdgd-xi/deepin-community-live-cd
|
||||
Heartfelt thanks to the [Project Spark/Spark App Store](https://gitee.com/spark-store-project/) for providing resources and services, allowing GXDE to achieve a better experience.
|
||||
<img src="spark-store.svg" width="250" />
|
||||
|
||||
You can use `aptss` instead of the `apt` command for multi-threaded download acceleration, enhancing download speed and stability.
|
||||
|
||||
|
||||
This project also utilizes the following listed projects, and heartfelt thanks to the developers and maintainers of these projects:
|
||||
Music Plugin: https://github.com/SeptemberHX/dde-mpris2-plugin
|
||||
|
||||
+33
-33
@@ -1,50 +1,52 @@
|
||||

|
||||
<h1 align="center">GXDE</h1>
|
||||
<center><img src=new-logo-long.png width=300/></center>
|
||||
<hr>
|
||||
<a href='https://gitee.com/GXDE-OS/GXDE/stargazers'><img src='https://gitee.com/GXDE-OS/GXDE/badge/star.svg?theme=dark' alt='star'></img></a>
|
||||
<a href='https://gitee.com/GXDE-OS/GXDE/members'><img src='https://gitee.com/GXDE-OS/GXDE/badge/fork.svg?theme=dark' alt='fork'></img></a>
|
||||
|
||||
**[English](./README.md)**
|
||||
|
||||
## 系统安装
|
||||
> 目前 ISO 支持 amd64、loong64
|
||||
|
||||
123盘:https://www.123pan.com/s/pDSKVv-4XIWv.html
|
||||
huang111:https://pan.huang1111.cn/s/laonjFL
|
||||
Sourceforge:https://sourceforge.net/projects/gxde-os/files
|
||||
|
||||
**安装方法请参考:[安装指南](./docs/install/Install.zh.md)**
|
||||
|
||||
**GXDE 仍不完美,请在安装前务必确认 [常见问题](./docs/faq/FAQ.zh.md) 中的事项,包括了 Nvidia 显卡驱动安装指南等**
|
||||
|
||||
Legacy 启动的用户请在安装时选中 高级选项 中的Debian安装器进行安装
|
||||
|
||||
欢迎点右上角Star,您的肯定是我们的最大动力
|
||||
|
||||
## 介绍
|
||||
|
||||
|
||||
对于许多用户来讲,deepin 15 依旧是非常经典的版本,但是因为底层已经非常老旧(Debian 9)以至于不能运行新的程序,所以为了解决这个问题,基于更新底层的 GXDE 就出现了以便让 DDE 15 能重回人们的视野
|
||||
**[English](/README.md)**
|
||||
|
||||
|
||||
(GXDE 全称为 Gorgeous eXtended Deepin Environment)
|
||||
## 简介
|
||||
|
||||
GXDE OS 是一个基于 Debian 的 Linux 发行版,采用 GXDE 桌面环境。它提供了优雅、美观、轻量化的开箱即用体验。
|
||||
|
||||
### 经典且扩展的 deepin 桌面体验
|
||||
|
||||
GXDE 桌面环境源自 deepin 15 时代的重生,不仅带回了经典体验,还引入了多种多样的扩展组件、体验优化和问题修复。它兼具经典与创新,确保了更流畅且更丰富的用户体验。
|
||||
|
||||
GXDE (Gorgeous eXtended Deepin Environment)
|
||||
|
||||
### 多种多样的组件和体验
|
||||
|
||||
GXDE OS 集成了多个社区的开源项目,包括顶栏、全局菜单、Spark 应用商店、AmberCE 兼容环境和 Fantascene 动态壁纸。它还支持 deepin Linyaps 包。
|
||||
|
||||
### 一键安装应用程序,无需输入命令
|
||||
|
||||
GXDE OS 内置 [星火应用商店](https://gitee.com/spark-store-project/),使用户能够轻松发现和安装所需应用程序,而无需使用命令行。
|
||||
|
||||
此外,只需将 `apt` 替换为 `aptss`,即可加速下载速度。
|
||||
|
||||
### 沟通渠道
|
||||
|
||||
QQ 群:881201853
|
||||
|
||||

|
||||
请点击右上角的Star,您的支持是我们最大的动力。
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
## 安装
|
||||
|
||||

|
||||
请查看 https://www.gxde.org/install/install
|
||||
|
||||

|
||||

|
||||
|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
|
||||
## 其它项目
|
||||
@@ -58,8 +60,6 @@ Deepin Community Live CD:https://gitee.com/gfdgd-xi/deepin-community-live-cd
|
||||
由衷的感谢[星火计划/星火应用商店](https://gitee.com/spark-store-project/)提供的资源和服务,使 GXDE 可以获得更好的体验
|
||||
<img src="spark-store.svg" width="250" />
|
||||
|
||||
您可使用`aptss`替换`apt`命令以使用多线加速下载,提升下载速度和提升稳定性
|
||||
|
||||
|
||||
同时本项目也使用了以下列出的项目,对以下项目的开发者与维护者献出衷心的感谢:
|
||||
音乐插件:https://github.com/SeptemberHX/dde-mpris2-plugin
|
||||
|
||||
Vendored
+15
-3
@@ -1,8 +1,20 @@
|
||||
gxde (2024.09.24) UNRELEASED; urgency=medium
|
||||
gxde (2024.10.20) UNRELEASED; urgency=medium
|
||||
|
||||
* add 15.14 conponents dependencies
|
||||
* Add package: gxde-boot-maker
|
||||
* Add package : system-config-printer
|
||||
* Add package : deepin-clone
|
||||
* Add package: deepin-system-monitor
|
||||
* Change package: deepin-movie --> gxde-movie
|
||||
* Change package: gxde-download --> gxde-downloader
|
||||
|
||||
-- shenmo <shenmo@spark-app.store> Sun, 01 Sep 2024 08:27:49 +0800
|
||||
-- shenmo <shenmo@spark-app.store> Fri, 04 Oct 2024 09:22:50 +0800
|
||||
|
||||
gxde (2024.10.01) UNRELEASED; urgency=medium
|
||||
|
||||
* fix 15.14 conponents dependencies
|
||||
*
|
||||
|
||||
-- gfdgd_xi <3025613752@qq.com> Sat, 05 Oct 2024 13:39:12 +0800
|
||||
|
||||
gxde (2024.09.01) UNRELEASED; urgency=medium
|
||||
|
||||
|
||||
Vendored
+34
-15
@@ -17,24 +17,50 @@ Depends: ${misc:Depends},
|
||||
gxde-image-viewer,
|
||||
gxde-icon-theme,
|
||||
gxde-sea-icon-theme,
|
||||
gxde-download,
|
||||
gxde-ocr,
|
||||
gxde-music,
|
||||
gxde-picker,
|
||||
gxde-font-installer,
|
||||
deepin-movie,
|
||||
dde-requ,
|
||||
gxde-movie,
|
||||
gxde-quick-hash,
|
||||
gxde-sendbylan,
|
||||
gxde-dict,
|
||||
gxde-system-assistant,
|
||||
spark-store | aptss
|
||||
|
||||
spark-store | aptss,
|
||||
gxde-boot-maker,
|
||||
deepin-clone,
|
||||
system-config-printer,
|
||||
deepin-system-monitor,
|
||||
gxde-downloader
|
||||
Description: GXDE New Desktop Environment Extra - Next
|
||||
This is a meta package depends GXDE New Desktop Envrionment Extra.
|
||||
.
|
||||
You can safety remove it after installed.
|
||||
|
||||
Package: gxde-desktop-android
|
||||
Architecture: all
|
||||
Depends:
|
||||
${misc:Depends},
|
||||
gxde-daemon,
|
||||
gxde-desktop,
|
||||
Recommends:
|
||||
gxde-desktop-extra
|
||||
Conflicts:
|
||||
plymouth-theme-gxde-logo,
|
||||
linux-kernel-gxde-i386,
|
||||
linux-kernel-oldstable-gxde-i386,
|
||||
linux-kernel-gxde-amd64,
|
||||
linux-kernel-oldstable-gxde-amd64,
|
||||
linux-kernel-gxde-arm64,
|
||||
linux-kernel-oldstable-gxde-arm64,
|
||||
linux-kernel-gxde-mips64el,
|
||||
linux-kernel-oldstable-gxde-mips64el,
|
||||
linux-kernel-gxde-loong64,
|
||||
linux-kernel-oldstable-gxde-loong64,
|
||||
Description: GXDE New Desktop Environment For PRoot - Next
|
||||
This is a meta package depends GXDE New Desktop Envrionment in Android PRoot.
|
||||
.
|
||||
|
||||
Package: gxde-desktop
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends},
|
||||
@@ -51,15 +77,14 @@ Depends: ${misc:Depends},
|
||||
eject,
|
||||
gxde-wallpapers,
|
||||
fonts-noto,
|
||||
dde-kwin,
|
||||
gxde-kwin | dde-kwin,
|
||||
deepin-screensaver,
|
||||
gxde-default-settings,
|
||||
gxde-shell-tools
|
||||
Recommends:
|
||||
gxde-desktop-extra,
|
||||
file-roller,
|
||||
gksu,
|
||||
gxde-editor,
|
||||
gxde-system-monitor,
|
||||
pppoe,
|
||||
gvfs-fuse,
|
||||
smbclient,
|
||||
@@ -93,15 +118,12 @@ Recommends:
|
||||
libflashplugin-pepper,
|
||||
miraclecast,
|
||||
x-display-manager,
|
||||
deepin-screenshot,
|
||||
gxde-image-viewer,
|
||||
dde-calendar,
|
||||
gxde-calculator,
|
||||
gxde-voice-recorder,
|
||||
deepin-screen-recorder,
|
||||
deepin-font-installer,
|
||||
warm-sched,
|
||||
spark-deepin-wine-runner,
|
||||
cheese,
|
||||
gxde-top-panel,
|
||||
plank,
|
||||
@@ -109,10 +131,7 @@ Recommends:
|
||||
tela-grub2-themes,
|
||||
plymouth-theme-gxde-logo,
|
||||
fcitx5,
|
||||
fcitx5-table,
|
||||
gxde-shell-tools
|
||||
|
||||
|
||||
fcitx5-table
|
||||
Conflicts:
|
||||
dde-control-center(<< 2.90.5),
|
||||
deepin-desktop-environment-desktop,
|
||||
|
||||
Vendored
-16
@@ -1,16 +0,0 @@
|
||||
Package: debiandde
|
||||
Source: gxde
|
||||
Version: 15.11~2024.03.02
|
||||
Architecture: all
|
||||
Maintainer: gfdgd xi <3025613752@qq.com>, LinuxDeepin Project <linuxdeepin@linuxdeepin.com>
|
||||
Installed-Size: 8
|
||||
Depends: gxde-desktop, deepin-desktop-base, dde-desktop, dde-dock, dde-control-center (>> 2.90.5), dde-launcher, startdde, dde-session-ui, deepin-artwork, dde-file-manager, dde-qt5integration, eject, debian-dde-wallpapers, fonts-noto, dde-kwin, deepin-screensaver
|
||||
Recommends: file-roller, deepin-manual, dde-introduction, deepin-appstore, gksu, deepin-editor, deepin-system-monitor, pppoe, gvfs-fuse, smbclient, python-smbc, cups-filters, printer-driver-all, foomatic-db-compressed-ppds, foomatic-db-engine, openprinting-ppds, libsane-hpaio, linux-firmware, wireless-tools, deepin-wine-uninstaller:i386, ttf-deepin-opensymbol, deepin-terminal, deepin-feedback, printer-driver-hpcups, printer-driver-hpijs, libmtp-runtime, samsung-print, open-vm-tools-desktop, open-vm-tools, usbmuxd, ipheth-utils, libimobiledevice-dev, libimobiledevice-utils, dnsutils, libfile-mimeinfo-perl, deepin-shortcut-viewer, crda, network-manager-integration-plugins, libtxc-dxtn-s2tc0 | libtxc-dxtn-s2tc, libflashplugin-pepper, miraclecast, x-display-manager, deepin-screenshot, deepin-music, deepin-image-viewer, dde-calendar, deepin-calculator, deepin-voice-recorder, deepin-screen-recorder, deepin-graphics-driver-manager, deepin-font-installer, warm-sched, uengine, spark-deepin-wine-runner, cheese, gxde-top-panel, plank
|
||||
Conflicts: dde-control-center (<< 2.90.5), deepin-desktop-environment-desktop, deepin-desktop-environment-dock, deepin-desktop-environment-launcher
|
||||
Section: metapackages
|
||||
Priority: extra
|
||||
Homepage: http://www.gfdgdxi.top
|
||||
Description: GXDE New Desktop Environment - Next
|
||||
This is a meta package depends GXDE New Desktop Envrionment.
|
||||
.
|
||||
You can safety remove it after installed.
|
||||
Vendored
-2
@@ -1,2 +0,0 @@
|
||||
9993a1134f954d4357933569fb371290 usr/share/doc/debiandde/changelog.gz
|
||||
bec7ea4b5be6704571e6e67b05b81b6a usr/share/doc/debiandde/copyright
|
||||
Binary file not shown.
@@ -1,24 +0,0 @@
|
||||
Format: http://dep.debian.net/deps/dep5
|
||||
Upstream-Name: dde-next
|
||||
|
||||
Files: *
|
||||
Copyright: 2012 Deepin.Inc
|
||||
License: GPL-2+
|
||||
This package is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
.
|
||||
This package is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
.
|
||||
On Debian systems, the complete text of the GNU General
|
||||
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
|
||||
|
||||
# Please also look if there are files or directories which have a
|
||||
# different copyright/license attached and list them here.
|
||||
+28
-18
@@ -6,23 +6,17 @@ You can track our development progress at https://gitee.com/GXDE-OS/GXDE/board
|
||||
|
||||
**[中文](./FAQ.zh.md)**
|
||||
|
||||
---
|
||||
|
||||
Q1: I am using an old computer/virtual machine that requires Legacy BIOS booting, but I encounter a grub installation failure when installing with the GXDE installation disk.
|
||||
|
||||
A1: For ISO versions 15.13 and below, Legacy BIOS currently only supports installation using the Debian installer. Select "Advanced options" on the boot screen and then choose "Install."
|
||||
|
||||
A1: This issue will be resolved in version 15.14.
|
||||
|
||||
---
|
||||
|
||||
Q2: I have installed Debian 12/I am using Debian 12 on Arm/i386/mips64/loong64 architecture. How can I install GXDE?
|
||||
Q1: I have installed Debian 12/I am using Debian 12 on Arm/i386/mips64/loong64 architecture. How can I install GXDE?
|
||||
|
||||
A2: Install GXDE by adding repositories.
|
||||
A1: Install GXDE by adding repositories.
|
||||
|
||||
Repository installation method:
|
||||
|
||||
Download the deb file and install it from https://pan.huang1111.cn/s/k2nRvuB.
|
||||
Download the deb file and install it from https://repo-gxde.gfdgdxi.top/gxde-os/bixie/g/gxde-source/
|
||||
|
||||
After installation, run:
|
||||
|
||||
@@ -36,26 +30,42 @@ sudo aptss install gxde-testing-source -y
|
||||
sudo aptss install gxde-desktop gxde-desktop-extra -y
|
||||
|
||||
```
|
||||
|
||||
**There are potential conflict between GXDE and KDE. Don't install them both or maybe something will crash**
|
||||
---
|
||||
|
||||
|
||||
Q3: How to create a bootable disk?
|
||||
Q2: How to create a bootable disk?
|
||||
|
||||
A3: For Legacy boot, it is recommended to use Rufus in DD mode. For EFI, you can use the [Deepin Boot Maker](https://www.deepin.org/zh/original/deepin-boot-maker/).
|
||||
A2: You can use the [Deepin Boot Maker](https://www.deepin.org/zh/original/deepin-boot-maker/).
|
||||
|
||||
|
||||
---
|
||||
|
||||
Q4: NVIDIA driver installation failed by using `sudo aptss install nvidia-driver`
|
||||
Q3: NVIDIA driver installation failed by using `sudo aptss install nvidia-driver`
|
||||
|
||||
A4: Please manually install the proprietary driver or install the package `linux-kernel-oldstable-gxde-amd64` and boot with this kernel to reinstall.
|
||||
A3: Please manually install the proprietary driver or install the package `linux-kernel-oldstable-gxde-amd64` and boot with this kernel to reinstall.
|
||||
|
||||
--
|
||||
|
||||
Q5: Intel/Crab network card cannot enable wireless after installation.
|
||||
|
||||
A5: Run sudo aptss install firmware-iwlwifi firmware-realtek -y.
|
||||
---
|
||||
|
||||
A5: This issue will be resolved in version 15.14.
|
||||
Q4: What is beta testing? How can I join the beta test?
|
||||
|
||||
A4: The latest development progress will be included in the beta test. If you want to experience the latest content, you can join the beta, but it is also unstable. It is recommended that users with some experience join.
|
||||
|
||||
A4: Starting from version 15.14, you can join the beta test with one click in the Control Center. For details, see: https://www.bilibili.com/video/BV1FgsvenEjq
|
||||
|
||||
A4: Please join our QQ Group to feedback: 881201853
|
||||
|
||||
---
|
||||
|
||||
Q5: I want to develop GXDE-style applications. How do I do that?
|
||||
|
||||
A5: Bash/Python script-based applications can use [Garma](https://gitee.com/GXDE-OS/garma). For detailed usage, see: https://help.gnome.org/users/zenity/stable/
|
||||
|
||||
A5: For native development, please use Qt/Dtk2. Related code is as follows:
|
||||
|
||||
Available feature list: https://gitee.com/GXDE-OS/dtk5core/tree/master/src
|
||||
|
||||
Available widget list: https://gitee.com/GXDE-OS/dtk2widget/tree/master/src/widgets
|
||||
|
||||
|
||||
+29
-17
@@ -6,23 +6,17 @@
|
||||
|
||||
**[English](./FAQ.md)**
|
||||
|
||||
---
|
||||
|
||||
Q1: 我正在使用古老的电脑/虚拟机,需要使用 Legacy BIOS 启动,而使用 GXDE 安装盘进行安装时报错grub安装失败
|
||||
|
||||
A1: 对于 15.13 及以下版本的ISO, Legacy BIOS 暂时只支持用Debian安装器进行安装,在引导界面选择Advanced options后选择Install进行安装
|
||||
|
||||
A1: 此问题将会在 15.14 解决
|
||||
|
||||
---
|
||||
|
||||
Q2: 我已经安装了Debian 12/我在使用Arm/i386/mips64的 Debian 12/loong64架构的debian port,想要安装 GXDE ,我该怎么做?
|
||||
Q1: 我已经安装了Debian 12/我在使用Arm/i386/mips64的 Debian 12/loong64架构的debian port,想要安装 GXDE ,我该怎么做?
|
||||
|
||||
A2: 加源安装GXDE
|
||||
A1: 加源安装GXDE
|
||||
|
||||
加源安装方法
|
||||
|
||||
下载deb并安装 https://pan.huang1111.cn/s/k2nRvuB
|
||||
下载deb并安装 https://repo-gxde.gfdgdxi.top/gxde-os/bixie/g/gxde-source/
|
||||
|
||||
安装之后
|
||||
|
||||
@@ -37,26 +31,44 @@ sudo aptss install gxde-desktop gxde-desktop-extra -y
|
||||
|
||||
```
|
||||
|
||||
**GXDE与KDE有可能的冲突,请不要同时安装它们,这可能会带来错误**
|
||||
|
||||
---
|
||||
|
||||
Q3: 如何制作启动盘?
|
||||
Q2: 如何制作启动盘?
|
||||
|
||||
A3: Legacy启动推荐rufus用dd模式写入,EFI则使用[深度启动盘制作工具](https://www.deepin.org/zh/original/deepin-boot-maker/)即可
|
||||
A2: 使用[深度启动盘制作工具](https://www.deepin.org/zh/original/deepin-boot-maker/)即可
|
||||
|
||||
|
||||
---
|
||||
|
||||
Q4: `nvidia-driver`包安装失败
|
||||
Q3: `nvidia-driver`包安装失败
|
||||
|
||||
A4: 请手动安装闭源驱动,或者安装 `linux-kernel-oldstable-gxde-amd64
|
||||
A3: 请手动安装闭源驱动,或者安装 `linux-kernel-oldstable-gxde-amd64
|
||||
linux-kernel-oldstable-gxde-amd64` 这个包后用此内核启动重新安装
|
||||
|
||||
A4: 您也可[手动安装驱动](https://bbs.deepin.org/post/232923)以避免此问题
|
||||
A3: 您也可[手动安装驱动](https://bbs.deepin.org/post/232923)以避免此问题
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
Q5: 因特尔/螃蟹网卡 安装后无法打开无线网络
|
||||
Q4: 什么是内测? 我想要加入内测该怎么做?
|
||||
|
||||
A5: `sudo aptss install firmware-iwlwifi firmware-realtek -y`
|
||||
A4: 最新的开发进度会加入内测中,想要体验最新的内容可加入内测,但是内测同样不稳定,建议有一定基础的用户加入
|
||||
|
||||
A5: 此问题将在 15.14 解决
|
||||
A4: 15.14 开始,可在控制中心一键加入内测, 详见: https://www.bilibili.com/video/BV1FgsvenEjq
|
||||
|
||||
A4: 请加入我们的QQ群来反馈: 881201853
|
||||
|
||||
---
|
||||
|
||||
Q5: 我想开发 GXDE 风格的应用,我该怎么做
|
||||
|
||||
A5: 使用bash/python脚本的应用可以使用 [Garma](https://gitee.com/GXDE-OS/garma),使用方法详见: https://help.gnome.org/users/zenity/stable/
|
||||
|
||||
A5: 原生开发请使用 Qt/Dtk2 相关代码如下:
|
||||
|
||||
可用功能列表: https://gitee.com/GXDE-OS/dtk5core/tree/master/src
|
||||
|
||||
可用控件列表: https://gitee.com/GXDE-OS/dtk2widget/tree/master/src/widgets
|
||||
@@ -3,13 +3,13 @@
|
||||
|
||||
**[中文](./Install.zh.md)**
|
||||
|
||||
123pan: https://www.123pan.com/s/pDSKVv-4XIWv.html
|
||||
Multiline download(Recommended): https://repo-gxde.gfdgdxi.top/ISO/15.14/amd64/GXDE-OS_15.14_amd64.iso.torrent
|
||||
|
||||
huang111: https://pan.huang1111.cn/s/laonjFL
|
||||
|
||||
Sourceforge: https://sourceforge.net/projects/gxde-os/files
|
||||
|
||||
**For ISO versions 15.13 and below, Legacy BIOS currently only supports installation using the Debian installer. Select "Advanced options" on the boot screen and then choose "Install." This issue will be resolved in version 15.14.**
|
||||
GXDE is not perfect,please confirm [FAQ](faq.md) before installation,containing Nvidia Graphic Card driver installation help.
|
||||
|
||||
---
|
||||
|
||||
@@ -37,3 +37,6 @@ sudo aptss install gxde-desktop gxde-desktop-extra -y
|
||||
|
||||
Then restart.
|
||||
|
||||
## Install on Termux PRoot or other Android devices
|
||||
|
||||
Check: https://bbs.deepin.org.cn/post/279414
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
**[English](./Install.md)**
|
||||
|
||||
123盘:https://www.123pan.com/s/pDSKVv-4XIWv.html
|
||||
多线加速下载(推荐使用): https://repo-gxde.gfdgdxi.top/ISO/15.14/amd64/GXDE-OS_15.14_amd64.iso.torrent
|
||||
|
||||
huang111:https://pan.huang1111.cn/s/laonjFL
|
||||
|
||||
@@ -36,4 +36,8 @@ sudo aptss install gxde-desktop gxde-desktop-extra -y
|
||||
|
||||
```
|
||||
|
||||
重启即可
|
||||
重启即可
|
||||
|
||||
## 在Termux PRoot或其他安卓设备上安装
|
||||
|
||||
请查看 https://bbs.deepin.org.cn/post/279414
|
||||
Symlink
+1
@@ -0,0 +1 @@
|
||||
../README.zh.md
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 159 KiB |
Reference in New Issue
Block a user