GIS使用者的Deepin V23系統使用記錄

MeGusta發表於2024-03-31

一、系統安裝:

截止到2024年3月31日,Deepin最新版本為Deepin v23 Beta3。

在各種軟體源下載系統ISO安裝,個人是在清華源

1.準備一個隨身碟或者行動硬碟,安裝好Ventoy,把Deepin的ISO放進去,這樣,就製作好了系統啟動盤。

2.推薦為Deepin系統單獨準備一塊硬碟,從Ventoy啟動之後,選擇Deepinv23的ISO映象,進入系統安裝。

3.推薦預設全盤安裝,這樣可以保留系統備份功能,萬一系統哪天出問題難以解決了,可以直接回滾。

4.在安裝好系統之後,系統盤會預設為15GB。Deepin系統的策略是,在商店安裝的所有應用都儲存/opt下,而/opt是在資料分割槽下的,不會佔用系統盤的空間,從而不需要很大的系統盤分割槽。

但是在安裝一些Linux通用應用時,程式檔案會在常規的Linux目錄中,慢慢系統盤也許就不會夠用。在這種條件下,只需要再下載一個Ubuntu的ISO映象,用Ventoy進入Ubuntu的LiveCD環境,使用gparted手動調整分割槽大小即可。

5.簡要說明一下預設資料盤的目錄結構:

/persistent #資料盤掛載位置
├── home    #使用者家目錄
├── opt     #Deepin程式預設安裝位置
├── osroot  #系統更新之前的系統備份資料,用來回滾系統(grub2介面”系統恢復“)
├── var     #Linux常規的var目錄,faltpak和docker應用資料存在此處

二、軟體安裝:

1.解除安裝自帶的LibreOffice:

sudo apt --purge libreoffice* -y

2.解決deepinv23玲瓏格式的歸檔管理器和文字編輯器許可權問題

# 深度文字編輯器開啟沒有許可權的文字時,內容顯示空白
# 歸檔管理器解壓壓縮檔案,顯示無法找到xx目錄
# 解決方法是解除安裝玲瓏格式的二者,並重新安裝deb格式 ll
-cli uninstall org.deepin.compressor \ && ll-cli uninstall org.deepin.editor sudo apt install deepin-compressor deepin-editor -y

3.安裝霧凇輸入法(rime-ice):

# 安裝fcitx5-rime、lua指令碼支援
sudo apt install fcitx5-rime librime-plugin-lua -y 
# 部署霧凇輸入法(自動指令碼)
sudo apt install git ruby -y
cd ~
git clone --depth=1 https://github.com/Mark24Code/rime-auto-deploy.git --branch latest
cd rime-auto-deploy
./installer.rb

如果自動指令碼比較慢,可以手動部署

安裝好之後,在 設定 -> 鍵盤和語言 -> 輸入法 ->輸入法管理,點+號,新增中州韻輸入法即可。

Fcitx5的皮膚設定在深度論壇

4.安裝FSearch,Linux系統中的everything軟體替代

# 從debian12軟體源下載安裝libicu72
wget http://ftp.cn.debian.org/debian/pool/main/i/icu/libicu72_72.1-3_amd64.deb -O /tmp/libicu72_72.1-3_amd64.deb \
&& sudo apt install -y /tmp/libicu72_72.1-3_amd64.deb
# 從官方軟體庫下載deb包並安裝
wget https://download.opensuse.org/repositories/home:/cboxdoerfer/Debian_12/amd64/fsearch_0.2.3-1+3.5_amd64.deb -O /tmp/fsearch_0.2.3-1+3.5_amd64.deb \
&& sudo apt install -y /tmp/fsearch_0.2.3-1+3.5_amd64.deb

FSearch的預設圖示比較暗,固定到工作列上之後看不清楚,替換一下。登出當前使用者後再登入生效,效果如下:

# 下載自定義圖示檔案,藍奏雲地址:https://thesats.lanzout.com/ijSbr1ta7bba
mv
/usr/share/icons/hicolor/scalable/apps/io.github.cboxdoerfer.FSearch.svg /usr/share/icons/hicolor/scalable/apps/io.github.cboxdoerfer.FSearch.svg.bak cp ./search_icon.svg /usr/share/icons/hicolor/scalable/apps/io.github.cboxdoerfer.FSearch.svg

5.安裝seafile-gui客戶端

# 從debian12源下載安裝libwebsockets17
wget http://ftp.cn.debian.org/debian/pool/main/libw/libwebsockets/libwebsockets17_4.1.6-3_amd64.deb -O /tmp/libwebsockets17_4.1.6-3_amd64.deb \
&& sudo apt install -y /tmp/libwebsockets17_4.1.6-3_amd64.deb
# 新增seafile官方源及金鑰,安裝seafile-gui sudo wget https://linux-clients.seafile.com/seafile.asc -O /usr/share/keyrings/seafile-keyring.asc echo "deb [arch=amd64 signed-by=/usr/share/keyrings/seafile-keyring.asc] https://linux-clients.seafile.com/seafile-deb/bookworm/ stable main" | sudo tee /etc/apt/sources.list.d/seafile.list > /dev/null sudo apt update && sudo apt install -y seafile-gui

6.從星火商店安裝ACE相容環境(關於ACE相容環境

# 檢測並安裝ACE相容環境
if dpkg -s cn.flamescion.bookworm-compatibility-mode >/dev/null 2>&1; then
    echo "ACE相容環境已安裝"
else
    cd /tmp \
    && wget -r -np -A 'cn.flamescion.bookworm-compatibility-mode*.deb' \
    https://zunyun01.store.deepinos.org.cn/store/tools/cn.flamescion.bookworm-compatibility-mode/ \
    && sudo apt install -f /tmp/cn.flamescion.bookworm-compatibility-mode*.deb
fi

7.在ACE相容環境中安裝QGIS,saga,inkscape,mdbtools

# ACE容器安裝QGIS----------------------------------------

# 使用wget命令下載QGIS的公鑰到/etc/apt/keyrings/目錄下,如果下載失敗,指令碼將退出
sudo bookworm-run wget -O /etc/apt/keyrings/qgis-archive-keyring.gpg https://download.qgis.org/downloads/qgis-archive-keyring.gpg || exit 1

# 在/tmp目錄下,建立一個名為qgis.sources的檔案,包含QGIS的apt源資訊
cat << EOF > /tmp/qgis.sources
Types: deb deb-src
URIs: https://qgis.org/debian
Suites: bookworm
Architectures: amd64
Components: main
Signed-By: /etc/apt/keyrings/qgis-archive-keyring.gpg
EOF

# 將剛才建立的qgis.sources檔案複製到/etc/apt/sources.list.d/目錄下,複製完畢刪除/tmp/qgis.sources
sudo bookworm-run cp /tmp/qgis.sources /etc/apt/sources.list.d/qgis.sources && rm /tmp/qgis.sources

# 更新apt的軟體源資訊,然後安裝qgis、saga、inkscape和mdbtools,另外,安裝中州韻輸入法以及lua支援外掛
sudo bookworm-run apt update && sudo bookworm-run apt install -y qgis saga inkscape mdbtools

8.在ACE環境中安裝FME Form

# 從藍奏雲下載fme許可證管理器並安裝:https://thesats.lanzout.com/iKcap1taaaof
# 在FME官網下載debian12版本的FME Form安裝包,並在ACE相容環境中安裝
bookworm-run
sudo apt install -y ./fme-form-2024_2024.0.24187~debian.12_amd64.deb

9.下載星火商店,安裝WPS Pro for Linux等軟體

wget https://gitee.com/spark-store-project/spark-store/releases/download/4.2.10/spark-store_4.2.10_amd64.deb
sudo apt install -y ./spark-store_4.2.10_amd64.deb

相關文章