在虚拟机上安装的CentOS,但是当执行ping命令的时候,提示name or service not known 解决方法如下: 1. 添加DNS服务器 vi /etc/resolv.conf 1 在文件中添加如下两行(可以自己选择DNS服务器,这里选的是114的,包括谷歌的8.8.8.8和腾讯的119.29.29.29都可以): nameserver 114.114.114.114 nameserver 114.114.114.115 1 2 两行分别是首选DNS服务器和备选DNS服务器.
电脑同时安装了python-2.7.13跟python-3.6.1,安装时勾选了pip,环境变量也已经配置好. 为了方便运行,同时修改了可执行文件为 python2和python3.此时在cmd命令行执行pip2或者pip3会出现 Fatal error in launcher: Unable to create process using '"'的错误提示. 此时我们可以通过 -m 的参数显示执行pip,如下: 这么执行pip还是有点麻烦. 在另外一台电脑,我只安装了python 3.6.1,
如图所示,执行sudo命令,提示语(有中文和英文两个版本): 上面的提示内容是sudo软件原生的内容. 使用下面的方法,有的时候是可行的.sudo -p '提示语' 命令 如果要修改sudo软件原生的提示内容,只有重新编译软件. 屏蔽提示的方法:https://superuser.com/questions/500119/keeping-the-fancy-sudo-warning-forever Create a file inside /etc/sudoers.d/ You can use
在使用fdisk创建分区时,我们会使用partprobe命令可以使kernel重新读取分区信息,从而避免重启系统,但是有时候会遇到下面错误信息"Warning: Unable to open /dev/sr0 read-write (Read-only file system). /dev/sr0 has been opened read-only.",如下所示: [root@getlnx14test scsi_device]# fdisk /dev/sde The number
在图形界面中,执行拉取操作时,出现下面的错误. You asked to pull from the remote 'origin', but did not specifya branch. Because this is not the default configured remotefor your current branch, you must specify a branch on the command line. 解决办法: Edit your .git/config [bra
在执行git pull origin master时出现: fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists 解决方案: git remote add origin git@githu
public static void get() throws IOException{ String address="10.132.118.110"; Process process = Runtime.getRuntime().exec("ping "+address); InputStreamReader r = new InputStreamReader(process.getInputStream()); LineNumberReader returnD