Skip to content

Commit

Permalink
发布博客,时间:2024/10/14 21:18:36
Browse files Browse the repository at this point in the history
  • Loading branch information
whp98 committed Oct 14, 2024
1 parent b979243 commit 173ca9b
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/Linux系统/ubuntu桌面/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# ubuntu桌面
- [ubuntu卸载nautils](./ubuntu卸载nautils.md)
- [ubuntu切换kde](./ubuntu切换kde.md)
- [ubuntu24.04断网排查和修复](./ubuntu断网排查.md)
- [ubuntu安装nvidia 4060ti驱动](./ubuntu安装nvidia驱动.md)
- [Ubuntu24.04大内存和多服务优化](./Ubuntu24.04大内存和多服务优化.md)
Expand Down
35 changes: 35 additions & 0 deletions docs/Linux系统/ubuntu桌面/ubuntu切换kde.md
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
```
16 changes: 16 additions & 0 deletions docs/Linux系统/ubuntu桌面/ubuntu卸载nautils.md
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吧。
1 change: 1 addition & 0 deletions docs/Python语言/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Python语言
- [python输出没有缓存](./python输出没有缓存.md)
- [anaconda使用](./anaconda使用.md)
- [pip使用](./pip使用.md)
- [使用mark-pdf转markdown](./使用mark-pdf转markdown.md)
Expand Down
9 changes: 9 additions & 0 deletions docs/Python语言/python输出没有缓存.md
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 &
```
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# 目录
- [Python语言](./Python语言/)
- [社会认知](./社会认知/)
- [About](./public/public.md)
- [奇思妙想](./奇思妙想/)
Expand All @@ -10,7 +11,6 @@
- [赞助和推广](./赞助和推广/)
- [前端开发](./前端开发/)
- [开发工具技巧](./开发工具技巧/)
- [Python语言](./Python语言/)
- [Linux系统](./Linux系统/)
- [Git版本管理](./Git版本管理/)
- [安卓开发](./安卓开发/)
Expand Down

0 comments on commit 173ca9b

Please sign in to comment.