linuxhg命令 linuxsh命令

电信华为光猫Hg8245C破解过程中出现WAP(Dopra Linux)#后面输什么?很简单,这个嵌入式系统是华为官方定制的 。有没有这个命令无非就看/bin目录下有没有相应的可执行程序 。按照上图看,很明显你的光猫没有grep命令 。你可以ls一下bin目录就知道这个光猫支持哪些命令 。其他人回答基本抄别人 。。也是很尴尬 。。这是我光猫的可执行程序如下 。如果牛逼的话,可以挂在U盘,编译对应的可执行程序跑 。没问题的 。这个命令不可以,你完全可以找个替代的 。骚微变通一下下就好了
WAP(Dopra Linux) # ls bin/
Bbspcmdhttpc
Broadbandhush
ConvertLog2Dsthw_ldsp_cfg
Customizehw_ldsp_xpon_adpt
Equip.shhw_restore_manufactory.sh
EquipMode.shid
LdspCmd.shigmp
LdspCmdA.ship
OntMaintain.shipaddr
Wifi2GSsidSet.shipcrm
Wifi5GSsidSet.shipcs
WifiChipInit2G5G.shiplink
WifiRXInit.shiproute
WifiRxTestModeSet2G.shiprule
WifiRxTestModeSet5G.shiptables-xml
WifiSsidSet.shiptunnel
WifiTXInit.shiwconfig
WifiTxTestModeSet2G.shiwpriv
WifiTxTestModeSet5G.shjbpara.sh
[kill
[[killall
addgroupkillall.sh
adduserkillall5
aescrypt2kmsgread
agingldspcli
ampln
ampcmdlogger
ampcmdClrEmacStat.shlogin
ampcmdClrLog.shls
ampcmdDebugOff.shlsusb
ampcmdDebugOn.shlzop
ampcmdSelfTest.shlzopcat
ampcmdSetEmacDbg.shmaintain
ampcmdShowCarAll.shmd
ampcmdShowCarIndex.shmid
ampcmdShowDopeFlow.shmkdir
ampcmdShowEmacCfg.shmknod
ampcmdShowEmacStat.shmktemp
ampcmdShowEthStatAll.shmore
ampcmdShowEthStatIndex.shmount
ampcmdShowEthStatsCfgAll.shmu
ampcmdShowFlowAll.shmv
ampcmdShowFlowIndex.shmw
ampcmdShowGemStatAll.shnetstat
ampcmdShowGemStatIndex.shnmbd
ampcmdShowGemStatsCfgAll.shntfs-3g
ampcmdShowLog.shoam
ampcmdShowQueAll.shoamcmd
ampcmdShowQueIndex.shoamcmdPdtClrLog.sh
ampcmdTrace.shoamcmdPdtShowLog.sh
ampcmdTraceAll.shomci
ampcmdTraceCli.shomcicmd
ampcmdTraceDpoe.shomcicmdPdtClrLog.sh
ampcmdTraceDrv.shomcicmdPdtShowLog.sh
ampcmdTraceEmac.sh
怎样利用putty输入命令,在远程Linux集群上运行matlab的.m文件Useful webpage:
如果使用-nodisplay -r 选项运行,当程序中有figure()命令时会出错怎么办:
后台运行matlab:
进阶贴
原理贴
基础贴
通俗贴
Matlab on Linux:
1、不开启图形界面
matlab -nodesktop –nospl.sh
或者matlab –nodisplay
或者matlab -nojvm –nosplash
2、 matlab程序也可以在命令行里直接运行,只需要使用 -r 选项 。比如运行当前目录下的example.m
matlab-nodesktop -nosplash -r example
或者matlab-nojvm -nosplash -r example
或者matlab -nodisplay -r example
3、可以将如下命令加到~/.bashrc文件
alias mrun='matlab -nodesktop -nosplash -r'
这样下次(或者执行source ~/.bashrc)之后就可以直接
mrun example
来在命令行运行matlab文件 。
4、 如果使用 -nodisplay -r 选项运行,当程序中有figure()命令时会出错,可以使用如下选项抑制图形的显示:
figure('visible','off');
并使用如下命令将图形输出到文件:
print('-deps','example.eps');
或者
hgsave('example.fig');
5、图形方式:不会
后台运行Matlab:
1、实现功能:
1.字符环境下运行matlab.
2.字符环境下运行matlab脚本文件,脚本文件无图像的屏幕输出 。
3.脚本文件需长时间运行,运行结果输出到文件 。matlab的标准重定向到另一个文件 。
4.客户端退出登陆后 , matlab保持运行,直到脚本程序结束或错误退出时,matlab程序才退出 。

推荐阅读