「Debian」:修訂間差異

出自Gea-Suan Lin's Wiki
跳至導覽 跳至搜尋
Gslin留言 | 貢獻
無編輯摘要
Gslin留言 | 貢獻
第1行: 第1行:
'''Debian'''是一種[[Linux]]作業系統。
'''Debian'''是一種[[Linux]]作業系統。


== 範例 ==
== 安裝 ==
 
先把系統換成testing:
 
<syntaxhighlight lang="bash">
sed -e "s/$(lsb_release -cs)/testing/g" /etc/apt/sources.list; apt update; dist-upgrade -y; apt clean
</syntaxhighlight>
 
重開後:


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
sudo sed -e "s/$(lsb_release -cs)/testing/g" /etc/apt/sources.list; apt update; apt dist-upgrade -y
apt autoremove --purge -y; apt clean
</syntaxhighlight>
</syntaxhighlight>



於 2025年2月9日 (日) 16:40 的修訂

Debian是一種Linux作業系統。

安裝

先把系統換成testing:

sed -e "s/$(lsb_release -cs)/testing/g" /etc/apt/sources.list; apt update; dist-upgrade -y; apt clean

重開後:

apt autoremove --purge -y; apt clean

外部連結