查询Ports中是否含有某个软件包
$ /usr/ports
$ make search key=pidgin
同样也可以使用
$ cd /usr/ports
$ make search name=pidgin
用上面两种方法查询时,显示的信息比较详细,包括维护者、依赖包、主页等内容。如果只想显示所在的路径和软件名称,则可以用
$cd /usr/ports
$make quicksearch name=php 安装fcitx-googlepinyin输入法
# cd /usr/ports/chinese/fcitx-googlepinyin/ && make install clean
在.cshrc里加入
setenv XMODIFIERS @im=fcitx
setenv GTK_IM_MODULE xim
setenv QT_IM_MODULE xim
在.xinitrc里加入
fcitx & 注意:这个一定要写在/usr/local/bin/startxfce4的前面。
更新ports的方法
portsnap fetch extract update 更改用户shell
# vipw 或 chsh 如何让csh显示彩色文件列表
编辑/etc/csh.cshrc加入以下代码
setenv LSCOLORS ExGxFxdxCxegedabagExEx
setenv CLICOLOR yes
然后执行
# sed -i.bak -E s/set\ prompt/#set\ prompt/g /root/.cshrc 如何让csh想bash那样按TAB自动列出无法补全的候选文件,
标准方法是按Ctrl+D,但如果一定要用TAB的话,在/etc/csh.cshrc中加入;
set autolist
如何让FreeBSD的csh显示类似[xiaopang@BSD]~这样的提示符号?
在/etc/csh.cshrc中加入;
set prompt = '[%B%n@%m%b] %B%~%b%# '
然后执行;
# sed -i.bak -E s/set\ prompt/#set\ prompt/g /root/.cshrc 搭建samba服务器
# cd /usr/ports/net/samba46 && make install
出现选择,依照内定预设值,按TAB选择OK,再按Enter.
Options for samba 3.0.24,1
[X] LDAP With LDAP support
[X] ADS With Active Directory support
[X] CUPS With CUPS printing support
[X] WINBIND With WinBIND support
[X] ACL_SUPPORT With ACL support
[ ] FAM_SUPPORT With File Alteration Monitor
[X] SYSLOG With Syslog support
[ ] QUOTAS With Disk quota support
[X] UTMP With UTMP accounting support
[ ] MSDFS With MSDFS support
[ ] PAM_SMBPASS With PAM authentication vs passdb backends
[ ] CLUSTER With experimental cluster support
[ ] EXP_MODULES With experimental modules
[X] POPT With system-wide POPT library
[ ] MAX_DEBUG With maximum debuging
# cp /usr/local/etc/smb.conf.default /usr/local/etc/samba.conf \\复制Samba.conf配置文件
########################以下内容可实现用户自动登录home目录##########################
workgroup = WORKGROUP
server string = %h Samba Server
log file = /var/log/samba/%m.log
[homes]
comment = Home directory for %u on %h
browseable = no
writable = yes
path = /usr/home/%u/
valid users = %S
##################################################################
编辑/etc/rc.conf添加
winbindd_enable="YES"
samba_enable="YES"
然后添加使用者账号
# adduser username
设定samba user database (samba的使用者账号):
# smbpasswd -a username
/usr/local/etc/rc.d/samba start //启动samba服务 安装Apache22