-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
64 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# ubuntu切换kde | ||
|
||
## 先切换好fc5输入法 | ||
可以参考 | ||
https://fotianmoyin.com/other/docs/9_Ubuntu%E5%AE%89%E8%A3%9DFcitx5/#kim | ||
|
||
|
||
### 安装fcitx5 | ||
|
||
```shell | ||
sudo apt install fcitx5 \ | ||
fcitx5-chinese-addons \ | ||
fcitx5-frontend-gtk4 fcitx5-frontend-gtk3 fcitx5-frontend-gtk2 \ | ||
fcitx5-frontend-qt5 | ||
``` | ||
|
||
### 配置输入法为fcitx5 | ||
|
||
在【系统设置】->【区域与语言】->【管理已安装的语言】 | ||
点击切换输入法系统为fcitx5 | ||
|
||
## 安装系统 | ||
|
||
可以参考 https://www.sysgeek.cn/ubuntu-install-kde-plasma/ | ||
### kde标准版 | ||
包含很多的软件,如果是从ubuntu切换不建议。 | ||
```shell | ||
sudo apt install kde-standard | ||
``` | ||
|
||
### kde-plasma-desktop | ||
我就是用的这个,大小比较小安装上就能用了。 | ||
```shell | ||
sudo apt install kde-plasma-desktop | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# ubuntu卸载nautils | ||
|
||
nautils很慢每次打开需要等待10秒。 | ||
|
||
```shell | ||
sudo apt purge nautils* | ||
``` | ||
可以替换称nemo | ||
|
||
```shell | ||
sudo apt install nemo | ||
``` | ||
|
||
## 这个问题并不能一定解决 | ||
|
||
解决不了尝试使用kde吧。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# python输出没有缓存 | ||
|
||
|
||
python输出到文件会有输出缓存,需要使用如下参数来关闭: | ||
|
||
|
||
```shell | ||
nohup python -u abc.py > log.txt 2>&1 & | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters