2017年5月22日 星期一

增加 PHP 上傳檔案大小

 修改 /etc/php.ini

; Maximum allowed size for uploaded files.
; http://www.php.net/manual/en/ini.core.php#ini.upload-max-filesize
;upload_max_filesize = 2M
upload_max_filesize = 16M

; Maximum size of POST data that PHP will accept.
; http://www.php.net/manual/en/ini.core.php#ini.post-max-size
;post_max_size = 8M
post_max_size = 16M

cpio 複製目錄檔案

$ find . -depth | cpio -pmdv /targetdir

Linux 快速建立指定大小的檔案

dd
truncate
fallocate

Linux bash 查詢網路卡網路速度



netspeed.sh 內容
 
#!/bin/sh
ns(){
A=$(grep $1 /proc/net/dev | while read a1 r1 c c c c c c c s1 c;do echo $r1-$s1; done;)
sleep 1;
B=$(grep $1  /proc/net/dev | while read a1 r1 c c c c c c c s1 c;do echo $r1-$s1; done;)

echo Receive:  $(( ${B%-*} - ${A%-*} ));
echo Transmit: $(( ${B#*-} - ${A#*-} ));
};

[ -z "$1" ]&&exit 1||ns $1;

使用方法
sh netspeed.sh eth0

CentOS 5.11 使用 yum 更新

修改 /etc/yum.repos.d/CentOS-Base.repo

加入 baseurl=http://vault.centos.org/5.11/os/x86_64

Proxmox 使用 VNC Client 連線 VM

1.登入 Web VM Monitor 選項

2.使用 VNC Port 6000 連線
輸入
change vnc 0.0.0.0:100 

3.使用 VNC Port 6000 連線 + 密碼保護 (password0)
輸入
change vnc 0.0.0.0:100,password
set_password vnc password0