Linux
水木日月珠
这个作者很懒,什么都没留下…
展开
-
Python学习资料收集
Mac下python升级:http://wolfpaulus.com/jounal/mac/installing_python_osxPython 3:入门教程中文翻译:http://docspy3zh.readthedocs.org/en/latest/tutorial/入门教程英文原版:http://docs.python.org/3.4/tutorial/inte转载 2013-04-18 21:43:04 · 795 阅读 · 0 评论 -
Ubuntu 12.04 安装中文拼音输入法 ibus
1. 执行如下命令,安装必要的组件sudo apt-get install ibus ibus-clutter ibus-gtk ibus-gtk3 ibus-qt4 ibus-pinyin2.装好后输入下面的命令启动ibusim-switch -s ibus3.输入下面的命令让系统任务栏有ibus输入法图标i转载 2013-04-19 20:57:21 · 1293 阅读 · 0 评论 -
保存python profile的screen输出到file
script foo.txtscreen python -m profile run_rt.py原创 2014-04-28 16:40:53 · 1069 阅读 · 0 评论 -
Linux terminal, CMD 和 Git 中的代理设置
CMD 设置代理在 cmd 环境下设置代理可能不是很常用,但是某些情况下还是可能会用到,比如公司的电脑只能通过设置代理访问外网,而你需要在 cmd 环境下使用 gem 命令更新文件时。当然,如果你使用某些代理软件为所有通讯设置了代理,那就不需要这些设置了。为 cmd 设置代理很简单,首先打开 cmd (win + R,输入 cmd,然后按 enter 键),然后输入如下原创 2014-02-04 12:37:31 · 958 阅读 · 0 评论 -
linux远程复制SCP
远程上传文件夹 举例,我要将本地文件夹/home/administrator/Desktop/old/driver/test/ 远程上传到 192.168.62.10 这台机器的/root/文件夹下,使用远程端的root用户作为登陆用户scp -r /home/administrator/Desktop/old/driver/test/ root@192.168.62.10:/转载 2014-01-13 20:23:05 · 820 阅读 · 0 评论 -
Linux SSH config设置
## config for host server A ##Host labsz HostName *** User ** Port ***原创 2014-07-24 14:30:49 · 1013 阅读 · 0 评论 -
Linux & Mac package安装命令
Linux packagesUsers on Linux can quickly install the necessary packages from repositories.Ubuntu & Debiansudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-转载 2014-10-31 14:51:32 · 1024 阅读 · 0 评论 -
Screen — A must for SSH
If you've ever used SSH to connect to a server, you 'll know its limitations: if you want to open a new window, you'll need to create a second SSH connection to the server. And if the connection break转载 2011-12-02 22:14:41 · 598 阅读 · 0 评论