type
status
date
slug
summary
tags
category
icon
password
Linux
Ubuntu 20.04 系统安装流程NVIDIA-SMI has failed because it couldn’t communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running.
移动文件夹下所有文件, 包括子文件夹下的内容
Open a terminal and execute this command:
It will move all the files and folders from Downloads folder to Videos folder.
To move all files, but not folders:
If you are interested in moving all files (but not folders) from Downloads folder to Videos folder, use this command
To move only files from the Download folders, but not from sub-folders:
If you want to move all files from the Downloads folder, but not any files within folders in the Download folder, use this command:
here,
-maxdepth
option specifies how deep find should try, 1
means, only the directory specified in the find command. You can try using 2
, 3
also to test.文件大小查看命令
文件查找命令
批量执行命令 awk
- 查找文件后批量处理
- script 输入参数: 直接写 $1 就是第一个参数
- 获得当前文件夹名
DNS服务器地址修改
找到/etc/resolv.conf
nameserver 就是DNS服务器地址
图形界面添加自动启动项
文本界面设置子启动服务
- 写服务文件,如nginx.service、redis.service、supervisord.service
- 文件保存在目录下:以754的权限。目录路径:/usr/lib/systemd/system/
开机自动启动脚本
写脚本放入/etc/profile.d/
linux 使用rar
https://www.rarlab.com/download.htm找到对应linux的压缩包
ubuntu tar 多线程压缩
- 安装pigz
- 压缩文件夹(默认占用所有cpu核心, 占用率50%-80%)
- 解压文件夹
- 需要限制cpu占用的话
- 向压缩包里追加文件
格式化新的磁盘
Installing A New Hard Drive
1) Start parted as follows:
2) Create a new GPT disklabel (aka partition table):
3) Set the default unit to TB:
4) Create one partition occupying all the space on the drive. For a 4TB drive:
5) Check that the results are correct:
There should be one partition occupying the entire drive.
6) Save and quit "parted":
Command Line Formatting
To format the new partition as ext4 file system (best for use under Ubuntu):
sudo mkfs -t ext4 /dev/sdb1
To format the new partition as fat32 file system (best for use under Ubuntu & Windows):
sudo mkfs -t fat32 /dev/sdb1
As always, substitute "/dev/sdb1" with your own partition's path.
匹配k380键盘
可能成功
开发常用组件安装,遇到gcc之类的基础组件缺失时使用
向日葵 远程登录失败问题
需要轻量化桌面
查看某个文件夹下文件或文件夹的数量(递归)
磁盘空间清理
htop设置
- 使用htop命令查看进程的时候可以关闭重复线程方便查看
Ubuntu 隐藏上方状态栏、左边任务栏及菜单按钮移到下方居中及隐藏(详细)
ubuntu 20.04 vps 开机自启动
zip相关指令
Docker 问题整理
Docker 开发环境配置 1 (1)常用命令
换源
docker显卡插件
删除docker none镜像
有效的 none 镜像Docker文件系统的组成,docker镜像是由很多 layers组成的,每个 layer之间有父子关系,所有的docker文件系统层默认都存储在/var/lib/docker/graph目录下,docker称之为图层数据库。
最后做一个总结< none>:< none> 镜像是一种中间镜像,我们可以使用docker images -a来看到,他们不会造成硬盘空间占用的问题(因为这是镜像的父层,必须存在的),但是会给我们的判断带来迷惑。
无效的 none 镜像
另一种类型的 < none>:< none> 镜像是dangling images ,这种类型会造成磁盘空间占用问题。
像Java和Golang这种编程语言都有一个内存区,这个内存区不会关联任何的代码。这些语言的垃圾回收系统优先回收这块区域的空间,将他返回给堆内存,所以这块内存区对于之后的内存分配是有用的
docker的悬挂(dangling)文件系统与上面的原理类似,他是没有被使用到的并且不会关联任何镜像,因此我们需要一种机制去清理这些悬空镜像。
我们在上文已经提到了有效的< none>镜像,他们是一种中间层,那无效的< none>镜像又是怎么出现的?这些 dangling镜像主要是我们触发 docker build 和 docker pull命令产生的。
使用下面的命令可以清理
sudo docker rmi $(sudo docker images -f “dangling=true” -q)
docker没有自动垃圾回收处理机制,未来可能会有这方面的改进,但是目前我们只能这样手动清理(写个脚本就好)。
Docker Dockerfile
换源
- 或者直接用-i命令接在install后面
当dockerfile安装失败的时候, 想进入容器debug
如果在构建Docker镜像时遇到失败,你可以使用
--no-cache
选项强制重新构建,以便解决某些缓存相关的问题。此外,你还可以将失败的构建层作为一个新的容器运行,以便进入容器并手动调试问题。要进入失败的Docker构建,首先找到最后一个构建层的ID。在构建过程中,你会看到类似以下内容的输出:
在这里,
54f176c9b38d
是构建层的ID。构建失败后,使用以下命令创建一个新的容器并运行:现在你应该已经进入了容器。你可以手动运行命令来尝试找出导致构建失败的原因。在解决问题后,使用
exit
命令离开容器,并尝试重新构建Docker镜像。Docker使用ubuntu初始配置
- 更新apt-get
- 更换apt-get源
- 安装cmake
- 挂载宿主机硬盘
- 对修改的container进行保存
- docker 导入导出容器
- docker import之后docker run报错
- 解决方法:
在docker run命令最后加上command, 一般是/bin/bash
docker error
- 一些服务器在安装用到nvidia服务的Dockerfile的时候可能会报错
- 原因: host没有安装nvidia适配docker的驱动
apt-get update
- 有时候docker使用apt-get update的时候可能会有下面的报错
- 遇到库缺失问题,安装apt-file查找库
Proxy和换源
wget 使用代理
- For all users of the system via the
/etc/wgetrc
or for the user only with the~/.wgetrc
file:
apt-get 换源
清华源生成源的路径点下面的链接, 修改/etc/apt/sources.list
- 其他版本
- alpine修改镜像源
- 使用阿里镜像 https://mirrors.aliyun.com
- 使用科大镜像 http://mirrors.ustc.edu.cn
sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
- anaconda 安装后替换源
- pip 换源
- cmake 使用代理
- 需要在CMakeLists.txt文件中添加代理地址