目標: 4G wifi 分享器,同時支援越多裝置連線越好
大部份小型wifi router大多只能支援10個client,只有找到以下兩個可以支援32個client
1. HUAWEI 華為 B315 4G-LTE 行動網路 WiFi分享 無線路由器
2. ZYXEL WAH7706 LTE 行動路由器
基本上兩台差不多,最大差別在於
B315下載最高150Mbps,WAH7706最高300Mbps
2017年3月22日 星期三
2017年3月21日 星期二
device tree dtb dts轉換
DTS to DTB:
./scripts/dtc/dtc -I dts -O dtb -o <devicetree name>.dtb <devicetree name>.dts
DTB back into a DTS:
./scripts/dtc/dtc -I dtb -O dts -o <devicetree name>.dts <devicetree name>.dtb
2016年8月28日 星期日
知名度PK : discuz VS phpbb
在台灣 discuz > phpbb
在中國 discuz > phpbb
在美國 phpbb >>> discuz
在全球 phpbb >>> discuz
台灣各大論壇後台使用狀況
discuz:
phpbb:
- https://www.google.com.tw/trends/explore?date=all&geo=TW&q=discuz,phpbb
- https://www.google.com.tw/trends/explore?date=today%2012-m&geo=TW&q=discuz,phpbb
在中國 discuz > phpbb
- https://www.google.com.tw/trends/explore?date=all&geo=CN&q=discuz,phpbb
在美國 phpbb >>> discuz
- https://www.google.com.tw/trends/explore?date=all&geo=US&q=discuz,phpbb
- https://www.google.com.tw/trends/explore?date=today%2012-m&geo=US&q=discuz,phpbb
在全球 phpbb >>> discuz
- https://www.google.com.tw/trends/explore?date=today%2012-m&q=discuz,phpbb
台灣各大論壇後台使用狀況
discuz:
- http://ck101.com/
- http://www24.eyny.com/index.php
- https://www.htcvive.com/tw/forum/chat.php?type=general
- http://www.tt1069.com/bbs/forum.php?
- http://www.piring.com/bbs/tcn/
- http://oursogo.com/
- http://taiwan-city.com/forum.php
- http://www.centurys.net/
- http://catdu.com/forumdisplay.php?fid=6&page=1
phpbb:
- http://www.news100.com.tw/
大陸地區雲端服務-節點個數比較
IDC點評
- 華為
- 節點太少,只有一個華北區,不考慮
- AWS
- 在中國有一個北京的點,此點並非所有服務都可以使用
- 不過基本的EC2+RDS都有
- CloudFront與Route53沒有
- 非中國區節點,較其他服務供應商多
- 華雲
- 海外節點只有一個:香港
- ucCloud
- 結點海外只有香港與美國加州
- 加速節點遍佈全球,在中國也頗多
- 阿里雲
- 世界第四?
- 海外節點:新加玻,美東,美西
- 中國結點:華東,華北,華南
- 準備上線結點:日本,中東,歐洲
- 騰訊
- 海外節點:新加玻,香港,多倫多
- 中國結點:廣州,上海,北京
參考資料:
http://developer.hwclouds.com/endpoint.html
https://aws.amazon.com/tw/about-aws/global-infrastructure/regional-product-services/
https://www.chinac.com/About/resourcenodes.html
https://www.ucloud.cn/site/dc/
https://docs.ucloud.cn/storage_cdn/ucdn/node.html
https://intl.aliyun.com/zh/why-alibaba-cloud?spm=a3c0i.7968205.230823.3.WqVEVl
2016年4月12日 星期二
sshfs on ubuntu / mac os
- Ubuntu安裝 SSHFS
- sudo apt-get install sshfs
- 新增可以使用 SSHFS 的使用者(以帳號hsu0301 為例)
- usermod -a -G fuse hsu0301
- 掛載 SSHFS 硬碟
- 下面的指令把hsu0301@192.168.1.2 的 /home/hsu0301 資料夾,掛到自己電腦的 remote_home資料夾
- sshfs hsu0301@192.168.1.2:/home/hsu0301 remote_home
- Mac安裝SSHFS
- 安裝OSXFUSE & SSHFS
- https://osxfuse.github.io
- 掛載 SSHFS 硬碟
- 下面的指令把hsu0301@192.168.1.2 的 /home/hsu0301 資料夾,掛到自己電腦的 remote_home資料夾
- sshfs hsu0301@192.168.1.2:/home/hsu0301 remote_home
標籤:
mac os 10.11,
ubuntu 14.04
2016年4月11日 星期一
hsu0301 is not in the sudoers file. This incident will be reported.
1. su
2. visudo
3.下面是添加完的结果。
## Allow root to run any commands anywhere
root
hsu0301 ALL=(ALL)
2016年3月8日 星期二
ubuntu 14.04 装 tftp server
1.安裝套件
sudo apt-get install xinetd tftpd tftp
4.sudo service xinetd restart
sudo apt-get install xinetd tftpd tftp
2.sudo vi /etc/xinetd.d/tftp
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = ~/tftp
disable = no
}
3.建立資料夾
sudo mkdir ~/tftp
sudo chmod -R 777 ~/tftp
sudo chown -R nobody ~/tftp
4.sudo service xinetd restart
5.測試tufts get file都會Error Code 2: Access violation
將/etc/xinetd.d/tftp 改成如下即可 ==
將/etc/xinetd.d/tftp 改成如下即可 ==
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = /home/jim.hsu/tftp
disable = no
}
訂閱:
文章 (Atom)