2010年5月24日 星期一

[Solaris]create group/user

最近會整理一些solaris的基本設定與操作
就順便記在這裡好了
-------------------------------------------------------------------------------------
1.Create group
Command: groupadd [-g gid] group
Related File: /etc/group
#groupadd -g 2001 RD

2.Create user
Command: useradd [-u uid | -g group] | -d dir | -s shell | -c comment | -m [-k skel_dir] ] username
Related File: /etc/passwd
#useradd -u 2002 -g RD -d /export/home/william -c “Engineer” -m -s /bin/sh william

3.Change password
Command: passwd username
#passwd william

2010年5月13日 星期四

[Solaris]鐘訊時間同步

打算把solaris的系統時間設定跟與手上這台PC一樣
而PC是設自動與time.windows.com同步處理

下面的指令是一次性的設定
#/usr/sbin/ntpdate -s time.windows.com
可以再用crontab的方式來做定期的同步更新

Updated at 2010/05/17
另一種方式
修改/etc/inet/ntp.conf
(如果沒有這個檔案可以直接copy /etc/inet/ntp.server)
將server的地方改為要同步對時的time server
server time.windows.com prefer
接著啟動xntpd service
/etc/init.d/xntpd start