如果Eclipse中出现User setting file does not exist ...\.m2\setting.xml这样的问题,解决方法如下: 1.拷贝%M2_HOME%/conf/settings.xml的文件到%USER_HOME%/.m2/settings.xml中即可. 经过研究,同时也发现,在Maven安装好之后,%USER_HOME%/.m2目录下是不存在settings.xml的.而通过官方说明找到了答案http://maven.apache.org/settings.
今天干活时遇到一个问题,在sudo -iu [用户]命令执行后无法切换到用户对应的[ 用户@机器 ~$ ]命令行 .bashrc已正常配置为 if [ -f /etc/bashrc ]; then . /etc/bashrc fi 但是未能加载,原因是.bashrc的加载顺序在.bash_profile之后,所以需要确认用户目录下有.bash_profile文件,且.bash_profile中有如下代码 if [ -f /etc/bashrc ]; then . /etc/bashrc fi