看过一篇文章,原文地址是:http://m.163.com/proxy?url=http://money.163.com/15/1223/14/BBHBAPPK00253G87.html 可惜网易把它删除了,看不到了。文中大致意思是,马云对中国互联网的管制的支持。
字面意思上看马云说得也对,也不对。政府的管,把国外的竞争者管在了中国之外,马云,马化腾,李彦宏这些人可以身处一个无竞争的环境完成原始积累。但是政府没有在互联网经济发展之时做好规划,形成相应的法律,使这些人完成了垄断。垄断一旦形成,上能控制供应链,下能影响消费者,而自己却拿着利润的大头。这些人能不感谢政府的“管”嘛。但是这样的管却深刻的影响了经济的发展,互联网成了法外之地,现在再立法却成为了几个巨头排除竞争的武器,他们当然希望管啊。
另外,如此的互联网经济给消费者带来的是低质量,低服务的消费,维权又难,假货又多。而对供应商而言,更是深刻的伤害,因为最大的利润在网络,供应商只能大降成本,继续降低产品质量,提供更多的劣质产品,投入更少的研发,继续山寨。何况,这些人怎么还继续在忽悠着,从马化腾忽悠的互联网+,到雷军的互联网思维,那都是在把中国经济往死里推,制造业是中国立国之本,中国从建国以来所有的规划都是往这条路上走,也符合我们的国情,可现在法外之地互联网利用政府的缺陷榨干了制造业。
我们的确有内需可以拉动,可如果中国只剩低端制造业内需只能外流,看看这几年中国人在日本韩国的疯狂购买,长此以往,中国企业产的东西没利润,没能力去研发,提高质量,产品越不被消费者接受,消费者越不买,中国企业越萎缩,这不就完蛋了。所谓的互联网经济从一开始就走歪了,没有法律的监管导致他们现在开始道貌岸然的反噬社会了,文章作者没说错什么,只是缺乏了更大的勇气去揭露其中政府自己的不作为和官商利益勾结,因为一个巴掌是拍不响的。
2016/10/04
在CentOS 7 x64上部署ShadowsocksR -- Deploy shadowsocksR on CentOS 7 x64
Deploy steps:
1. shadowsocksR on https://github.com/breakwa11/shadowsocks-rss
2. yum install git
3. git clone -b manyuser https://github.com/breakwa11/shadowsocks.git
4. the command will build a folder ./shadowsocks, ./shadowsocks is a mulit-user version for database, ./shadowsocks/shadowsocks is a single user version, we use it.
5. cd shadowsocks/shadowsocks
6. cp config.json to current folder to config it
7. my config.json is
{
"server": "0.0.0.0",
"local_address": "127.0.0.1",
"local_port":1080,
"port_password":{
"80":"password"
},
"timeout":300,
"method": "aes-256-cfb",
"protocol": "auth_sha1_v2",
"protocol_param": "",
"obfs": "http_simple",
"obfs_param": "bing.com",
"redirect": "bing.com",
"dns_ipv6": false,
"fast_open": true,
"workers": 1
}
8. add 80 port to firewall (make sure firewalld is running):
firewall-cmd --permanent --add-port=80/tcp
firewall-cmd --complete-reload
9. test for shadowsocks, in folder ./shadowsocks/shadowsocks:
python server.py -c config.json -d start
netstat -tunpl (check the port 80 is listened by the python)
10. if all done, build a system service to start the shadowsocksR with reboot:
vi /etc/systemd/system/shadowsocksr.service
[Unit]
Description=ShadowsocksR service
After=network.target
[Service]
Type=simple
User=root
ExecStart=/bin/python /root/shadowsocks/shadowsocks/server.py -c /root/shadowsocks/shadowsocks/config.json start
ExecReload=/bin/kill -HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true
KillMode=process
Restart=on-failure
RestartSec=5s
[Install]
WantedBy=multi-user.target
systemctl start shadowsocks-server.service
systemctl enable shadowsocks-server.service
Refrence site:
1. shadowsocksR project: https://github.com/breakwa11/shadowsocks-rss
2. shadowsocksR author blog for why use the obfs port for 80: https://breakwa11.blogspot.com/2016/07/linode.html
3. a brief for install shadowsocks, include build a system service: https://www.ifshow.com/centos-7-installation-and-configuration-shadowsocks/
4. CentOS firewalld detail information: https://blog.linuxeye.com/406.html
Tips:
1. use traceroute for find which server fit for my network envirement
2. the important 7 issues for installing CentOS: https://www.douban.com/note/517000039/
1. shadowsocksR on https://github.com/breakwa11/shadowsocks-rss
2. yum install git
3. git clone -b manyuser https://github.com/breakwa11/shadowsocks.git
4. the command will build a folder ./shadowsocks, ./shadowsocks is a mulit-user version for database, ./shadowsocks/shadowsocks is a single user version, we use it.
5. cd shadowsocks/shadowsocks
6. cp config.json to current folder to config it
7. my config.json is
{
"server": "0.0.0.0",
"local_address": "127.0.0.1",
"local_port":1080,
"port_password":{
"80":"password"
},
"timeout":300,
"method": "aes-256-cfb",
"protocol": "auth_sha1_v2",
"protocol_param": "",
"obfs": "http_simple",
"obfs_param": "bing.com",
"redirect": "bing.com",
"dns_ipv6": false,
"fast_open": true,
"workers": 1
}
8. add 80 port to firewall (make sure firewalld is running):
firewall-cmd --permanent --add-port=80/tcp
firewall-cmd --complete-reload
9. test for shadowsocks, in folder ./shadowsocks/shadowsocks:
python server.py -c config.json -d start
netstat -tunpl (check the port 80 is listened by the python)
10. if all done, build a system service to start the shadowsocksR with reboot:
vi /etc/systemd/system/shadowsocksr.service
[Unit]
Description=ShadowsocksR service
After=network.target
[Service]
Type=simple
User=root
ExecStart=/bin/python /root/shadowsocks/shadowsocks/server.py -c /root/shadowsocks/shadowsocks/config.json start
ExecReload=/bin/kill -HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true
KillMode=process
Restart=on-failure
RestartSec=5s
[Install]
WantedBy=multi-user.target
systemctl start shadowsocks-server.service
systemctl enable shadowsocks-server.service
Refrence site:
1. shadowsocksR project: https://github.com/breakwa11/shadowsocks-rss
2. shadowsocksR author blog for why use the obfs port for 80: https://breakwa11.blogspot.com/2016/07/linode.html
3. a brief for install shadowsocks, include build a system service: https://www.ifshow.com/centos-7-installation-and-configuration-shadowsocks/
4. CentOS firewalld detail information: https://blog.linuxeye.com/406.html
Tips:
1. use traceroute for find which server fit for my network envirement
2. the important 7 issues for installing CentOS: https://www.douban.com/note/517000039/
订阅:
博文 (Atom)