51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

ubuntu

ubuntu wps 不能输入中文解决

ubuntu wps 不能输入中文解决

厉飞雨 阅读(20) 评论(0) 赞(4)

wps 文字不能输入中文解决 ```bash vi /usr/bin/wps # 添加内容,字体标注 ``` ```bash #!/bin/bash export XMODIFIERS="@im=fcitx" export QT_IM_MODULE="fcitx" gOpt= #gOptExt=-multiply gTe...

Ubuntu 鼠标加速度

Ubuntu 鼠标加速度

厉飞雨 阅读(21) 评论(0) 赞(4)

我以前是玩 CS 的,对鼠标的灵敏度非常非常敏感,今天重装了一下笔记本的 Ubuntu,鼠标灵敏度一直不合手感。能用 "xset m 0" 来设置鼠标加速度,但关机重启后,设置又失效了。 前一次系统还是几年前配置的,我都忘记是怎么设置的了。网上关于鼠标加速度的设置也不全面,所以记录下来,方便以后配置,和有需要的人参考。 > 系统:Ubuntu 16...

Ubuntu 源 阿里云

Ubuntu 源 阿里云

厉飞雨 阅读(32) 评论(0) 赞(5)

```bash sudo vim /etc/apt/sources.list ``` ```bash deb http://mirrors.aliyun.com/ubuntu/xenial main restricted deb http://mirrors.aliyun.com/ubuntu/xenial-updates main restricted deb http:/...

Ubuntu 源 香港中文大学

Ubuntu 源 香港中文大学

厉飞雨 阅读(22) 评论(0) 赞(6)

```bash sudo vim /etc/apt/sources.list ``` ```bash deb http://ftp.cuhk.edu.hk/pub/Linux/ubuntu/xenial main restricted deb http://ftp.cuhk.edu.hk/pub/Linux/ubuntu/xenial-updates main restric...

Ubuntu 16.10 禁用 Guest 访客

Ubuntu 16.10 禁用 Guest 访客

厉飞雨 阅读(15) 评论(0) 赞(3)

修改: ```fallback sudo vim /usr/share/lightdm/lightdm.conf.d/50-guest-wrapper.conf ``` ```fallback [Seat:*] allow-guest=false ``` 并非以前版本的 `/etc/lightdm/lightdm.conf.d` 位置,而是 `/usr/share/...

Ubuntu 16.10 优化

Ubuntu 16.10 优化

厉飞雨 阅读(17) 评论(0) 赞(2)

1、换阿里云软件源 [#](#1%E6%8D%A2%E9%98%BF%E9%87%8C%E4%BA%91%E8%BD%AF%E4%BB%B6%E6%BA%90) ---------------------------------------------------------------------------------- 阿里云: [http://mirrors.aliy...

Ubuntu Server 安装 Mosh

Ubuntu Server 安装 Mosh

厉飞雨 阅读(18) 评论(0) 赞(3)

服务端安装 Mosh: ```fallback sudo apt install mosh ``` 客户端安装 Mosh: Ubuntu: ```fallback sudo apt install mosh ``` Ubuntu 上也可以安装 Termius ,也支持 Mosh 连接。当服务器比较多时,Termius 比自带终端方便统一管理。 手机端: *...

Ubuntu Server snap 安装 Nextcloud

Ubuntu Server snap 安装 Nextcloud

厉飞雨 阅读(18) 评论(0) 赞(3)

Nextcloud 官网提供了很多种安装方式,我选择通过 snap 安装。 其实 Ubuntu server 已经内置了 Nextcloud ,安装的时候最后一步选上就可以了。 官方项目地址: [https://github.com/nextcloud/nextcloud-snap](/go/?target=aHR0cHM6Ly9naXRodWIuY29tL25leHRjb...

Ubuntu 配置 Oh-My-Zsh

Ubuntu 配置 Oh-My-Zsh

厉飞雨 阅读(24) 评论(0) 赞(2)

### 安装 Oh My Zsh [#](#%E5%AE%89%E8%A3%85-oh-my-zsh) 安装 Zsh: ```fallback sudo apt update sudo apt install zsh ``` 将 Zsh 设置为默认 Shell : ```fallback chsh -s /bin/zsh ``` 查看当前所用的 Shell :...

Ubuntu 配置 Guake

Ubuntu 配置 Guake

厉飞雨 阅读(21) 评论(0) 赞(3)

终端推荐安装 Guake ,又好看又方便: ### 安装 Guake [#](#%E5%AE%89%E8%A3%85-guake) 直接安装的 Guake 版本不够新,而且中文显示不全。 推荐源码安装: ```fallback sudo apt update sudo apt -y install git curl wget cd ~ git clone http...