作者: huahua

334 篇文章

scp使用前提
在测试中需要在两台虚拟机之间传递文件,首先想到的是scp命令,结果提示: -bash: scp: command not found 想当然用yum install scp命令安装,结果提示: No package scp available. 后来发现scp这东西应该属于openssh-clients这个包,运行: yum install ope…
ubuntu 挂载iso文件
sudo mkdir /media/cdimage #建立一个文件夹作为ISO挂载点 sudo mount -o loop myfile.iso /media/cdimage #挂载ISO文件,使用参数 -o loop
CentOS 7 网卡设置
In this small tutorial i will explain how to configure static ip address on CentOS 7 minimal. First, need to edit the set up for the ethernet. Let’s start with editing “/etc/s…
centos下svn服务器的搭建、配置(无apache版)
#安装部署 1.检查是否安装了低版本的SVN rpm -qa subversion [root@Svn tools#]rpm -qa subversion #卸载命令 yum remove subversion 2.安装svn yum install subversion #新建文件夹svndata,svnpasswd mkdir -p /var/…
编译nginx报错及解决
今天在安装nginx时出现如下错误: [root@node1 nginx-0.8.55]# ./configure \   --prefix=/usr \   --sbin-path=/usr/sbin/nginx \   --conf-path=/etc/nginx/nginx.conf \   --error-log-path=/var/log…
静态网络CentOS 7
原文地址:http://lintut.com/how-to-configure-static-ip-address-on-centos-7/ 迷你安装后网络:http://lintut.com/how-to-setup-network-after-rhelcentos-7-minimal-installation/ In this small tu…
VirtualBox 报错VT-x is disabled in the BIOS
问题描述 升级 Ubuntu 到 14.04 后,发现 VirtualBox 无法启动,并报告: 1 VT-x is disabled in the BIOS 问题分析 通过查找资料,发现 VT-x: Intel VT-x (Intel Virtualization Technology for IA-32 and Intel 64 Process…
Linux查看网关方法  
Linux下查看网关gateway方法: 1、route -n 2、ip route show 3、traceroute www.baidu.com -s 100 【第一行就是自己的网关】 4、netstat -r 5、more /etc/network/interfaces 【Debian/Ubuntu Linux】 6、more /etc/sy…