找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
广告投放联系QQ68610888广告投放联系QQ68610888
广告投放联系QQ68610888广告投放联系QQ68610888
查看: 18320|回复: 44

赚钱宝pro PHP Mysql 建站 (已复核完毕并录屏)

[复制链接]
发表于 2016-3-13 22:14 | 显示全部楼层 |阅读模式
本帖最后由 caijixun 于 2016-4-1 20:25 编辑

      一直想在openwrt 上搭建动态网站开发环境,刚好手上有坑钱宝性能还过得去。于是苦熬了N个晚上研究大神的帖子,经历无数次痛苦的失败调测。终于成功搭起了FTP服务器及 PHP、 Mysql 、运行环境并安装了PPPOE拨号配置DDNS。晒一下探针运行的截图,和运行时CPU的数据、top 数据。
      过程有些曲折,参考过多位大神的帖子。不断调试所以操作记录也很乱,还没时间整理。
      先上个图,证实下坑钱宝架网站的可行性,供玩家参考。
      演示站点:http://ovo.f3322.net:88/bbs

很抱歉pro的操作记录没有保存,我在1代上试了一下也成功架上网站。折腾的记录分享给大家未经整理,仅供思考参考。
(后期会整理成教程优先在http://ovo.f3322.org:88/bbs上发布)
=========================================================================
====================================================================================================
关于本教程重要说明:
1、玩这个最好有点Linux 基础,能根据操作过程反馈信息判断问题,并能解决问题。本人的每次操作都可能会出现不同的问题。
2、用本教程架网站的前提条件:1、有设备root权限  2、安装并配置好qnapware  3、装好FTP服务器 (3者缺1不可,2、3项本论坛都已出教程,如何root 请百度搜一下)
3、硬盘建议分成两个分区,一个用于挖矿,一个用于存放网站数据。可以在windows下分好,再挂上。
4、本教程(红色字)为注释,不要输入;绿色字体是操作命令。
5、为保证操作命令和代码的准确,我写的教程都是真实操作记录整理,如有错误欢迎指正。
6、请尊重别人的劳动成果转载请务必注明出处:http://ovo.f3322.net

===========================================================================
==============================================================================
第一部分---- 安装Mysql (已复核,并出视频(详见:ovo.f3322.net))
Mysql 是Openwrt 上架动态网站的理想数据库。如果完成这部份那恭喜你,已经成功一半了。

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
#
#/opt/bin/opkg update (更新安装包)
Downloading http://qnapware.zyxmon.org/binaries-armv7/Packages.gz.
Updated list of available packages in /opt/var/opkg-lists/packages.
#  
# cd /opt (进入安装目录 /opt )
#
# /opt/bin/opkg install mysql-server ( 安装Mysql )
Installing mysql-server (5.1.73-2) to root...
Downloading http://qnapware.zyxmon.org/binaries-armv7/mysql-server_5.1.73-2_armv7soft.ipk.
Installing libncursesw (5.9-2) to root...
Downloading http://qnapware.zyxmon.org/binaries-armv7/libncursesw_5.9-2_armv7soft.ipk.
Installing libreadline (6.3-1) to root...
Downloading http://qnapware.zyxmon.org/binaries-armv7/libreadline_6.3-1_armv7soft.ipk.
Configuring libncursesw.
Configuring libreadline.
Configuring mysql-server.  

#
#mkdir /media/sda2/data ( 建立数据库工作目录。)
#mkdir /media/sda2/data/mysql ( 建立数据库目录,目录可自定义,后面配置改好即可 。)
#mkdir /media/sda2/data/tmp ( 建立数据库临时文件目录 ,目录可自定义,后面配置改好即可 。)
#
#vi /opt/etc/my.cnf  ( 编辑配置文件 )
#
---------------------------------------------------------------------------------------------------------------------
参考配置文件 my.cnf
---------------------------------------------------------------------------------------------------------------------
[client]
port  = 3306
socket  = /opt/var/run/mysqld.sock
[mysqld]
user  = root
socket  = /opt/var/run/mysqld.sock
port  = 3306
basedir  = /opt
############ Don't put this on the NAND #############
# Figure out where you are going to put the databases
# And run mysql_install_db --force
datadir  = /media/sda2/data/mysql ( 改成你数据库实际绝对路径,目录请提前建好。 )
######### This should also not go on the NAND #######
tmpdir  = /media/sda2/data/tmp/( 改成你数据库临时文件实际绝对路径, 目录请提前建好。
skip-external-locking
bind-address  = 127.0.0.1
# Fine Tuning
key_buffer  = 16M
max_allowed_packet = 16M
thread_stack  = 192K
thread_cache_size       = 8
# Here you can see queries with especially long duration
#log_slow_queries = /opt/var/log/mysql/mysql-slow.log
#long_query_time = 2
#log-queries-not-using-indexes
# The following can be used as easy to replay backup logs or for replication.
#server-id  = 1
#log_bin   = /opt/var/log/mysql/mysql-bin.log
#expire_logs_days = 10
#max_binlog_size         = 100M
#binlog_do_db  = include_database_name
#binlog_ignore_db = include_database_name
[mysqldump]
quick
quote-names
max_allowed_packet = 16M
[mysql]
#no-auto-rehash # faster start of mysql but no tab completition
[isamchk]
key_buffer  = 16M

---------------------------------------------------------------------------------------------------------------------
#
# /opt/bin/mysql_install_db  --force ( 初始化数据库)
Installing MySQL system tables...
OK
Filling help tables...
OK
To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:
/opt/bin/mysqladmin -u root password 'new-password'
/opt/bin/mysqladmin -u root -h XL_MINER_0125 password 'new-password'
Alternatively you can run:
/opt/bin/mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.
See the manual for more instructions.
You can start the MySQL daemon with:
cd /opt ; /opt/bin/mysqld_safe &
You can test the MySQL daemon with mysql-test-run.pl
cd /opt/mysql-test ; perl mysql-test-run.pl
Please report any problems with the /opt/scripts/mysqlbug script!
#
# /opt/etc/init.d/S70mysqld start
Starting mysqld...              done.  ( 数据库启动成功 !)
#
# /opt/bin/mysqladmin -u root password '12345678' ( 设置你的数据库密码为:12345678 建议设更复杂密码。 )
#
# /opt/bin/mysql -u root -p
Enter password:  ( 输入你的数据库密码为:12345678 )
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 2
Server version: 5.1.73 Source distribution
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
mysql> ( 如果看到这行,那么恭喜你,已经成功一半了!!!可以先休息一下了。)
mysql> Ctrl-C -- exit!
Aborted

===========================================================
第二部分---- 安装Nginx WEB 服务器(已复核,并出视频 详见:ovo.f3322.net)
--------------------------------------------------------------------------------------------------------------------------------------------------------


#
#mkdir /media/sda1/web建立网站工作目录,目录可自定义,后面配置改好即可
#mkdir /media/sda1/web/tmp ( 建立网站临时文件目录 ,目录可自定义,后面配置改好即可
#
# /opt/bin/opkg install nginx 安装Nginx
Installing nginx (1.4.7-4) to root...
Downloading http://qnapware.zyxmon.org/binaries-armv7/nginx_1.4.7-4_armv7soft.ipk.
Configuring nginx.
#  
# vi /opt/etc/nginx/nginx.conf (编辑配置文件,进入后按 “ i ” 键进入编辑模式,编辑完成后按 "esc" 键退出并输入 “ :wq " 保存配置)
#  
-------------------------------------------------------------------------------------------
参考nginx.conf配置
---------------------------------------------------------------------------------------------------------------------------------



user root;
worker_processes  1;
error_log /opt/var/log/nginx/error.log;
#error_log /opt/var/log/nginx/error.log notice;
#error_log /opt/var/log/nginx/error.log info;
pid       /opt/var/run/nginx.pid;
events {
   use epoll;
   worker_connections  64;
}
http {
   include       mime.types;
   default_type application/octet-stream;
   #log_format  main  '$remote_addr - $remote_user [$time_local]"$request" '
   #                  '$status$body_bytes_sent "$http_referer" '
   #                 '"$http_user_agent" "$http_x_forwarded_for"';
   #access_log /opt/var/log/nginx/access.log;
   sendfile        on;
   #tcp_nopush     on;
   #keepalive_timeout  0;



   keepalive_timeout  65;
   gzip  on;
   access_log   off;
   include       vhost.conf;
}
--------------------------------------------------------------------------------------------------------------------------------
#
# vi /opt/etc/nginx/vhost.conf (编辑配置文件,进入后按 “ i ” 键进入编辑模式,编辑完成后按 "esc" 键退出并输入 “ :wq " 保存配置(也可以在FTP软件编辑))
#


---------------------------------------------------------------------------------------------------------------------------------
添加vhost.conf 文件( 参考配置 )
---------------------------------------------------------------------------------------------------------------------------------
server {
       listen       88; 监听端口,如果当地宽带运营商屏蔽了80端口请改为其他端口
       server_name  localhost;
       root  /media/sda1/web; (请填写自己的真实网站工作目录,目录可提前建好。   
       index  index.html index.htmindex.php default.php;
       error_page   500 502 503 504  /50x.html;
       location = /50x.html {
       root html;
       }
       location ~\.php$ {
       fastcgi_pass   127.0.0.1:9000;
       fastcgi_index  index.php;
       fastcgi_param  SCRIPT_FILENAME  /media/sda1/web/$fastcgi_script_name;
       include        fastcgi_params;


    }
}
#
#/opt/etc/init.d/S80nginx start
Starting nginx...              done.






====================================================================
第三部分---- 安装PHP解析组件
(篇幅限制,祥见:ovo.f3322.net
---------------------------------------------------------------------------------------------------------------------------------------------------------








本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×
只谈技术、莫论政事!(点击见详情) | 互相尊重、友善交流、切勿过度反应、玻璃心。胡乱输入灌水等操作将会被封禁ID。
发表于 2016-3-13 23:05 来自手机 | 显示全部楼层
高人啊,希望有教程,最好再另做一个云监工的教程

点评

云监工的教程已发布。  详情 回复 发表于 2016-4-1 20:23
我的云监工装好了,邀请你测试! http://ovo.f3322.net  详情 回复 发表于 2016-3-24 23:39
求教云监工是啥?  详情 回复 发表于 2016-3-18 22:52
1代的操作记录已发,后期会整理成教程并优先在http://ovo.f3322.net:88/bbs发布。 云监工有时会研究,成功了分享给大家!  详情 回复 发表于 2016-3-16 21:56
只谈技术、莫论政事!(点击见详情) | 互相尊重、友善交流、切勿过度反应、玻璃心。胡乱输入灌水等操作将会被封禁ID。
回复

使用道具 举报

发表于 2016-3-14 16:15 | 显示全部楼层
发来贺电!

点评

感谢关注!  详情 回复 发表于 2016-3-16 22:02
只谈技术、莫论政事!(点击见详情) | 互相尊重、友善交流、切勿过度反应、玻璃心。胡乱输入灌水等操作将会被封禁ID。
回复

使用道具 举报

发表于 2016-3-14 16:21 | 显示全部楼层
牛B人物  希望能出个教程

点评

楼主: 架网站部分教程已出。 http://ovo.f3322.net:88/bbs 抢先发布  详情 回复 发表于 2016-3-18 09:37
1代的操作记录已发,后期会整理成教程并优先在http://ovo.f3322.net:88/bbs发布。 敬请期待!  详情 回复 发表于 2016-3-16 22:00
只谈技术、莫论政事!(点击见详情) | 互相尊重、友善交流、切勿过度反应、玻璃心。胡乱输入灌水等操作将会被封禁ID。
回复

使用道具 举报

发表于 2016-3-16 17:06 | 显示全部楼层
  能教教我吗。我试了很多次都是没成功 。。191915930 扣扣

点评

楼主: 很抱歉!调试过程很费时间,无法一 一通过QQ远程帮助每位坛友。 调试过程中有问题可以在 http://ovo.f3322.net:88/bbs 留言,我会 尽快回复。尽自己所能提供帮助。  详情 回复 发表于 2016-3-18 09:42
1代的操作记录已发,后期会整理成教程并优先在http://ovo.f3322.net:88/bbs发布。  详情 回复 发表于 2016-3-16 22:02
只谈技术、莫论政事!(点击见详情) | 互相尊重、友善交流、切勿过度反应、玻璃心。胡乱输入灌水等操作将会被封禁ID。
回复

使用道具 举报

 楼主| 发表于 2016-3-16 21:43 | 显示全部楼层
本帖最后由 caijixun 于 2016-3-17 16:51 编辑

(接上贴,调试过程)
# ps
PID   USER     COMMAND
    1 root     init
    2 root     [kthreadd]
    3 root     [ksoftirqd/0]
    4 root     [kworker/0:0]
    5 root     [kworker/0:0H]
    6 root     [kworker/u8:0]
    7 root     [migration/0]
    8 root     [rcu_preempt]
    9 root     [rcu_bh]
   10 root     [rcu_sched]
   11 root     [watchdog/0]
   12 root     [watchdog/1]
   13 root     [migration/1]
   14 root     [ksoftirqd/1]
   15 root     [kworker/1:0]
   16 root     [kworker/1:0H]
   17 root     [watchdog/2]
   18 root     [migration/2]
   19 root     [ksoftirqd/2]
   20 root     [kworker/2:0]
   21 root     [kworker/2:0H]
   22 root     [watchdog/3]
   23 root     [migration/3]
   24 root     [ksoftirqd/3]
   25 root     [kworker/3:0]
   26 root     [kworker/3:0H]
   27 root     [khelper]
   28 root     [kdevtmpfs]
   29 root     [suspend]
   30 root     [kworker/0:1]
   31 root     [kworker/1:1]
   32 root     [kworker/3:1]
   33 root     [kworker/2:1]
   34 root     [writeback]
   35 root     [bioset]
   36 root     [kblockd]
   37 root     [khubd]
   38 root     [cfg80211]
   39 root     [rpciod]
   40 root     [khungtaskd]
   41 root     [kswapd0]
   42 root     [ksmd]
   43 root     [fsnotify_mark]
   44 root     [nfsiod]
   45 root     [cifsiod]
   46 root     [crypto]
   62 root     [kpsmoused]
   63 root     [cfinteractive]
   64 root     [NULL_task_for_h]
   65 root     [cpu_hotplug_gdb]
   66 root     [cpu_idle_gdbs]
   67 root     [binder]
   68 root     [dwc_otg]
   69 root     [dwc_otg]
   70 root     [kworker/u8:1]
   73 root     [irq/60-sdio]
   74 root     [irq/99-mmc_in]
   75 root     [irq/101-mmc_out]
   76 root     [scsi_eh_0]
   77 root     [usb-storage]
   78 root     [rtc]
   84 root     [deferwq]
  101 root     [kworker/0:2]
  102 root     [ubi_bgt0d]
  104 root     [ubifs_bgt0_0]
  106 root     [kworker/u8:2]
  133 root     /sbin/syslogd -n
  136 root     /sbin/klogd -n
  169 root     [kworker/2:1H]
  183 root     [ufsd_sda1]
  193 root     [ufsd_sda2]
  237 root     /usr/sbin/inetd -f
  244 root     vsftpd
  275 root     {live_start.sh} /bin/sh /bin/live_start.sh
  278 root     {live_monitor.sh} /bin/sh /bin/live_monitor.sh
  284 root     sleep 7200
  286 root     {speedtest-updat} /bin/sh ./speedtest-update
  308 root     sleep 300
  315 root     ./speedtest
  316 root     sleep 3600
  317 root     /thunder/bin/ubusd -s /var/run/ubus.sock
  321 root     /thunder/bin/uhttpd -p 127.0.0.1:80 -u /ubus -a -h /thunder/www
  322 root     /thunder/bin/minissdpd -i eth0 -i lo
  325 root     /thunder/bin/pdnsd -d
  336 root     /bin/sh /thunder/etc/start_app.sh
  337 root     /bin/sh /thunder/etc/sync_data.sh
  340 root     /bin/sh /thunder/bin/run_explore_node.sh
  353 root     /thunder/bin/netcfg
  356 root     /sbin/getty 38400 tty1
  357 root     /sbin/getty 38400 tty2
  360 root     /usr/bin/tail -f /var/log/messages
  363 root     -/bin/sh
  364 root     /sbin/syslogd -n
  365 root     /sbin/klogd -n
  426 root     /thunder/bin/mnt
  443 root     /thunder/bin/xqos
  449 root     /thunder/bin/upnp_client
  451 root     /sbin/sshd
  465 root     [kworker/3:1H]
  479 root     [kworker/1:1H]
  492 root     /thunder/bin/remote
  572 root     sshd: root@pts/0
  574 root     -sh
  581 root     /usr/sbin/ntpd
  585 root     /thunder/bin/upgrade
  588 root     [kworker/0:1H]
  596 root     /thunder/bin/dcdn
  601 root     /thunder/bin/dcdn_client 0
  616 root     xargs /thunder/bin/miner_32/explore_node
  618 root     /thunder/bin/miner_32/explore_node ABPZ0F6200125
  623 root     sleep 30
  680 root     sleep 10
  686 root     sleep 30
  703 root     [telnetd]
  704 root     [sh]
  705 root     ps
#
#
#
#
#
# top
Mem: 56024K used, 177088K free, 0K shrd, 5164K buff, 18228K cached
CPU:   9% usr   0% sys   0% nic  90% idle   0% io   0% irq   0% sirq
Load average: 0.94 0.33 0.12 1/137 912
  PID  PPID USER     STAT   VSZ %VSZ %CPU COMMAND
  912   574 root     R     1924   1%   9% top
  325     1 root     S    37504  16%   0% /thunder/bin/pdnsd -d
  618   616 root     S    21560   9%   0% /thunder/bin/miner_32/explore_node ABPZ0F620012
  601     1 root     S    15100   6%   0% /thunder/bin/dcdn_client 0
  426   336 root     S    12040   5%   0% /thunder/bin/mnt
  353   336 root     S     8344   4%   0% /thunder/bin/netcfg
  449   336 root     S     7788   3%   0% /thunder/bin/upnp_client
  492   336 root     S     7072   3%   0% /thunder/bin/remote
  443   336 root     S     5180   2%   0% /thunder/bin/xqos
  585   336 root     S     4776   2%   0% /thunder/bin/upgrade
  596   336 root     S     4612   2%   0% /thunder/bin/dcdn
  572   451 root     S     4056   2%   0% sshd: root@pts/0
  451     1 root     S     4008   2%   0% /sbin/sshd
  315   286 root     S     2992   1%   0% ./speedtest
  810     1 root     S     2688   1%   0% /usr/sbin/ntpd
  321     1 root     S     2316   1%   0% /thunder/bin/uhttpd -p 127.0.0.1:80 -u /ubus -a
  891   889 root     S     2088   1%   0% vsftpd
  889   244 root     S     2052   1%   0% vsftpd
  574   572 root     S     1996   1%   0% -sh
  363     1 root     S     1996   1%   0% -/bin/sh
  237     1 root     S     1992   1%   0% /usr/sbin/inetd -f
  244     1 root     S     1976   1%   0% vsftpd
  616   340 root     S     1960   1%   0% xargs /thunder/bin/miner_32/explore_node
  356     1 root     S     1928   1%   0% /sbin/getty 38400 tty1
  357     1 root     S     1928   1%   0% /sbin/getty 38400 tty2
    1     0 root     S     1924   1%   0% init
  360     1 root     S     1924   1%   0% /usr/bin/tail -f /var/log/messages
  364     1 root     S     1924   1%   0% /sbin/syslogd -n
  340     1 root     S     1924   1%   0% /bin/sh /thunder/bin/run_explore_node.sh
  336     1 root     S     1924   1%   0% /bin/sh /thunder/etc/start_app.sh
  133     1 root     S     1924   1%   0% /sbin/syslogd -n
Mem: 56068K used, 177044K free, 0K shrd, 5164K buff, 18228K cached
CPU:   4% usr  22% sys   0% nic  72% idle   0% io   0% irq   0% sirq
Load average: 0.94 0.34 0.12 1/137 927
  PID  PPID USER     STAT   VSZ %VSZ %CPU COMMAND
  426   336 root     S    12040   5%  12% /thunder/bin/mnt
  601     1 root     S    15100   6%   5% /thunder/bin/dcdn_client 0
  912   574 root     R     1996   1%   2% top
    8     2 root     SW       0   0%   1% [rcu_preempt]
    1     0 root     S     1924   1%   1% init
   30     2 root     SW       0   0%   1% [kworker/0:1]
  572   451 root     S     4056   2%   0% sshd: root@pts/0
  353   336 root     S     8344   4%   0% /thunder/bin/netcfg
  315   286 root     S     2992   1%   0% ./speedtest
  360     1 root     S     1924   1%   0% /usr/bin/tail -f /var/log/messages
  364     1 root     S     1924   1%   0% /sbin/syslogd -n
  337     1 root     S     1924   1%   0% /bin/sh /thunder/etc/sync_data.sh
    6     2 root     SW       0   0%   0% [kworker/u8:0]
  325     1 root     S    37504  16%   0% /thunder/bin/pdnsd -d
  618   616 root     S    21560   9%   0% /thunder/bin/miner_32/explore_node ABPZ0F620012
  449   336 root     S     7788   3%   0% /thunder/bin/upnp_client
  492   336 root     S     7072   3%   0% /thunder/bin/remote
  443   336 root     S     5180   2%   0% /thunder/bin/xqos
  585   336 root     S     4776   2%   0% /thunder/bin/upgrade
  596   336 root     S     4612   2%   0% /thunder/bin/dcdn
  451     1 root     S     4008   2%   0% /sbin/sshd
  810     1 root     S     2688   1%   0% /usr/sbin/ntpd
  321     1 root     S     2316   1%   0% /thunder/bin/uhttpd -p 127.0.0.1:80 -u /ubus -a
  891   889 root     S     2088   1%   0% vsftpd
  889   244 root     S     2052   1%   0% vsftpd
  574   572 root     S     1996   1%   0% -sh
  363     1 root     S     1996   1%   0% -/bin/sh
  237     1 root     S     1992   1%   0% /usr/sbin/inetd -f
  244     1 root     S     1976   1%   0% vsftpd
  616   340 root     S     1960   1%   0% xargs /thunder/bin/miner_32/explore_node
  356     1 root     S     1928   1%   0% /sbin/getty 38400 tty1
#
#
# /opt/etc/init.d/S70mysqld enable
Usage: /opt/etc/init.d/S70mysqld (start|stop|restart|check|kill|reconfigure)
# /opt/etc/init.d/S70mysqld start
Starting mysqld...              done.
#
#
#
# /opt/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -C 2 -f /opt/bin/php-cgi
spawn-fcgi: child spawned successfully: PID: 1835
#
#
#
# /opt/etc/init.d/S80nginx start
Starting nginx...              done.
#
#
#
#
#
#
#
#
# top
Mem: 62272K used, 170840K free, 0K shrd, 5196K buff, 23104K cached
CPU:   0% usr  18% sys   0% nic  81% idle   0% io   0% irq   0% sirq
Load average: 0.75 0.61 0.32 1/139 2150
  PID  PPID USER     STAT   VSZ %VSZ %CPU COMMAND
2148   574 root     R     1924   1%  18% top
  325     1 root     S    37504  16%   0% /thunder/bin/pdnsd -d
  618   616 root     S    21560   9%   0% /thunder/bin/miner_32/explore_node ABPZ0F620012
  601     1 root     S    15100   6%   0% /thunder/bin/dcdn_client 0
  426   336 root     S    12040   5%   0% /thunder/bin/mnt
1835     1 root     S     9664   4%   0% /opt/bin/php-cgi
1836  1835 root     S     9664   4%   0% /opt/bin/php-cgi
1837  1835 root     S     9664   4%   0% /opt/bin/php-cgi
  353   336 root     S     8344   4%   0% /thunder/bin/netcfg
  449   336 root     S     7788   3%   0% /thunder/bin/upnp_client
  492   336 root     S     7072   3%   0% /thunder/bin/remote
  443   336 root     S     5180   2%   0% /thunder/bin/xqos
  585   336 root     S     4776   2%   0% /thunder/bin/upgrade
  596   336 root     S     4612   2%   0% /thunder/bin/dcdn
  572   451 root     S     4056   2%   0% sshd: root@pts/0
  451     1 root     S     4008   2%   0% /sbin/sshd
  315   286 root     S     2992   1%   0% ./speedtest
  810     1 root     S     2688   1%   0% /usr/sbin/ntpd
  891   889 root     S     2372   1%   0% vsftpd
  321     1 root     S     2316   1%   0% /thunder/bin/uhttpd -p 127.0.0.1:80 -u /ubus -a
  889   244 root     S     2052   1%   0% vsftpd
  574   572 root     S     1996   1%   0% -sh
  363     1 root     S     1996   1%   0% -/bin/sh
  237     1 root     S     1992   1%   0% /usr/sbin/inetd -f
  244     1 root     S     1976   1%   0% vsftpd
  616   340 root     S     1960   1%   0% xargs /thunder/bin/miner_32/explore_node
  356     1 root     S     1928   1%   0% /sbin/getty 38400 tty1
  357     1 root     S     1928   1%   0% /sbin/getty 38400 tty2
    1     0 root     S     1924   1%   0% init
  360     1 root     S     1924   1%   0% /usr/bin/tail -f /var/log/messages
  364     1 root     S     1924   1%   0% /sbin/syslogd -n
#
#
# ps
PID   USER     COMMAND
    1 root     init
    2 root     [kthreadd]
    3 root     [ksoftirqd/0]
    5 root     [kworker/0:0H]
    6 root     [kworker/u8:0]
    7 root     [migration/0]
    8 root     [rcu_preempt]
    9 root     [rcu_bh]
   10 root     [rcu_sched]
   11 root     [watchdog/0]
   12 root     [watchdog/1]
   13 root     [migration/1]
   14 root     [ksoftirqd/1]
   15 root     [kworker/1:0]
   16 root     [kworker/1:0H]
   17 root     [watchdog/2]
   18 root     [migration/2]
   19 root     [ksoftirqd/2]
   20 root     [kworker/2:0]
   21 root     [kworker/2:0H]
   22 root     [watchdog/3]
   23 root     [migration/3]
   24 root     [ksoftirqd/3]
   25 root     [kworker/3:0]
   26 root     [kworker/3:0H]
   27 root     [khelper]
   28 root     [kdevtmpfs]
   29 root     [suspend]
   30 root     [kworker/0:1]
   31 root     [kworker/1:1]
   32 root     [kworker/3:1]
   33 root     [kworker/2:1]
   34 root     [writeback]
   35 root     [bioset]
   36 root     [kblockd]
   37 root     [khubd]
   38 root     [cfg80211]
   39 root     [rpciod]
   40 root     [khungtaskd]
   41 root     [kswapd0]
   42 root     [ksmd]
   43 root     [fsnotify_mark]
   44 root     [nfsiod]
   45 root     [cifsiod]
   46 root     [crypto]
   62 root     [kpsmoused]
   63 root     [cfinteractive]
   64 root     [NULL_task_for_h]
   65 root     [cpu_hotplug_gdb]
   66 root     [cpu_idle_gdbs]
   67 root     [binder]
   68 root     [dwc_otg]
   69 root     [dwc_otg]
   73 root     [irq/60-sdio]
   74 root     [irq/99-mmc_in]
   75 root     [irq/101-mmc_out]
   76 root     [scsi_eh_0]
   77 root     [usb-storage]
   78 root     [rtc]
   84 root     [deferwq]
  101 root     [kworker/0:2]
  102 root     [ubi_bgt0d]
  104 root     [ubifs_bgt0_0]
  106 root     [kworker/u8:2]
  133 root     /sbin/syslogd -n
  136 root     /sbin/klogd -n
  169 root     [kworker/2:1H]
  183 root     [ufsd_sda1]
  193 root     [ufsd_sda2]
  237 root     /usr/sbin/inetd -f
  244 root     vsftpd
  275 root     {live_start.sh} /bin/sh /bin/live_start.sh
  278 root     {live_monitor.sh} /bin/sh /bin/live_monitor.sh
  284 root     sleep 7200
  286 root     {speedtest-updat} /bin/sh ./speedtest-update
  315 root     ./speedtest
  316 root     sleep 3600
  317 root     /thunder/bin/ubusd -s /var/run/ubus.sock
  321 root     /thunder/bin/uhttpd -p 127.0.0.1:80 -u /ubus -a -h /thunder/www
  322 root     /thunder/bin/minissdpd -i eth0 -i lo
  325 root     /thunder/bin/pdnsd -d
  336 root     /bin/sh /thunder/etc/start_app.sh
  337 root     /bin/sh /thunder/etc/sync_data.sh
  340 root     /bin/sh /thunder/bin/run_explore_node.sh
  353 root     /thunder/bin/netcfg
  356 root     /sbin/getty 38400 tty1
  357 root     /sbin/getty 38400 tty2
  360 root     /usr/bin/tail -f /var/log/messages
  363 root     -/bin/sh
  364 root     /sbin/syslogd -n
  365 root     /sbin/klogd -n
  426 root     /thunder/bin/mnt
  443 root     /thunder/bin/xqos
  449 root     /thunder/bin/upnp_client
  451 root     /sbin/sshd
  465 root     [kworker/3:1H]
  479 root     [kworker/1:1H]
  492 root     /thunder/bin/remote
  572 root     sshd: root@pts/0
  574 root     -sh
  585 root     /thunder/bin/upgrade
  588 root     [kworker/0:1H]
  596 root     /thunder/bin/dcdn
  601 root     /thunder/bin/dcdn_client 0
  616 root     xargs /thunder/bin/miner_32/explore_node
  618 root     /thunder/bin/miner_32/explore_node ABPZ0F6200125
  810 root     /usr/sbin/ntpd
  889 root     vsftpd
  891 root     vsftpd
1592 root     sleep 300
1799 root     [kworker/u8:1]
1835 root     /opt/bin/php-cgi
1836 root     /opt/bin/php-cgi
1837 root     /opt/bin/php-cgi
2265 root     sleep 30
2281 root     sleep 10
2297 root     sleep 30
2303 root     [telnetd]
2304 root     [sh]
2305 root     ps
#
#
#
#
# /opt/etc/init.d/S80nginx stop
Checking nginx...              dead.
#
#
#
#
# killall php-cgi
#
#
#
# top
Mem: 143484K used, 89628K free, 0K shrd, 5208K buff, 105504K cached
CPU:  10% usr  10% sys   0% nic  80% idle   0% io   0% irq   0% sirq
Load average: 1.36 1.02 0.70 1/134 5091
  PID  PPID USER     STAT   VSZ %VSZ %CPU COMMAND
  601     1 root     S    15100   6%   7% /thunder/bin/dcdn_client 0
5091   574 root     R     1924   1%   7% top
   30     2 root     SW       0   0%   7% [kworker/0:1]
  325     1 root     S    37504  16%   0% /thunder/bin/pdnsd -d
  618   616 root     S    21560   9%   0% /thunder/bin/miner_32/explore_node ABPZ0F620012
  426   336 root     S    12040   5%   0% /thunder/bin/mnt
  353   336 root     S     8344   4%   0% /thunder/bin/netcfg
  449   336 root     S     7788   3%   0% /thunder/bin/upnp_client
  492   336 root     S     7072   3%   0% /thunder/bin/remote
  443   336 root     S     5180   2%   0% /thunder/bin/xqos
  585   336 root     S     4776   2%   0% /thunder/bin/upgrade
  596   336 root     S     4612   2%   0% /thunder/bin/dcdn
  572   451 root     S     4056   2%   0% sshd: root@pts/0
  451     1 root     S     4008   2%   0% /sbin/sshd
  315   286 root     S     2992   1%   0% ./speedtest
  810     1 root     S     2688   1%   0% /usr/sbin/ntpd
  321     1 root     S     2316   1%   0% /thunder/bin/uhttpd -p 127.0.0.1:80 -u /ubus -a
  574   572 root     S     1996   1%   0% -sh
  363     1 root     S     1996   1%   0% -/bin/sh
  237     1 root     S     1992   1%   0% /usr/sbin/inetd -f
  244     1 root     S     1976   1%   0% vsftpd
  616   340 root     S     1960   1%   0% xargs /thunder/bin/miner_32/explore_node
  356     1 root     S     1928   1%   0% /sbin/getty 38400 tty1
  357     1 root     S     1928   1%   0% /sbin/getty 38400 tty2
    1     0 root     S     1924   1%   0% init
  364     1 root     S     1924   1%   0% /sbin/syslogd -n
  360     1 root     S     1924   1%   0% /usr/bin/tail -f /var/log/messages
  336     1 root     S     1924   1%   0% /bin/sh /thunder/etc/start_app.sh
  136     1 root     S     1924   1%   0% /sbin/klogd -n
  365     1 root     S     1924   1%   0% /sbin/klogd -n
  133     1 root     S     1924   1%   0% /sbin/syslogd -n
#
#
# /opt/bin/opkg install opkg install php5 php5-mod-gd php5-mod-session php5-mod-pdo php5-
mod-pdo-mysql php5-mod-mysql php5-mod-mcrypt php5-mod-mbstring php5-fastcgi php5-cgi php5
-mod-xml php5-mod-ctype php5-mod-curl php5-mod-exif php5-mod-ftp php5-mod-iconv php5-mod-
# /opt/bin/opkg install php5-mod-apc
Unknown package 'php5-mod-apc'.
Collected errors:
* opkg_install_cmd: Cannot install package php5-mod-apc.
# php5-mod-gd php5-mod-session
-sh: php5-mod-gd: not found
# /opt/bin/opkg install php5-mod-gd php5-mod-session
Package php5-mod-gd (5.6.13-1) installed in root is up to date.
Package php5-mod-session (5.6.13-1) installed in root is up to date.
#
#
#
# /opt/bin/opkg install php5-mod-pdo-mysql php5-mod-pdo php5-mod-mysql
Package php5-mod-pdo-mysql (5.6.13-1) installed in root is up to date.
Package php5-mod-pdo (5.6.13-1) installed in root is up to date.
Package php5-mod-mysql (5.6.13-1) installed in root is up to date.
#
#
#
# php5-mod-mcrypt php5-mod-mbstring php5-fastcgi php5-cgi php5-mod-xml php5-mod-ctype php
5-mod-curl php5-mod-exif php5-mod-ftp php5-mod-iconv php5-mod-json php5-mod-sockets
-sh: php5-mod-mcrypt: not found
# php5-mod-mcrypt php5-mod-mbstring php5-fastcgi php5-cgi php5-mod-xml php5-mod-ctype php
# /opt/bin/opkg install php5-mod-mcrypt php5-mod-mbstring php5-fastcgi php5-cgi php5-mod-
xml php5-mod-ctype php5-mod-curl php5-mod-exif php5-mod-ftp php5-mod-iconv php5-mod-json
php5-mod-sockets
Package php5-mod-mcrypt (5.6.13-1) installed in root is up to date.
Package php5-mod-mbstring (5.6.13-1) installed in root is up to date.
Package php5-fastcgi (5.6.13-1) installed in root is up to date.
Package php5-cgi (5.6.13-1) installed in root is up to date.
Package php5-mod-xml (5.6.13-1) installed in root is up to date.
Package php5-mod-ctype (5.6.13-1) installed in root is up to date.
Package php5-mod-curl (5.6.13-1) installed in root is up to date.
Package php5-mod-exif (5.6.13-1) installed in root is up to date.
Package php5-mod-ftp (5.6.13-1) installed in root is up to date.
Package php5-mod-iconv (5.6.13-1) installed in root is up to date.
Package php5-mod-json (5.6.13-1) installed in root is up to date.
Package php5-mod-sockets (5.6.13-1) installed in root is up to date.
#
#
#
# /opt/bin/opkg install shadow-useradd shadow-groupadd
Package shadow-useradd (4.2.1-5) installed in root is up to date.
Package shadow-groupadd (4.2.1-5) installed in root is up to date.
#
#
# groupadd www
-sh: groupadd: not found
# useradd -g www www
-sh: useradd: not found
# adduser -g www www
adduser: group 'www' in use
#
-sh: /bin:/sbin:/usr/bin:/usr/sbin:/usr/bin/X11:/usr/local/bin: not found
#
#
# top
Mem: 51984K used, 181128K free, 0K shrd, 5196K buff, 14620K cached
CPU:   7% usr  15% sys   0% nic  76% idle   0% io   0% irq   0% sirq
Load average: 0.22 0.06 0.02 1/137 680
  PID  PPID USER     STAT   VSZ %VSZ %CPU COMMAND
  680   600 root     R     1924   1%  17% top
  640     1 root     S    15100   6%   6% /thunder/bin/dcdn_client 0
  363     1 root     S    37504  16%   0% /thunder/bin/pdnsd -d
  661   655 root     S    21560   9%   0% /thunder/bin/miner_32/explore_node ABPZ0F620012
  467   375 root     S    14088   6%   0% /thunder/bin/mnt
  392   375 root     S     8344   4%   0% /thunder/bin/netcfg
  532   375 root     S     7072   3%   0% /thunder/bin/remote
  488   375 root     S     6764   3%   0% /thunder/bin/upnp_client
  482   375 root     S     5180   2%   0% /thunder/bin/xqos
  635   375 root     S     4612   2%   0% /thunder/bin/dcdn
  597   490 root     S     4056   2%   0% sshd: root@pts/0
  490     1 root     S     4008   2%   0% /sbin/sshd
  352   313 root     S     2992   1%   0% ./speedtest
  619     1 root     S     2688   1%   0% /usr/sbin/ntpd
  623   375 root     S     2596   1%   0% /thunder/bin/upgrade
  359     1 root     S     2316   1%   0% /thunder/bin/uhttpd -p 127.0.0.1:80 -u /ubus -a
  600   597 root     S     1996   1%   0% -sh
  402     1 root     S     1996   1%   0% -/bin/sh
  262     1 root     S     1992   1%   0% /usr/sbin/inetd -f
  269     1 root     S     1976   1%   0% vsftpd
  655   379 root     S     1960   1%   0% xargs /thunder/bin/miner_32/explore_node
  395     1 root     S     1928   1%   0% /sbin/getty 38400 tty1
  396     1 root     S     1928   1%   0% /sbin/getty 38400 tty2
    1     0 root     S     1924   1%   0% init
  379     1 root     S     1924   1%   0% /bin/sh /thunder/bin/run_explore_node.sh
  399     1 root     S     1924   1%   0% /usr/bin/tail -f /var/log/messages
  375     1 root     S     1924   1%   0% /bin/sh /thunder/etc/start_app.sh
  403     1 root     S     1924   1%   0% /sbin/syslogd -n
  134     1 root     S     1924   1%   0% /sbin/syslogd -n
  137     1 root     S     1924   1%   0% /sbin/klogd -n
  313     1 root     S     1924   1%   0% {speedtest-updat} /bin/sh ./speedtest-update
#
# ps
PID   USER     COMMAND
    1 root     init
    2 root     [kthreadd]
    3 root     [ksoftirqd/0]
    4 root     [kworker/0:0]
    5 root     [kworker/0:0H]
    6 root     [kworker/u8:0]
    7 root     [migration/0]
    8 root     [rcu_preempt]
    9 root     [rcu_bh]
   10 root     [rcu_sched]
   11 root     [watchdog/0]
   12 root     [watchdog/1]
   13 root     [migration/1]
   14 root     [ksoftirqd/1]
   15 root     [kworker/1:0]
   16 root     [kworker/1:0H]
   17 root     [watchdog/2]
   18 root     [migration/2]
   19 root     [ksoftirqd/2]
   20 root     [kworker/2:0]
   21 root     [kworker/2:0H]
   22 root     [watchdog/3]
   23 root     [migration/3]
   24 root     [ksoftirqd/3]
   25 root     [kworker/3:0]
   26 root     [kworker/3:0H]
   27 root     [khelper]
   28 root     [kdevtmpfs]
   29 root     [suspend]
   30 root     [kworker/0:1]
   31 root     [kworker/1:1]
   32 root     [kworker/3:1]
   33 root     [kworker/2:1]
   34 root     [writeback]
   35 root     [bioset]
   36 root     [kblockd]
   37 root     [khubd]
   38 root     [cfg80211]
   39 root     [rpciod]
   40 root     [khungtaskd]
   41 root     [kswapd0]
   42 root     [ksmd]
   43 root     [fsnotify_mark]
   44 root     [nfsiod]
   45 root     [cifsiod]
   46 root     [crypto]
   62 root     [kpsmoused]
   63 root     [cfinteractive]
   64 root     [NULL_task_for_h]
   65 root     [cpu_hotplug_gdb]
   66 root     [cpu_idle_gdbs]
   67 root     [binder]
   68 root     [dwc_otg]
   69 root     [dwc_otg]
   70 root     [kworker/u8:1]
   73 root     [irq/60-sdio]
   74 root     [irq/99-mmc_in]
   75 root     [irq/101-mmc_out]
   76 root     [scsi_eh_0]
   77 root     [rtc]
   78 root     [usb-storage]
   84 root     [deferwq]
  101 root     [ubi_bgt0d]
  103 root     [ubifs_bgt0_0]
  104 root     [kworker/0:2]
  106 root     [kworker/u8:2]
  107 root     [kworker/0:1H]
  134 root     /sbin/syslogd -n
  137 root     /sbin/klogd -n
  196 root     [kworker/1:1H]
  200 root     [kworker/3:1H]
  204 root     [kworker/3:2]
  222 root     [ufsd_sda2]
  225 root     [ufsd_sda1]
  262 root     /usr/sbin/inetd -f
  269 root     vsftpd
  313 root     {speedtest-updat} /bin/sh ./speedtest-update
  321 root     {live_start.sh} /bin/sh /bin/live_start.sh
  323 root     {live_monitor.sh} /bin/sh /bin/live_monitor.sh
  326 root     sleep 7200
  344 root     sleep 300
  352 root     ./speedtest
  353 root     sleep 3600
  354 root     /thunder/bin/ubusd -s /var/run/ubus.sock
  359 root     /thunder/bin/uhttpd -p 127.0.0.1:80 -u /ubus -a -h /thunder/www
  360 root     /thunder/bin/minissdpd -i eth0 -i lo
  363 root     /thunder/bin/pdnsd -d
  373 root     [kworker/u8:3]
  375 root     /bin/sh /thunder/etc/start_app.sh
  376 root     /bin/sh /thunder/etc/sync_data.sh
  379 root     /bin/sh /thunder/bin/run_explore_node.sh
  392 root     /thunder/bin/netcfg
  395 root     /sbin/getty 38400 tty1
  396 root     /sbin/getty 38400 tty2
  399 root     /usr/bin/tail -f /var/log/messages
  402 root     -/bin/sh
  403 root     /sbin/syslogd -n
  404 root     /sbin/klogd -n
  467 root     /thunder/bin/mnt
  482 root     /thunder/bin/xqos
  488 root     /thunder/bin/upnp_client
  490 root     /sbin/sshd
  504 root     [kworker/2:1H]
  532 root     /thunder/bin/remote
  597 root     sshd: root@pts/0
  600 root     -sh
  623 root     /thunder/bin/upgrade
  635 root     /thunder/bin/dcdn
  640 root     /thunder/bin/dcdn_client 0
  655 root     xargs /thunder/bin/miner_32/explore_node
  661 root     /thunder/bin/miner_32/explore_node ABPZ0F6200125
  847 root     /usr/sbin/ntpd
  912 root     sleep 30
  948 root     sleep 10
  952 root     sleep 30
  972 root     ps
#
#
# /etc/init.d/S70mysqld start
Starting mysqld...              done.
#
#
# /opt/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -C 2 -f /opt/bin/php-cgi
spawn-fcgi: child spawned successfully: PID: 1202
#
#
# /etc/init.d/S88nginx start
Starting nginx...              failed.
#
#
# /opt/etc/init.d/S80nginx start
Starting nginx...              failed.
#
# reboot

-sh: /bin:/sbin:/usr/bin:/usr/sbin:/usr/bin/X11:/usr/local/bin: not found
#
#
#
# top
Mem: 51168K used, 181944K free, 0K shrd, 5196K buff, 13332K cached
CPU:  18% usr   0% sys   0% nic  81% idle   0% io   0% irq   0% sirq
Load average: 0.26 0.06 0.02 1/132 588
  PID  PPID USER     STAT   VSZ %VSZ %CPU COMMAND
  587   562 root     R     1924   1%  18% top
  354     1 root     S    37504  16%   0% /thunder/bin/pdnsd -d
  284     1 root     S    34072  15%   0% mysqld
  457   365 root     S    15112   6%   0% /thunder/bin/mnt
  382   365 root     S     8344   4%   0% /thunder/bin/netcfg
  521   365 root     S     7072   3%   0% /thunder/bin/remote
  478   365 root     S     6764   3%   0% /thunder/bin/upnp_client
  344     1 root     S     5852   3%   0% nginx: master process nginx
  345   344 root     S     5852   3%   0% nginx: worker process
  472   365 root     S     5180   2%   0% /thunder/bin/xqos
  486   365 root     S     4612   2%   0% /thunder/bin/dcdn
  561   480 root     S     4056   2%   0% sshd: root@pts/0
  480     1 root     S     4008   2%   0% /sbin/sshd
  340   310 root     S     2992   1%   0% ./speedtest
  349     1 root     S     2316   1%   0% /thunder/bin/uhttpd -p 127.0.0.1:80 -u /ubus -a
  562   561 root     S     1996   1%   0% -sh
  392     1 root     S     1996   1%   0% -/bin/sh
  248     1 root     S     1992   1%   0% /usr/sbin/inetd -f
  255     1 root     S     1976   1%   0% vsftpd
  385     1 root     S     1928   1%   0% /sbin/getty 38400 tty1
  386     1 root     S     1928   1%   0% /sbin/getty 38400 tty2
    1     0 root     S     1924   1%   0% init
  369     1 root     S     1924   1%   0% /bin/sh /thunder/bin/run_explore_node.sh
  389     1 root     S     1924   1%   0% /usr/bin/tail -f /var/log/messages
  511   499 root     S     1924   1%   0% {S49ntp} /bin/sh /etc/init.d/S49ntp start
  498   457 root     S     1924   1%   0% sh -c /etc/init.d/S49ntp restart
  133     1 root     S     1924   1%   0% /sbin/syslogd -n
  136     1 root     S     1924   1%   0% /sbin/klogd -n
  365     1 root     S     1924   1%   0% /bin/sh /thunder/etc/start_app.sh
  393     1 root     S     1924   1%   0% /sbin/syslogd -n
  499   498 root     S     1924   1%   0% {S49ntp} /bin/sh /etc/init.d/S49ntp restart
#
#
# ps
PID   USER     COMMAND
    1 root     init
    2 root     [kthreadd]
    3 root     [ksoftirqd/0]
    4 root     [kworker/0:0]
    5 root     [kworker/0:0H]
    6 root     [kworker/u8:0]
    7 root     [migration/0]
    8 root     [rcu_preempt]
    9 root     [rcu_bh]
   10 root     [rcu_sched]
   11 root     [watchdog/0]
   12 root     [watchdog/1]
   13 root     [migration/1]
   14 root     [ksoftirqd/1]
   15 root     [kworker/1:0]
   16 root     [kworker/1:0H]
   17 root     [watchdog/2]
   18 root     [migration/2]
   19 root     [ksoftirqd/2]
   20 root     [kworker/2:0]
   21 root     [kworker/2:0H]
   22 root     [watchdog/3]
   23 root     [migration/3]
   24 root     [ksoftirqd/3]
   25 root     [kworker/3:0]
   26 root     [kworker/3:0H]
   27 root     [khelper]
   28 root     [kdevtmpfs]
   29 root     [suspend]
   30 root     [kworker/0:1]
   31 root     [kworker/1:1]
   32 root     [kworker/2:1]
   33 root     [kworker/3:1]
   34 root     [writeback]
   35 root     [bioset]
   36 root     [kblockd]
   37 root     [khubd]
   38 root     [cfg80211]
   39 root     [rpciod]
   40 root     [khungtaskd]
   41 root     [kswapd0]
   42 root     [ksmd]
   43 root     [fsnotify_mark]
   44 root     [nfsiod]
   45 root     [cifsiod]
   46 root     [crypto]
   62 root     [kpsmoused]
   63 root     [cfinteractive]
   64 root     [NULL_task_for_h]
   65 root     [cpu_hotplug_gdb]
   66 root     [cpu_idle_gdbs]
   67 root     [binder]
   68 root     [dwc_otg]
   69 root     [dwc_otg]
   70 root     [kworker/u8:1]
   73 root     [irq/60-sdio]
   74 root     [irq/99-mmc_in]
   75 root     [irq/101-mmc_out]
   76 root     [scsi_eh_0]
   77 root     [usb-storage]
   78 root     [rtc]
   84 root     [deferwq]
  101 root     [kworker/0:2]
  102 root     [ubi_bgt0d]
  104 root     [ubifs_bgt0_0]
  106 root     [kworker/u8:2]
  133 root     /sbin/syslogd -n
  136 root     /sbin/klogd -n
  169 root     [kworker/0:1H]
  171 root     [kworker/3:1H]
  184 root     [ufsd_sda1]
  204 root     [ufsd_sda2]
  248 root     /usr/sbin/inetd -f
  255 root     vsftpd
  284 root     mysqld
  297 root     {live_start.sh} /bin/sh /bin/live_start.sh
  299 root     {live_monitor.sh} /bin/sh /bin/live_monitor.sh
  303 root     sleep 7200
  310 root     {speedtest-updat} /bin/sh ./speedtest-update
  331 root     sleep 300
  332 root     /thunder/bin/ubusd -s /var/run/ubus.sock
  340 root     ./speedtest
  341 root     sleep 3600
  343 root     [kworker/2:1H]
  344 root     nginx: master process nginx
  345 root     nginx: worker process
  349 root     /thunder/bin/uhttpd -p 127.0.0.1:80 -u /ubus -a -h /thunder/www
  350 root     /thunder/bin/minissdpd -i eth0 -i lo
  354 root     /thunder/bin/pdnsd -d
  363 root     [kworker/u8:3]
  365 root     /bin/sh /thunder/etc/start_app.sh
  366 root     /bin/sh /thunder/etc/sync_data.sh
  369 root     /bin/sh /thunder/bin/run_explore_node.sh
  382 root     /thunder/bin/netcfg
  385 root     /sbin/getty 38400 tty1
  386 root     /sbin/getty 38400 tty2
  389 root     /usr/bin/tail -f /var/log/messages
  392 root     -/bin/sh
  393 root     /sbin/syslogd -n
  396 root     /sbin/klogd -n
  457 root     /thunder/bin/mnt
  472 root     /thunder/bin/xqos
  478 root     /thunder/bin/upnp_client
  480 root     /sbin/sshd
  521 root     /thunder/bin/remote
  542 root     [kworker/1:1H]
  561 root     sshd: root@pts/0
  562 root     -sh
  614 root     /thunder/bin/upgrade
  624 root     /thunder/bin/dcdn
  629 root     /thunder/bin/dcdn_client 0
  644 root     xargs /thunder/bin/miner_32/explore_node
  650 root     /thunder/bin/miner_32/explore_node ABPZ0F6200125
  651 root     sleep 30
  714 root     sleep 30
  752 root     sh -c cd /tmp; opkg-cl download thunder-miner-app
  754 root     opkg-cl download thunder-miner-app
  756 root     wget -q -O /tmp/opkg-DcJvhE/thunder-miner-app_V1.2.1146_arm.ipk http://up
  758 root     sleep 10
  770 root     {S49ntp} /bin/sh /etc/init.d/S49ntp restart
  776 root     {S49ntp} /bin/sh /etc/init.d/S49ntp start
  777 root     /usr/bin/ntpdate -t 5 ntp.cc.sandai.net
  787 root     ps
#
#
#
# /opt/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -C 2 -f /opt/bin/php-cgi
spawn-fcgi: child spawned successfully: PID: 887
#
#
#
# /opt/etc/init.d/S80nginx start
Starting nginx...              already running.
#
#
# /opt/etc/init.d/S80nginx restart
Shutting down nginx...              done.
Starting nginx...              done.
#
#
#
#
#
# top
Mem: 80828K used, 152284K free, 0K shrd, 5264K buff, 34920K cached
CPU:  13% usr  16% sys   0% nic  68% idle   0% io   0% irq   1% sirq
Load average: 0.39 0.42 0.23 1/144 2314
  PID  PPID USER     STAT   VSZ %VSZ %CPU COMMAND
  457   365 root     S    15112   6%  11% /thunder/bin/mnt
  629     1 root     S    15100   6%   7% /thunder/bin/dcdn_client 0
  888   887 root     S    18568   8%   4% /opt/bin/php-cgi
  889   887 root     S    18492   8%   3% /opt/bin/php-cgi
2249   562 root     R     1996   1%   1% top
    8     2 root     SW       0   0%   1% [rcu_preempt]
1724  1722 root     S     6180   3%   1% nginx: worker process
   30     2 root     SW       0   0%   1% [kworker/0:1]
  332     1 root     S     1392   1%   0% /thunder/bin/ubusd -s /var/run/ubus.sock
  382   365 root     S     8344   4%   0% /thunder/bin/netcfg
  561   480 root     S     4056   2%   0% sshd: root@pts/0
  340   310 root     S     2992   1%   0% ./speedtest
  838     1 root     S     2688   1%   0% /usr/sbin/ntpd
    1     0 root     S     1924   1%   0% init
  136     1 root     S     1924   1%   0% /sbin/klogd -n
    3     2 root     SW       0   0%   0% [ksoftirqd/0]
  354     1 root     S    37504  16%   0% /thunder/bin/pdnsd -d
  284     1 root     S    35288  15%   0% mysqld
  650   644 root     S    21560   9%   0% /thunder/bin/miner_32/explore_node ABPZ0F620012
  887     1 root     S    18104   8%   0% /opt/bin/php-cgi
  478   365 root     S     7788   3%   0% /thunder/bin/upnp_client
  521   365 root     S     7072   3%   0% /thunder/bin/remote
1722     1 root     S     5852   3%   0% nginx: master process nginx
  472   365 root     S     5180   2%   0% /thunder/bin/xqos
  614   365 root     S     4776   2%   0% /thunder/bin/upgrade
  624   365 root     S     4612   2%   0% /thunder/bin/dcdn
  480     1 root     S     4008   2%   0% /sbin/sshd
  349     1 root     S     2316   1%   0% /thunder/bin/uhttpd -p 127.0.0.1:80 -u /ubus -a
1127  1125 root     S     2164   1%   0% vsftpd
1125   255 root     S     2052   1%   0% vsftpd
  562   561 root     S     1996   1%   0% -sh
Mem: 163560K used, 69552K free, 0K shrd, 8464K buff, 81400K cached
CPU:  24% usr   9% sys   0% nic  63% idle   2% io   0% irq   0% sirq
Load average: 1.29 1.14 1.06 1/144 12733
  PID  PPID USER     STAT   VSZ %VSZ %CPU COMMAND
7105   887 root     S    26540  11%  16% /opt/bin/php-cgi
  457   365 root     S    15112   6%   5% /thunder/bin/mnt
7120   887 root     S    25212  11%   4% /opt/bin/php-cgi
  629     1 root     S    15228   7%   4% /thunder/bin/dcdn_client 0
  284     1 root     S    41088  18%   2% mysqld
    8     2 root     RW       0   0%   1% [rcu_preempt]
5145  5142 root     S     6180   3%   0% nginx: worker process
    1     0 root     S     1924   1%   0% init
  838     1 root     S     2688   1%   0% /usr/sbin/ntpd
9622   562 root     R     1996   1%   0% top
   30     2 root     SW       0   0%   0% [kworker/0:1]
  561   480 root     S     4056   2%   0% sshd: root@pts/0
  393     1 root     S     1924   1%   0% /sbin/syslogd -n
  133     1 root     S     1924   1%   0% /sbin/syslogd -n
    3     2 root     RW       0   0%   0% [ksoftirqd/0]
   77     2 root     SW       0   0%   0% [usb-storage]
   15     2 root     SW       0   0%   0% [kworker/1:0]
   65     2 root     SW       0   0%   0% [cpu_hotplug_gdb]
  354     1 root     S    37504  16%   0% /thunder/bin/pdnsd -d
  650   644 root     S    21560   9%   0% /thunder/bin/miner_32/explore_node ABPZ0F620012
  887     1 root     S    18104   8%   0% /opt/bin/php-cgi
  382   365 root     S     8344   4%   0% /thunder/bin/netcfg
  478   365 root     S     7788   3%   0% /thunder/bin/upnp_client
  521   365 root     S     7072   3%   0% /thunder/bin/remote
5142     1 root     S     5852   3%   0% nginx: master process nginx
  472   365 root     S     5180   2%   0% /thunder/bin/xqos
  614   365 root     S     4776   2%   0% /thunder/bin/upgrade
  624   365 root     S     4612   2%   0% /thunder/bin/dcdn
  480     1 root     S     4008   2%   0% /sbin/sshd
  340   310 root     S     2992   1%   0% ./speedtest
  349     1 root     S     2316   1%   0% /thunder/bin/uhttpd -p 127.0.0.1:80 -u /ubus -a







只谈技术、莫论政事!(点击见详情) | 互相尊重、友善交流、切勿过度反应、玻璃心。胡乱输入灌水等操作将会被封禁ID。
回复

使用道具 举报

 楼主| 发表于 2016-3-16 21:56 | 显示全部楼层
恩五 发表于 2016-3-13 23:05
高人啊,希望有教程,最好再另做一个云监工的教程

1代的操作记录已发,后期会整理成教程并优先在http://ovo.f3322.net:88/bbs发布。
云监工有时间会研究,成功了分享给大家!
只谈技术、莫论政事!(点击见详情) | 互相尊重、友善交流、切勿过度反应、玻璃心。胡乱输入灌水等操作将会被封禁ID。
回复

使用道具 举报

 楼主| 发表于 2016-3-16 22:00 | 显示全部楼层
88388050 发表于 2016-3-14 16:21
牛B人物  希望能出个教程

1代的操作记录已发,后期会整理成教程并优先在http://ovo.f3322.net:88/bbs发布。
敬请期待!

点评

你这个产FTP的,不是挂网站的。  详情 回复 发表于 2016-3-16 22:24
只谈技术、莫论政事!(点击见详情) | 互相尊重、友善交流、切勿过度反应、玻璃心。胡乱输入灌水等操作将会被封禁ID。
回复

使用道具 举报

 楼主| 发表于 2016-3-16 22:02 | 显示全部楼层
ivan2978 发表于 2016-3-16 17:06
能教教我吗。我试了很多次都是没成功 。。191915930 扣扣

1代的操作记录已发,后期会整理成教程并优先在http://ovo.f3322.net:88/bbs发布。
只谈技术、莫论政事!(点击见详情) | 互相尊重、友善交流、切勿过度反应、玻璃心。胡乱输入灌水等操作将会被封禁ID。
回复

使用道具 举报

 楼主| 发表于 2016-3-16 22:02 | 显示全部楼层

感谢关注!
只谈技术、莫论政事!(点击见详情) | 互相尊重、友善交流、切勿过度反应、玻璃心。胡乱输入灌水等操作将会被封禁ID。
回复

使用道具 举报

发表于 2016-3-16 22:24 | 显示全部楼层
caijixun 发表于 2016-3-16 22:00
1代的操作记录已发,后期会整理成教程并优先在http://ovo.f3322.net:88/bbs发布。
敬请期待!

你这个产FTP的,不是挂网站的。

点评

是用赚钱宝当WEB 服务器,也就是放网站。http://ovo.f3322.net:88/bbs 就是挂在我的1代赚钱宝上的。 FTP服务器是传文件用的,如把网站代码上传到服务器上。  详情 回复 发表于 2016-3-16 23:59
只谈技术、莫论政事!(点击见详情) | 互相尊重、友善交流、切勿过度反应、玻璃心。胡乱输入灌水等操作将会被封禁ID。
回复

使用道具 举报

 楼主| 发表于 2016-3-16 23:59 | 显示全部楼层
ivan2978 发表于 2016-3-16 22:24
你这个产FTP的,不是挂网站的。

是用赚钱宝当WEB 服务器,也就是放网站。http://ovo.f3322.net:88/bbs 就是挂在我的1代赚钱宝上的。
FTP服务器是传文件用的,如把网站代码上传到服务器上。
只谈技术、莫论政事!(点击见详情) | 互相尊重、友善交流、切勿过度反应、玻璃心。胡乱输入灌水等操作将会被封禁ID。
回复

使用道具 举报

发表于 2016-3-17 09:44 | 显示全部楼层
整理成教程优先在http://ovo.f3322.org:88/bbs上发布!我会一直关注的!
只谈技术、莫论政事!(点击见详情) | 互相尊重、友善交流、切勿过度反应、玻璃心。胡乱输入灌水等操作将会被封禁ID。
回复

使用道具 举报

 楼主| 发表于 2016-3-17 17:08 | 显示全部楼层
caijixun 发表于 2016-3-16 21:43
(接上贴,调试过程)
# ps
PID   USER     COMMAND

这是折腾过程的第一部分从主贴上移下来的,供需要的坛友参考。
=============================================================================
#
#
# cd /opt
#
#
# /opt/bin/opkg install mysql-server
Installing mysql-server (5.1.73-2) to root...
Downloading http://qnapware.zyxmon.org/binar ... 73-2_armv7soft.ipk.
Configuring mysql-server.
Collected errors:
* resolve_conffiles: Existing conffile /opt/etc/my.cnf is different from the conffile in the new package. The new conffile will be placed at /opt/etc/my.cnf-opkg.
# Collected errors:
-sh: Collected: not found
#  * resolve_conffiles: Existing conffile /opt/etc/my.cnf is different from the conffile
in the new package. The new conffile will be placed at /opt/etc/my.cnf-opkg.
-sh: bin: not found
#
#
# /opt/etc/init.d/S70mysqld enable
Usage: /opt/etc/init.d/S70mysqld (start|stop|restart|check|kill|reconfigure)
# /opt/etc/init.d/S70mysqld start
Starting mysqld...              done.
#
#
#
#
#
# mysql_install_db  --force
-sh: mysql_install_db: not found
# /opt/etc/init.d/S70mysqld stop
Checking mysqld...              dead.
#
#
#
#
# mysql_install_db  --force
-sh: mysql_install_db: not found
# mysql_install_db  --force
-sh: mysql_install_db: not found
# /opt/bin/mysql_install_db  --force
Installing MySQL system tables...
OK
Filling help tables...
OK
To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:
/opt/bin/mysqladmin -u root password 'new-password'
/opt/bin/mysqladmin -u root -h XL_MINER_0125 password 'new-password'
Alternatively you can run:
/opt/bin/mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.
See the manual for more instructions.
You can start the MySQL daemon with:
cd /opt ; /opt/bin/mysqld_safe &
You can test the MySQL daemon with mysql-test-run.pl
cd /opt/mysql-test ; perl mysql-test-run.pl
Please report any problems with the /opt/scripts/mysqlbug script!
#
# /opt/etc/init.d/S70mysqld start
Starting mysqld...              done.
#
#
# mysqladmin -u root password '我的密码'
-sh: mysqladmin: not found
# opt/bin/mysqladmin -u root password '我的密码'
-sh: opt/bin/mysqladmin: not found
# opt/ect/mysqladmin -u root password '我的密码'
-sh: opt/ect/mysqladmin: not found
#
#
# /opt/bin/mysqladmin -u root password '我的密码'
#
#
# mysql -u root -p
-sh: mysql: not found
# /opt/bin/mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.1.73 Source distribution
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
mysql> Ctrl-C -- exit!
Aborted
#
#
#
# /opt/bin/opkg nginx spawn-fcgi zoneinfo-core zoneinfo-asia
/opt/bin/opkg: unknown sub-command nginx
usage: opkg [options...] sub-command [arguments...]
where sub-command is one of:
Package Manipulation:
        update                  Update list of available packages
        upgrade                 Upgrade installed packages
        install <pkgs>          Install package(s)
        configure <pkgs>        Configure unpacked package(s)
        remove <pkgs|regexp>    Remove package(s)
        flag <flag> <pkgs>      Flag package(s)
         <flag>=hold|noprune|user|ok|installed|unpacked (one per invocation)
Informational Commands:
        list                    List available packages
        list-installed          List installed packages
        list-upgradable         List installed and upgradable packages
        list-changed-conffiles  List user modified configuration files
        files <pkg>             List files belonging to <pkg>
        search <file|regexp>    List package providing <file>
        find <regexp>           List packages whose name or description matches <regexp>
        info [pkg|regexp]       Display all info for <pkg>
        status [pkg|regexp]     Display all status for <pkg>
        download <pkg>          Download <pkg> to current directory
        compare-versions <v1> <op> <v2>
                            compare versions using <= < > >= = << >>
        print-architecture      List installable package architectures
        depends [-A] [pkgname|pat]+
        whatdepends [-A] [pkgname|pat]+
        whatdependsrec [-A] [pkgname|pat]+
        whatrecommends[-A] [pkgname|pat]+
        whatsuggests[-A] [pkgname|pat]+
        whatprovides [-A] [pkgname|pat]+
        whatconflicts [-A] [pkgname|pat]+
        whatreplaces [-A] [pkgname|pat]+
Options:
        -A                      Query all packages not just those installed
        -V[<level>]             Set verbosity level to <level>.
        --verbosity[=<level>]   Verbosity levels:
                                        0 errors only
                                        1 normal messages (default)
                                        2 informative messages
                                        3 debug
                                        4 debug level 2
        -f <conf_file>          Use <conf_file> as the opkg configuration file
        --conf <conf_file>
        --cache <directory>     Use a package cache
        -d <dest_name>          Use <dest_name> as the the root directory for
        --dest <dest_name>      package installation, removal, upgrading.
                                <dest_name> should be a defined dest name from
                                the configuration file, (but can also be a
                                directory name in a pinch).
        -o <dir>                Use <dir> as the root directory for
        --offline-root <dir>    offline installation of packages.
        --add-arch <arch>:<prio>        Register architecture with given priority
        --add-dest <name>:<path>        Register destination with given path
Force Options:
        --force-depends         Install/remove despite failed dependencies
        --force-maintainer      Overwrite preexisting config files
        --force-reinstall       Reinstall package(s)
        --force-overwrite       Overwrite files from other package(s)
        --force-downgrade       Allow opkg to downgrade packages
        --force-space           Disable free space checks
        --force-postinstall     Run postinstall scripts even in offline mode
        --force-remove  Remove package even if prerm script fails
        --force-checksum        Don't fail on checksum mismatches
        --noaction              No action -- test only
        --download-only No action -- download only
        --nodeps                Do not follow dependencies
        --nocase                Perform case insensitive pattern matching
        --force-removal-of-dependent-packages
                                Remove package and all dependencies
        --autoremove            Remove packages that were installed
                                automatically to satisfy dependencies
        -t                      Specify tmp-dir.
        --tmp-dir               Specify tmp-dir.
regexp could be something like 'pkgname*' '*file*' or similar
e.g. opkg info 'libstd*' or opkg search '*libop*' or opkg remove 'libncur*'
#
#
# /opt/bin/opkg install shadow-groupadd shadow-useradd
Package shadow-groupadd (4.2.1-5) installed in root is up to date.
Package shadow-useradd (4.2.1-5) installed in root is up to date.
#
#
# /opt/bin/opkg install nginx spawn-fcgi zoneinfo-core zoneinfo-asia
Installing nginx (1.4.7-4) to root...
Downloading http://qnapware.zyxmon.org/binar ... .7-4_armv7soft.ipk.
Package spawn-fcgi (1.6.4-1) installed in root is up to date.
Package zoneinfo-core (2015f-1) installed in root is up to date.
Package zoneinfo-asia (2015f-1) installed in root is up to date.
Configuring nginx.
Collected errors:
* resolve_conffiles: Existing conffile /opt/etc/nginx/fastcgi_params is different from the conffile in the new package. The new conffile will be placed at /opt/etc/nginx/fastcgi_params-opkg.
* resolve_conffiles: Existing conffile /opt/etc/nginx/nginx.conf is different from the conffile in the new package. The new conffile will be placed at /opt/etc/nginx/nginx.conf-opkg.
#
#
# groupadd www
-sh: groupadd: not found
# /opt/bin/groupadd www
-sh: /opt/bin/groupadd: not found
# cd /
#
#
# groupadd www
-sh: groupadd: not found
# useradd -g www www
-sh: useradd: not found
#
#
#
# groupadd www
-sh: groupadd: not found
#
#
#
# /usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -C 2 -f /usr/bin/php-cgi
-sh: /usr/bin/spawn-fcgi: not found
# /opt/usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -C 2 -f /usr/bin/php-cgi
-sh: /opt/usr/bin/spawn-fcgi: not found
#
#
#
# /opt/bin/opkg install opkg install php5 php5-mod-gd php5-mod-session php5-mod-pdo php5-
mod-pdo-mysql php5-mod-mysql php5-mod-mcrypt php5-mod-mbstring php5-fastcgi php5-cgi php5
-mod-xml php5-mod-ctype php5-mod-curl php5-mod-exif php5-mod-ftp php5-mod-iconv php5-mod-
json php5-mod-sockets php5-mod-sqlite3 php5-mod-tokenizer php5-mod-zip
Installing opkg (9c97d5ecd795709c8584e972bfdf3aee3a5b846d-8) to root...
Downloading http://qnapware.zyxmon.org/binar ... 6d-8_armv7soft.ipk.
Unknown package 'install'.
Package php5 (5.6.13-1) installed in root is up to date.
Installing php5-mod-gd (5.6.13-1) to root...
Downloading http://qnapware.zyxmon.org/binar ... 13-1_armv7soft.ipk.
Package php5-mod-session (5.6.13-1) installed in root is up to date.
Installing php5-mod-pdo (5.6.13-1) to root...
Downloading http://qnapware.zyxmon.org/binar ... 13-1_armv7soft.ipk.
Installing php5-mod-pdo-mysql (5.6.13-1) to root...
Downloading http://qnapware.zyxmon.org/binar ... 13-1_armv7soft.ipk.
Package php5-mod-mysql (5.6.13-1) installed in root is up to date.
Installing php5-mod-mcrypt (5.6.13-1) to root...
Downloading http://qnapware.zyxmon.org/binar ... 13-1_armv7soft.ipk.
Package php5-mod-mbstring (5.6.13-1) installed in root is up to date.
Package php5-fastcgi (5.6.13-1) installed in root is up to date.
Package php5-cgi (5.6.13-1) installed in root is up to date.
Installing php5-mod-xml (5.6.13-1) to root...
Downloading http://qnapware.zyxmon.org/binar ... 13-1_armv7soft.ipk.
Package php5-mod-ctype (5.6.13-1) installed in root is up to date.
Installing php5-mod-curl (5.6.13-1) to root...
Downloading http://qnapware.zyxmon.org/binar ... 13-1_armv7soft.ipk.
Installing php5-mod-exif (5.6.13-1) to root...
Downloading http://qnapware.zyxmon.org/binar ... 13-1_armv7soft.ipk.
Installing php5-mod-ftp (5.6.13-1) to root...
Downloading http://qnapware.zyxmon.org/binar ... 13-1_armv7soft.ipk.
Installing php5-mod-iconv (5.6.13-1) to root...
Downloading http://qnapware.zyxmon.org/binar ... 13-1_armv7soft.ipk.
Package php5-mod-json (5.6.13-1) installed in root is up to date.
Installing php5-mod-sockets (5.6.13-1) to root...
Downloading http://qnapware.zyxmon.org/binar ... 13-1_armv7soft.ipk.
Installing php5-mod-sqlite3 (5.6.13-1) to root...
Downloading http://qnapware.zyxmon.org/binar ... 13-1_armv7soft.ipk.
Package php5-mod-tokenizer (5.6.13-1) installed in root is up to date.
Installing php5-mod-zip (5.6.13-1) to root...
Downloading http://qnapware.zyxmon.org/binar ... 13-1_armv7soft.ipk.
Configuring opkg.
Configuring php5-mod-iconv.
Configuring php5-mod-sqlite3.
Configuring php5-mod-xml.
Configuring php5-mod-zip.
Configuring php5-mod-ftp.
Configuring php5-mod-mcrypt.
Configuring php5-mod-pdo.
Configuring php5-mod-curl.
Configuring php5-mod-sockets.
Configuring php5-mod-gd.
Configuring php5-mod-exif.
Configuring php5-mod-pdo-mysql.
Collected errors:
* opkg_install_cmd: Cannot install package install.
#
#
# groupadd www
-sh: groupadd: not found
#
#
# groupadd www
-sh: groupadd: not found
# /bin/groupadd www
-sh: /bin/groupadd: not found
#
#
# /opt/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -C 2 -f /opt/bin/php-cgi
spawn-fcgi: child spawned successfully: PID: 26653
#
#
# /opt/etc/init.d/S80nginx enable
Usage: /opt/etc/init.d/S80nginx (start|stop|restart|check|kill|reconfigure)
# /opt/etc/init.d/S80nginx start
Starting nginx...              done.
#
#
# top
Mem: 163184K used, 69928K free, 0K shrd, 260K buff, 122224K cached
CPU:   7% usr  15% sys   0% nic  76% idle   0% io   0% irq   0% sirq
Load average: 0.70 0.85 0.88 1/140 26758
  PID  PPID USER     STAT   VSZ %VSZ %CPU COMMAND
26758 15112 root     R     1924   1%  12% top
  405   314 root     S    12040   5%   6% /thunder/bin/mnt
    3     2 root     SW       0   0%   6% [ksoftirqd/0]
  303     1 root     S    37504  16%   0% /thunder/bin/pdnsd -d
21654     1 root     S    28120  12%   0% mysqld
  582   575 root     S    21560   9%   0% /thunder/bin/miner_32/explore_node ABPZ0F620012
  597     1 root     S    18636   8%   0% /thunder/bin/dcdn_client 0
26653     1 root     S     9664   4%   0% /opt/bin/php-cgi
26656 26653 root     S     9664   4%   0% /opt/bin/php-cgi
26657 26653 root     S     9664   4%   0% /opt/bin/php-cgi
  427   314 root     S     9504   4%   0% /thunder/bin/upnp_client
  331   314 root     S     8344   4%   0% /thunder/bin/netcfg
  471   314 root     S     7156   3%   0% /thunder/bin/remote
  421   314 root     S     5180   2%   0% /thunder/bin/xqos
  568   314 root     S     4776   2%   0% /thunder/bin/upgrade
  590   314 root     S     4612   2%   0% /thunder/bin/dcdn
15111   429 root     S     4056   2%   0% sshd: root@pts/0
  429     1 root     S     4008   2%   0% /sbin/sshd
  295   264 root     S     2992   1%   0% ./speedtest
  787     1 root     S     2688   1%   0% /usr/sbin/ntpd
  299     1 root     S     2316   1%   0% /thunder/bin/uhttpd -p 127.0.0.1:80 -u /ubus -a
15112 15111 root     S     1996   1%   0% -sh
  341     1 root     S     1996   1%   0% -/bin/sh
  221     1 root     S     1992   1%   0% /usr/sbin/inetd -f
2217     1 root     S     1976   1%   0% vsftpd
  575   318 root     S     1960   1%   0% xargs /thunder/bin/miner_32/explore_node
  334     1 root     S     1928   1%   0% /sbin/getty 38400 tty1
  335     1 root     S     1928   1%   0% /sbin/getty 38400 tty2
    1     0 root     S     1924   1%   0% init
  342     1 root     S     1924   1%   0% /sbin/syslogd -n
  314     1 root     S     1924   1%   0% /bin/sh /thunder/etc/start_app.sh
#
# /opt/etc/init.d/S80nginx stop
Checking nginx...              dead.
#
# /opt/etc/init.d/S80nginx restart
Starting nginx...              done.
# /opt/bin/opkg install opkg install php5 php5-mod-gd php5-mod-session php5-mod-pdo php5-
mod-pdo-mysql php5-mod-mysql php5-mod-mcrypt php5-mod-mbstring php5-fastcgi php5-cgi php5
-mod-xml php5-mod-ctype php5-mod-curl php5-mod-exif php5-mod-ftp php5-mod-iconv php5-mod-
# /opt/etc/init.d/S70mysqld restart
Shutting down mysqld...              done.
Starting mysqld...              done.
#
# reboot
(未完,后半段见回复)

只谈技术、莫论政事!(点击见详情) | 互相尊重、友善交流、切勿过度反应、玻璃心。胡乱输入灌水等操作将会被封禁ID。
回复

使用道具 举报

发表于 2016-3-17 21:48 | 显示全部楼层
杀猫了   卡死了
只谈技术、莫论政事!(点击见详情) | 互相尊重、友善交流、切勿过度反应、玻璃心。胡乱输入灌水等操作将会被封禁ID。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

欢迎大家光临恩山无线论坛上一条 /2 下一条

有疑问请添加管理员QQ86788181|手机版|小黑屋|Archiver|恩山无线论坛(常州市恩山计算机开发有限公司版权所有) ( 苏ICP备05084872号 )

GMT+8, 2026-8-23 21:27

Powered by Discuz! X3.5

© 2001-2026 Discuz! Team.

| 江苏省互联网有害信息举报中心 举报信箱:js12377 | @jischina.com.cn 举报电话:025-88802724 本站不良内容举报信箱:68610888@qq.com 电话:13506125623

快速回复 返回顶部 返回列表