mirror of
https://github.com/GXDE-OS/GXDE.git
synced 2026-08-06 14:43:56 +08:00
Compare commits
24
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a71814cba5 | ||
|
|
8cc2ed1323 | ||
|
|
5a1a2390d2 | ||
|
|
d21b5907d2 | ||
|
|
c59a837cec | ||
|
|
e450748e92 | ||
|
|
8393ff7d4e | ||
|
|
9174b9be73 | ||
|
|
8f6fd15352 | ||
|
|
a4068fbe0c | ||
|
|
8f0f54025a | ||
|
|
4344d04817 | ||
|
|
50573e6c9a | ||
|
|
469ad1e04b | ||
|
|
6a9e064959 | ||
|
|
c1424103b1 | ||
|
|
1b2d82297f | ||
|
|
5483b1c0c4 | ||
|
|
680ba19760 | ||
|
|
c29171afdc | ||
|
|
a0b56b85ff | ||
|
|
a329699fca | ||
|
|
8b7a318744 | ||
|
|
078ea70801 |
@@ -109,7 +109,7 @@ jobs:
|
||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM $UPATH/$tarName > /dev/null
|
||||
|
||||
arm64:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Clone Repository To Get Script
|
||||
run: |
|
||||
@@ -153,7 +153,7 @@ jobs:
|
||||
|
||||
|
||||
mips64:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Clone Repository To Get Script
|
||||
run: |
|
||||
@@ -208,7 +208,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: |
|
||||
@@ -239,4 +239,58 @@ jobs:
|
||||
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
|
||||
|
||||
|
||||
@@ -40,8 +40,8 @@ sudo bash .github/workflows/pardus-chroot $bottlePath
|
||||
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
|
||||
|
||||
@@ -17,8 +17,8 @@ export DEBIAN_FRONTEND=noninteractive # 防止卡 tzdate
|
||||
# 写入 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
|
||||
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
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
## System Installation
|
||||
> Currently, ISO supports amd64, loong64
|
||||
|
||||
123pan: https://www.123pan.com/s/pDSKVv-4XIWv.html
|
||||
|
||||
huang111: https://pan.huang1111.cn/s/laonjFL
|
||||
Sourceforge: https://sourceforge.net/projects/gxde-os/files
|
||||
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@
|
||||
## 系统安装
|
||||
> 目前 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
|
||||
|
||||
|
||||
Vendored
+12
-3
@@ -1,8 +1,17 @@
|
||||
gxde (2024.09.24) UNRELEASED; urgency=medium
|
||||
gxde (2024.10.11) UNRELEASED; urgency=medium
|
||||
|
||||
* add 15.14 conponents dependencies
|
||||
* Add package: gxde-boot-maker
|
||||
* Add package : system-config-printer
|
||||
* Add package : deepin-clone
|
||||
|
||||
-- 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
+31
-11
@@ -23,18 +23,44 @@ Depends: ${misc:Depends},
|
||||
gxde-picker,
|
||||
gxde-font-installer,
|
||||
deepin-movie,
|
||||
dde-requ,
|
||||
gxde-requ,
|
||||
gxde-quick-hash,
|
||||
gxde-sendbylan,
|
||||
gxde-dict,
|
||||
gxde-system-assistant,
|
||||
spark-store | aptss
|
||||
|
||||
spark-store | aptss,
|
||||
gxde-boot-maker,
|
||||
deepin-clone,
|
||||
system-config-printer
|
||||
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},
|
||||
@@ -54,10 +80,10 @@ Depends: ${misc:Depends},
|
||||
dde-kwin,
|
||||
deepin-screensaver,
|
||||
gxde-default-settings,
|
||||
gxde-shell-tools
|
||||
Recommends:
|
||||
gxde-desktop-extra,
|
||||
file-roller,
|
||||
gksu,
|
||||
gxde-editor,
|
||||
gxde-system-monitor,
|
||||
pppoe,
|
||||
@@ -93,15 +119,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 +132,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,12 +3,14 @@
|
||||
|
||||
**[中文](./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.**
|
||||
|
||||
---
|
||||
@@ -37,3 +39,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
|
||||
Reference in New Issue
Block a user