转自:https://blog.csdn.net/YHM07/article/details/49717933 操作系统: $ uname -r 2.6.32-573.7.1.el6.x86_64 $ cat /etc/issue CentOS release 6.7 (Final) Kernel \r on an \m 问题及现象 在使用crontab -e或者是less的编辑命令时出现错误提示: Error detected while processing /home/centos/.vi…
在windows下拷贝vimrc到Linux,运行vim命令后,出现错误 vim E492: Not an editor command: ^M 原因: linux的文件换行符为\n,但windows却非要把\r\n作为换行符,所以,vim在解析从windows拷贝到linux的的vimrc时,因为遇到无法解析的\r,所以报错. 使用 For Ubuntu/Debian: sudo apt-get install tofrodos; sudo ln -s /usr/bin/fromdos /us…
[Tool] SourceTree初始化GitFlow遇到错误(git command not found)的解决方案 问题情景 使用SourceTree,可以方便开发人员快速的套用GitFlow开发流程.但是在安装完SourceTree.Clone Repository之后,准备透过SourceTree来初始化GitFlow相关设定时,某些开发环境里,会出现下列错误讯息:「git: command not found」. 解决方案 上网找了一下资料,针对「git: command not fo…
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/plugin/Vundle.vim https://stackoverflow.com/questions/30017366/vim-error-e492-not-an-editor-command-plugininstall…
EDIT mode to GENERAL mode: press ESC General mode: operate file :q!    :force to close the file but not save(file has been modified) :wq! :force to save and close the file :q    : close the file but not save(file hasn't been modified) :wq  : save and…
呃呃,在写下面的代码时出现的问题,解决办法是npm install或者yarn,如果yarn报错,再npm install就可以了 下面的是携程App首页的样式,有轮播,我没有实现出来 代码如下: /** * Sample React Native App * https://github.com/facebook/react-native * * @format * @flow */ import React, {Component} from 'react'; import {Platfor…
在Object-C基础教程中写到,要求选择Xcode中Mac OS X - Command Line Utility - Foundation Tool 但在Xcode4.5中Mac OS X中没有Command Line Utility,如下图所示: 找了一会,终于找到解决方案啦!…
命令行打包的时候出现 bash gradle command not found这个问题,主要是因为gradle环境丢失.需要重新配置gradle的环境变量. 1. gradle路径的查找 然后gradle 右键 显示简介 复制下蓝色的 2. 环境变量的配置 在.bash_profile文件中,添加如下图选中内容的配置信息: 执行source .bash_profile,将配置的环境变量生效. 使用命令[gradle -v]看是否出现版本号,如果出现版本号,说明环境变量配置成功了.…
Bundle是一种利用键值对存储的数据格式,而我们在程序中通常利用HashMap存储数据.在开发中,通过Http请求得到JSONArray类型的返回值,我选择利用ArrayList<HashMap<String, String>>格式存储JSONArray对象.Bundle对象中putParcelabelArrayList方法可以将ArrayList格式数据传入Bundle,用于Intent在不同activity中传递.因此需要一种将ArrayList<HashMap<…
昨天在linux中安装了 nginx ,并按照网上教程 进行启动 如: ps -ef | grep nginx 可以查看到 我就想重新加载一次 如:提示我找不到 nginx 命令 -c参数指定了要加载的nginx配置文件路径 /usr/local/nginx/conf/nginx.conf 是nginx的配置路径 我又想到 我的是Centos 7 又试了 ./ 发现还是同样的问题, 没办法,关键时刻只能找度娘了,然后发现一片问题,说是把nginx路径 配置到环境变量里面就可以 原文网址:http…