51工具盒子

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

最新发布

Ubuntu ZFS 加密 Home 目录
日常运维

Ubuntu ZFS 加密 Home 目录

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

### 前言 [#](#%E5%89%8D%E8%A8%80) Ubuntu 20.04 的安装镜像支持 ZFS 文件系统: ![](/assets/images/posts/2020/09/install.png) <br /> 本文是 **安装后** 加密 ZFS Home 目录的备忘教程。 另外有 **安装前** 加密 ZFS Root 文件系统...

Ubuntu 20.04.1 配置 LNMP 本地环境备忘
操作系统

Ubuntu 20.04.1 配置 LNMP 本地环境备忘

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

本文主要记录在 Ubuntu 20.04.1 Desktop 版本中配置 Nginx、Mysql、PHP、phpMyAdmin。 提示:如果不太了解各项配置的意思,切勿在服务器生产环境中按本文配置! ### 安装 Nginx [#](#%E5%AE%89%E8%A3%85-nginx) * 移除老旧或冲突软件 ```fallback sudo apt purge apa...

ubuntu wps 不能输入中文解决
linux

ubuntu wps 不能输入中文解决

厉飞雨 阅读(22) 评论(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 鼠标加速度

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

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

Ubuntu 源 阿里云
linux

Ubuntu 源 阿里云

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

```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 源 香港中文大学

厉飞雨 阅读(25) 评论(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 访客

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

修改: ```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 优化

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

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

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

服务端安装 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...