摘要:
目录处理命令 lsmkdirrmdirpwdcd cp mvrm 文件处理命令 touchcattacmorelessheadtail 连接命令 ln软连接 ln -s 类似于Windows的快捷方式 特点 lrwxrwxrwx -> 具体权限由源文件决定硬链接 ln 相当于 cp -p + 同步更新 通过i节点识别 ls -i 不能跨分区,不能针对目录 ... 阅读全文
摘要:
主要用途:在两台计算机间共享文件、打印机安装:yum install samba启动服务:/etc/rc.d/init.d/smb start添加用户 (必须是系统中真实存在的用户)smbpasswd -a zoro设置密码Windows端运行\\192.168.74.130,登录,即可访问共享文件... 阅读全文
摘要:
位置/etc/sysconfig/selinux/etc/selinux/config改为disabled重启 阅读全文
摘要:
安装过程中出现错误:BuldingtheVirtualBoxGuestAdditionsKernelmodulesfailedYoursystemdoesnotseemtobesetuptobuildkernelmodules.Lookat/var/log/vboxadd-install.logto... 阅读全文
摘要:
出错情况:[root@localhost]#servicenetworkrestart正在关闭接口eth0:设备状态:3(断开连接)[确定]关闭环回接口:[确定]弹出环回接口:[确定]弹出界面eth0:活跃连接状态:激活中活跃连接路径:/org/freedesktop/NetworkManager/... 阅读全文
摘要:
VMware Tools的作用?实现无缝全屏自动捕获和释放鼠标光标,不用Ctrl+Alt了实现主机和客户机间文件自由复制和粘贴操作增强虚拟显卡和硬盘性能、以及同步虚拟机与主机时钟的驱动程序注:只有安装好虚拟系统后才能安装增强工具安装镜像一般为于...\VMware\VMware Workstatio... 阅读全文
摘要:
mkdir /home/xxx 创建挂载点mount /dev/cdrom /home/xxx 把cdrom中的内容挂载到xxx目录umount /dev/cdrom 卸载/dev/sr0 和 /dev/cdrom 的关系/dev/sr0是光驱的设备名,即系统中的第一个SCSI CD-ROM设... 阅读全文
摘要:
遇到问题:VAWare中安装了Ubuntu-Desktop,Xshell连接失败解决办法:首先确认虚拟Ubuntu可以正常联网可能原因是没有安装openssh服务sudo apt-get install openssh-server再次Xshell连接,出现问题原因:Ubuntu中设置了不允许roo... 阅读全文
摘要:
查看防火墙状态iptables -L or service iptables status临时性关闭防火墙iptables -F or service iptables stop永久性关闭防火墙chkconfig iptables off #重启生效iptables -... 阅读全文