2013年3月26日 星期二

Proxmox VE 安裝 rsync

安裝相關軟體
apt-get dist-upgrade

apt-get update
apt-get install xinetd
apt-get install rsyncd

編輯 /etc/xinetd.d/rsync  內容如下

# default: off
# description: The rsync server is a good addition to an ftp server, as it \
# allows crc checksumming etc.
service rsync
{
disable = no
socket_type = stream
wait = no
user = root
server = /usr/bin/rsync
server_args = --daemon
log_on_failure += USERID
}

編輯
/etc/rsyncd.conf
/etc/rsyncd.secrets

設定 xinetd 開機執行
update-rc.d xinetd enable

2013年3月1日 星期五

使用UNIX date 指令轉換 時間 timestamp 表示方法

date +%s -d "2013-03-01 12:12:11"

date -d @1362129131 +'%F %H:%M:%S'