
工具
iw1210
这个作者很懒,什么都没留下…
展开
-
用 Windows 的 diskpart 命令修复U盘
用 Windows 的 diskpart 命令修复U盘有时用一些软件处理过的U盘在Windows资源管理器中看不到了(比如用Win32 Disk Imager 或 Fedora Media Writer 软件处理过的U盘),这时就可以用 diskpart 命令修复。步骤如下:1. 插入U盘,打开命令行窗口(cmd)2. 输入 diskpart 回车打开 diskpart 命令行终端窗口...原创 2019-12-24 18:21:01 · 23494 阅读 · 3 评论 -
清理 Docker 占用的磁盘空间
清理 Docker 占用的磁盘空间1. 首先查看 Docker 的磁盘使用情况使用 docker system df 命令查看 Docker 的磁盘使用情况,该命令类似于 Linux 的 df 命令。# docker system dfTYPE TOTAL ACTIVE SIZE ...原创 2019-10-21 17:14:23 · 615 阅读 · 0 评论 -
SVN中报错 “Previous operation has not finished; run 'cleanup' if it was interrupted” 的解决办法
SVN中在执行 clean up 时出现 “Previous operation has not finished; run 'cleanup' if it was interrupted” 错误的解决办法在使用 SVN 版本控制工具过程中,遇到执行 clean up 命令报错 “Previous operation has not finished; run 'cleanup' if i原创 2017-06-27 13:30:25 · 1142 阅读 · 0 评论 -
Intellij IDEA 快捷键
Intellij IDEA 快捷键【Alt】+【->】或【【Ctrl】+【Alt】+【->】或【【Alt】+【F7】:查找整个工程中某一个类、方法或者变量的所有使用位置。【Ctrl】+【E】:列出最近打开的文件。原创 2017-10-25 17:02:18 · 259 阅读 · 0 评论 -
PS设置并固定选区大小
PS设置并固定选区大小直接上图说明:原创 2018-11-27 10:48:41 · 3853 阅读 · 0 评论 -
创建新Docker容器时出现“The container name "/xxx" is already in use by container xxxxxxxxxxx...”问题的解决办法
创建新Docker容器时出现“The container name "/xxx" is already in use by container xxxxxxxxxxx...”问题的解决办法详细错误提示:/usr/bin/docker-current: Error response from daemon: Conflict. The container name "/xxx" is alre...原创 2018-12-01 16:30:58 · 72853 阅读 · 4 评论 -
使用 Docker 搭建 FTP 服务
使用 Docker 搭建 FTP 服务1. 创建 FTP 文件存储目录创建 FTP 文件存储目录,这里创建 /data/ftpData 。# pwd/data# mkdir ftpData# cd ftpData/# pwd/data/ftpData2. 创建一个 FTP 用户组创建一个 FTP 用户组,用于存放 FTP 用户。# groupadd ftpgroup3...原创 2019-01-19 10:35:37 · 11857 阅读 · 1 评论 -
Git 强行拉取在本地已删除/编辑的文件或目录,用 git checkout 恢复单个已删除/编辑的文件或目录。
Git 强行拉取在本地已删除/编辑的文件或目录,用 git checkout 恢复单个已删除/编辑的文件或目录。删除本地文件后,想从远程仓库中重新 Pull 最新版文件,Git提示:git.exe pull -v --progress "origin"... ...Already up to date.Success (6829 ms @ 2019/5/27 12:02:53)但是...原创 2019-05-27 12:14:20 · 8735 阅读 · 0 评论