在linux下拷贝的时候有时候会出现cp:omitting directory的错误 ,例如 cp:omitting directory "bbs" 说明bbs目录下面还有目录,不能直接拷贝 解决办法:递归拷贝  命令:cp -r bbs ../backup/bbs    解释:-r 这个options是递归的意思 举一反三:删除的时候也可能出现这种下面有文件不能删除的问题   也用-r 级联删除 chmod赋予权限的时候想级联也可以用-R 注意是大写的R…
ubuntu出现如下错误: { Welcome to Ubuntu 16.04.5 LTS (GNU/Linux 4.15.0-42-generic x86_64) * Documentation:  https://help.ubuntu.com * Management:     https://landscape.canonical.com * Support:        https://ubuntu.com/advantage 77 packages can be updated.0…
解决Git冲突造成的Please move or remove them before you can merge git clean -d -fx其中x -----删除忽略文件已经对git来说不识别的文件d -----删除未被添加到git的路径中的文件f -----强制运行 注意:这是强制清除本地的未上传文件,清除后不可恢复,如果本地有重要文件未上传,慎用! Please enter a commit message to explain why this merge is necessary…
平时开发 Python 代码过程中,经常会遇到这个报错: ValueError: list.remove(x): x not in list 错误提示信息也很明确,就是移除的元素不在列表之中. 比如: >>> lst = [1, 2, 3] >>> lst.remove(4) Traceback (most recent call last): File "<stdin>", line 1, in <module> Value…
使用df查看系统发现: [ops@bs038 cm-5.4.0]$ df -hFilesystem Size Used Avail Use% Mounted on/dev/sda3 1.1T 200G 814G 20% /tmpfs 7.8G 0 7.8G 0% /dev/shm/dev/sda1 1022M 63M 908M 7% /bootcm_processes 7.8G 0 7.8G 0% /opt/cloudera-manager/cm-5.4.0/run/cloudera-scm-a…
图片分辨率太低导致 周边加空白 然后重新操作,就行了…
Hbase版本:1.2.0-cdh5.14.0 报错内容: org.apache.hadoop.ipc.RemoteException(org.apache.hadoop.fs.PathIsNotEmptyDirectoryException): `/hbase/WALs/hadoop03,60020,1553484690868-splitting is non empty': Directory is not empty 原因: 引起hadoop03的RegionServer不能正确启动的原因…
新电脑clone项目后发现Project Interpreter无法配置, New environment 选择后无法应用, 鼠标悬停在Location 提示 Environment location directory is not empty . 原因是项目push时, 项目下的venv文件夹也被上传, 当项目自带的环境不可用时, 该文件夹存在导致了Pycharm无法创建新的环境. 解决方法是手动删除项目下venv文件夹后重启Pycharm再配置New environment即可.…
尝试在64位Ubuntu下面运行32位程序时, 一直说 文件不存在(No such file or directory), 我只想说++. 你tm说个文件格式不正确不就好了? 非得说个文件不存在! 真的不存在? 我要是找出来了, 你给我吃了? jesus, 害我浪费这么多时间. 一种解决办法: 安装32位运行库: sudo apt-get install ia32-libs…
QT5.0.1在Windows下 出现QApplication: No such file or directory 问题的解决办法 分类: 编程语言学习 软件使用 QT编程学习2013-03-07 21:01 3158人阅读 评论(5) 收藏 举报       最近在Windows7下安装了最新的Qt5.0.1的Windows安装包,可以到QT官网http://qt-project.org/downloads,该版本集成了Qt5.0.1库.MinGW4.7编译器.Qt Creator 2.6.…