2018年4月27日 星期五

busybox sendmail 指令用法

使用範例
sendmail -f from@mail.address -t to@mail.address -S smtp-server < mail.txt

參數說明
-f 送件信箱
-t 收件信箱
-au 送件帳號
-ap 送件帳號密碼
-S SMTP Server domain name 或 ip

mail.txt 信件內容範例
Subject: Test
CC:
To: to@mail.address
From: from@mail.address

        xxxxxx
        xxxxxx
        xxxxxx

2018年4月26日 星期四

Dlink dns323 fun_plug 設定 OpenSSH Secure Shell Server

1.安裝 fun_plug

2.sh /ffp/start/sshd.sh start

chsh -s /ffp/bin/bash root
chsh -s /ffp/bin/bash admin

store-passwd.sh

chmod a+wx /mnt/HD_a2/ffp/start/sshd.sh
chmod a+w /mnt/HD_a2/ffp/start/telnetd.sh
chmod -x /mnt/HD_a2/ffp/start/telnetd.sh

2018年4月20日 星期五

raspberry pi 中文設定

1.安裝中文字型
sudo apt-get install ttf-wqy-microhei ttf-wqy-zenhei xfonts-wqy

2.locale設定成繁體中文。
sudo dpkg-reconfigure locales
選擇 zh_TW BIG5、zh_TW.EUC_TW EUC-TW、zh_TW.UTF-8 UTF-8,
zh_TW.UTF-8設定為預設的locale

3.安裝中文輸入法
sudo apt-get install scim scim-tables-zh scim-chewing
使用 Ctrl-Space即可切換輸入法,輸入中文

raspberry pi 掛載 exfat

apt-get install ntfs-3g
apt-get install exfat-fuse exfat-utils

2018年4月9日 星期一

Proxmox LXC Root 無法登入 console

編輯 /etc/securetty 加入

lxc/console
lxc/tty1
lxc/tty2
lxc/tty3
lxc/tty4
pts/0

2018年4月2日 星期一

Proxmox 5.1 LXC 掛載 NFS Server

LXC 全部 開放
1.編輯 /etc/apparmor.d/lxc/lxc-default,/etc/apparmor.d/lxc/lxc-default-cgns加入
mount fstype=rpc_pipefs,
mount fstype=nfs,
mount options=(rw, bind, ro),

2.重啟 apparmor 服務
service apparmor reload

僅開放特定 LXC
1.編輯/etc/apparmor.d/lxc/lxc-default-with-nfs
profile lxc-container-default-with-nfs flags=(attach_disconnected,mediate_deleted) {
  #include <abstractions/lxc/container-base>

  # the container may never be allowed to mount devpts.  If it does, it
  # will remount the host's devpts.  We could allow it to do it with
  # the newinstance option (but, right now, we don't).
  deny mount fstype=devpts,
  mount fstype=cgroup -> /sys/fs/cgroup/**,
  mount fstype=nfs,
  mount fstype=nfs4,
  mount fstype=nfsd,
  mount fstype=rpc_pipefs,
}


2.編輯 /etc/pve/lxc/[vid].conf 加入
lxc.apparmor.profile: lxc-container-default-with-nfs


3.重啟 apparmor 服務
service apparmor reload


Proxmox 5.1 LXC 設定 NFS-server

echo "lxc.aa_profile: unconfined" >> /etc/pve/lxc/<LXC-ID>.conf
echo "lxc.aa_profile=unconfined" >> /var/lib/lxc/<LXC-ID>/config