
linux系统配置
csu_小王子
这个作者很懒,什么都没留下…
展开
-
解决 :dpkg: 处理软件包 linux-image-4.15.0-33-generic (--configure)时出错 的问题
转自https://blog.youkuaiyun.com/u013066730/article/details/82497631###报错内容 正在读取软件包列表... 完成 正在分析软件包的依赖关系树 正在读取状态信息... 完成 nodejs-legacy 已经是最新版 (4.2.6~dfsg-1ubuntu4.2)。 下列软件包是自动安...转载 2019-10-15 11:05:29 · 2694 阅读 · 0 评论 -
Ubuntu安装配置nfs服务器
1、安装nfs服务器:$sudo apt-get install nfs-kernel-server2、配置:$vim /etc/exports加入 /rootfs *(rw,sync,no_root_squash)其中rootfs是要共享的目录,*表示允许所有网段访问,rw表示可读写权限,sync表示所有数据在请求时写入共享,no_root_squash表示root用户根目录原创 2015-04-30 10:26:49 · 355 阅读 · 0 评论 -
虚拟机ubuntu配置桥接上网
一、假设主机是xp系统,IP地址:192.168.1.11(不是自动获取);将vm的的网络设置为网桥二、以root用户进入ubuntu,设置IP:打开/etc/network/interfaces文件,将下面配置复制进去:auto loiface lo inet loopbackauto ethoiface etho inet staticaddress 192.168.1原创 2015-04-30 10:31:10 · 407 阅读 · 0 评论 -
Ubuntu下安装配置tftp服务器
1、安装tftp客户端和服务器端:sudo aptitude install tftp-hpa tftpd-hpa2、配置tftp服务器:gedit /etc/default/tftpd-hpa将原来的内容改为:TFTP_USERNAME = "ftfp"TFTP_DIRECTORY = "/tftp"TFTP_OPTIONS = "-l -c -s"其中/tft原创 2015-04-30 10:00:12 · 404 阅读 · 0 评论 -
samba服务器安装与配置
samba安装终端输入:sudo apt-get install sambasudo apt-get install smbclientsamba配置打开文件 /etc/samba/smb.conf,添加如下代码: [root] comment= Root Directories browseable=yes原创 2015-04-30 09:36:30 · 411 阅读 · 0 评论 -
ubuntu14.04 配置免免ssh
1、 安装 apt-get install openssh-server ssh2、配置/etc/ssh/ssh_config Host * Port 22 SendEnv LANG LC_* HashKnownHosts yes GSSAPIAuthentication yes PermitRootLogin yes原创 2017-06-25 21:44:49 · 207 阅读 · 0 评论