上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 68 下一页
wget下载URL提示无法建立SSL连接解决方法:原命令上加上" --no-check-certificate"这是因为wget在使用HTTPS协议时,默认会去验证网站的证书,而这个证书验证经常会失败。加上"--no-check-certificate"选项,就能排除掉这个错误。下载成功! Read More
posted @ 2015-12-26 16:07 tinyphp Views(30358) Comments(2) Diggs(1) Edit
Linux中有好多中不同的shell,bash是linux默认的shell,免费且容易使用。su切换为root权限1.创建shell脚本touch hello.sh2.编辑:vi hello.sh内容#! /bin/bash#the first programecho "hello world"3.... Read More
posted @ 2015-12-24 11:24 tinyphp Views(364) Comments(0) Diggs(0) Edit
什么是RMP?RPM的为Redhat Package Manager(RPM软件包管理器)的缩写。RPM包,这种软件包就像windows的EXE安装文件一样,各种文件已经编译好,并打了包,哪个文件该放到哪个文件夹,都指定好了,安装非常方便,在图形界面里你只需要双击就能自动安装。RPM 的使用权限RP... Read More
posted @ 2015-12-23 22:13 tinyphp Views(1794) Comments(0) Diggs(0) Edit
在linux操作系统中, 挂载是指将一个设备(通常是存储设备)挂接到一个已存在的目录上。 我们要访问存储设备中的文件,必须将文件所在的分区挂载到一个已存在的目录上, 然后通过访问这个目录来访问存储设备。挂载点指一个目录挂载时使用mount命令:格式:mount [-参数] [设备名称] [挂载点]用... Read More
posted @ 2015-12-23 18:46 tinyphp Views(287) Comments(0) Diggs(0) Edit
我在home目录下创建了目录mei1.管理员权限su2.进入mei目录cd /home/mei3.创建cdrom目录作为挂载点mkdir cdrom4.把目录 /dev/cdrom-hdc挂载到 cdrommount /dev/cdrom-hdc cdrom5.进入cdromcd cdrom6.进入... Read More
posted @ 2015-12-23 15:51 tinyphp Views(414) Comments(0) Diggs(0) Edit
1.下载安装Xshell2.右击打开终端,输入su ->口令切换到root3.查看虚拟机IP输入命令:ifconfig 若提示not found ,输入/sbin/ifconfig(export PATH=$PATH:/sbin后,就可以直接使用ifconfig了)192.168.220.128,就... Read More
posted @ 2015-12-22 14:43 tinyphp Views(15616) Comments(2) Diggs(0) Edit
准备工作:下载安装:VMware8.0 (这版本相对稳定,体积小)下载:rhel-server-5.8-i386-dvd.isoReady? Go!1.新建空的虚拟机,相当于多了一台电脑除了以上几步其他默认就好~有兴趣再研究不同配置的区别吧~2.选择镜像,相当于把光盘放进电脑3.安装Linux系统启... Read More
posted @ 2015-12-22 00:00 tinyphp Views(563) Comments(0) Diggs(0) Edit
1.安装nw,(也可在官网下载然后配置变量)npm install nw -g一个最最简单的nw应用,只需要有index.html和package.json文件即可2.项目准备,目录结构app文件夹+----index.html+----package.jsonindex.html代码: ... Read More
posted @ 2015-12-19 02:36 tinyphp Views(25121) Comments(4) Diggs(2) Edit
CSRF就是伪装成用户做坏事!它的手段可能是:一张引发邪恶请求的图片:一个嵌入的iframe一个会自动提交的表单: ....等某天抠门的你慷慨解囊地去A站捐了100块:http://localhost/demoA.php A站 ... Read More
posted @ 2015-12-15 16:16 tinyphp Views(951) Comments(0) Diggs(0) Edit
准备:官网:https://facebook.github.io/react/downloads.htmlGithub地址:https://github.com/facebook/react首先需要引入的3个库:react.js 是 React 的核心库,react-dom.js 是提供与 DOM ... Read More
posted @ 2015-12-11 11:00 tinyphp Views(354) Comments(0) Diggs(0) Edit
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 68 下一页