zoukankan      html  css  js  c++  java
  • redhat samba安装配置

    突然想要用,好久没配过这玩意了,再次配置一次,记录一下过程。

    1.挂载镜像
         mount -o loop ~/Desktop/RHEL_5.5 i386 DV.iso /mnt
         然后查看是否挂再成功。
     
    2.安装rpm包
         cd /mnt/Server,将相关rpm包先拷贝出来
    至少会用到:(安装期间若有依赖包没有安装,根据提示安装就好)
    perl-5.8.8-27.el5.i386.rpm
    perl-Convert-ASN1-0.20-1.1.noarch.rpm
    samba-common-3.0.33-3.28.el5.i386.rpm
    samba-3.0.33-3.28.el5.i386.rpm
    samba-client-3.0.33-3.28.el5.i386.rpm
     
    3.配置
         vi /etc/smb.conf
     
    ;[share]
    ;comment = Public Stu
    ;path = /home/frank
    ;public = yes
    ;writable = yes
    ;browseable = yes
    ;printable = no
    ;valid users = root frank

    [arm]
    comment = arm-kernel
    path = /disk/A9
    browseable = yes
     
    4.设置samba用户名和密码
         smbpasswd -a root
         接下来会提示设置密码

    [root@localhost samba]# smbpasswd --help
    smbpasswd: invalid option -- -
    When run by root:
    smbpasswd [options] [username]
    otherwise:
    smbpasswd [options]

    options:
    -L local mode (must be first option)
    -h print this usage message
    -s use stdin for password prompt
    -c smb.conf file Use the given path to the smb.conf file
    -D LEVEL debug level
    -r MACHINE remote machine
    -U USER remote username
    extra options when run by root or in local mode:
    -a add user
    -d disable user
    -e enable user
    -i interdomain trust account
    -m machine trust account
    -n set no password
    -W use stdin ldap admin password
    -w PASSWORD ldap admin password
    -x delete user
    -R ORDER name resolve order

     

    5.重启smb服务
         service smb restart
  • 相关阅读:
    ubuntu一般软件安装在什么目录
    Swing是一把刀
    eclipse 3.6的VE配置 Visual Editor for eclipse3.6
    有关import sun.audio.AudioPlayer(或者其它文件)的问题
    ubuntu 下安装jdk
    linux查看java jdk安装路径
    关于绿色
    Swing如何正确的处理界面中的线程(EDT)
    在Eclipse4.2x中安装最新版插件WindowBuilder
    Eclipse java swing开发环境
  • 原文地址:https://www.cnblogs.com/black-mamba/p/4976373.html
Copyright © 2011-2022 走看看