上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 35 下一页
在linux下一般用scp这个命令来通过ssh传输文件。 1、从服务器上下载文件scp username@servername:/path/filename /var/www/local_dir(本地目录) 例如scp root@192.168.0.101:/var/www/test.txt 把19 Read More
posted @ 2016-05-31 21:34 godjob Views(200) Comments(0) Diggs(0)
# ctrl + l - 清屏 # ctrl + c - 终止命令 # ctrl + d - 退出 shell,好像也可以表示EOF # ctrl + z - 将当前进程置于后台,fg还原。 # ctrl + r - 从命令历史中找 # ctrl + a - 光标移到行首 # ctrl + e - Read More
posted @ 2016-05-31 21:22 godjob Views(234) Comments(0) Diggs(0)
最近在自己的ubuntu安装了apache服务器,每次开机的时候通过: ps -A 命令发现apache服务总是自动启动,如下: 本来自己的电脑内存就小,现在也不用这个服务,所以想让apache服务不再开机自动启动。 具体做法如下: ctr + alt + T 打开终端 cd /etc 进入etc目 Read More
posted @ 2016-05-31 20:49 godjob Views(2110) Comments(0) Diggs(0)
来源《鸟哥的linux私房菜》 ps:将某个时间点的程序运作情况撷取下来 [root@linux ~]# ps aux [root@linux ~]# ps -lA [root@linux ~]# ps axjf 参数: -A :所有的 process 均显示出来,与 -e 具有同样的效用; -a Read More
posted @ 2016-05-31 20:40 godjob Views(474) Comments(0) Diggs(0)
一、安装 因为我已经安装了pip,那么就直接用pip来安装了,简单方便。 其它的安装方式请参考官方网站:http://www.virtualenv.org/en/latest/index.html 二、创建虚拟环境 很简单,就是virtualenv 环境名称[自定义的名称,自己喜欢什么就写什么] 默 Read More
posted @ 2016-05-31 19:49 godjob Views(192) Comments(0) Diggs(0)
参考:http://bbs.chinapyg.com/thread-79022-1-1.html 各平台版本均适用,本文更改的为Mac版本。​ 1,打开对应 mac版本的安装包位置,在对应目录/Applications/StarUML.app/Contents/www/license/node/Li Read More
posted @ 2016-05-25 22:12 godjob Views(319) Comments(0) Diggs(0)
从http://www.sourceinsight.com/public/languages/下载Python的配置文件Python.CLF 选择Options > Preferences,单击Languages选项; 单击import按钮,装载并导入Python.CLF; 这时可以看到,左栏语言列 Read More
posted @ 2016-05-25 21:47 godjob Views(5768) Comments(0) Diggs(0)
Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. Return the maximum pro Read More
posted @ 2016-05-20 23:45 godjob Views(173) Comments(0) Diggs(0)
Rotate an array of n elements to the right by k steps. For example, with n = 7 and k = 3, the array [1,2,3,4,5,6,7] is rotated to [5,6,7,1,2,3,4]. Not Read More
posted @ 2016-05-17 23:09 godjob Views(273) Comments(0) Diggs(0)
Write a function that takes a string as input and reverse only the vowels of a string. Example 1: Given s = "hello", return "holle". Example 2: Given Read More
posted @ 2016-05-16 21:50 godjob Views(278) Comments(0) Diggs(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 35 下一页