分类: 嵌入式
2016-07-20 14:34:56
ip 配置:
cd /etc/sysconfig/network-scripts/
[root@localhost network-scripts]# more ifcfg-eth0
DEVICE=eth0
BOOTPROTO=static
ONBOOT=yes
HWADDR=90:fb:a6:9c:48:33
TYPE=Ethernet
USERCTL=no
IPV6INIT=no
PEERDNS=yes
IPADDR=10.8.48.13
NETMASK=255.255.255.0
GATEWAY=10.8.48.3
[root@localhost network-scripts]#
samba配置:
启动samba服务,执行
service smb start
(1)让samba开机启动
vi /etc/rc.local
service smb start
(2)samba加入其他共享目录,可以参考已有的目录增加
vi /etc/samba/smb.conf
(3)添加用户和密码
我们通过smbpasswd 来添加Samba用户,并设置密码。原理是通过读取/etc/passwd文件中存在的用户名。 smb只能加系统中已经存在的用户。需要先添加用户.
useradd upp //添加linux用户,最后管理员用户,免得每次用管理员修改过的文件samba用户无法更改
smbpasswd -a upp //把upp用户加到samba访问用户列表,之后提示新建的密码用于samba访问
samba访问文件夹提交没有权限使用网络资源
解决方法:
setenforce 0
iptables -F
rpm -ivh samba-*.rpm -f --nodeps
tftp服务器配置
vi /etc/xinetd.d/tftp
service xinetd restart
chkconfig --list tftp
inux下使用自带的ftp
linux下使用自带的ftp,启动服务:
service vsftpd start
给ftp增加用户upp,密码配置为upp,ftp的目录对应/var/ftp
adduser -d /var/ftp -g ftp -s /sbin/nologin upp
passwd upp
Changing password for user beinan.
New password:
Retype new password:
5.tftp服务器配置
vi /etc/xinetd.d/tftp
service xinetd restart
chkconfig --list tftp
6.挂载电脑目录到linux服务器的方法
mount -t cifs -o username=10154520,password= //10.8.48.198/hbx122 ./hbx122