随笔分类 -  linux

摘要:~/.bashrc 该文件包含专用于你的bash shell的bash信息,当登录时以及每次打开新的shell时,该文件被读取.~/.bash_profile:每个用户都可使用该文件输入专用于自己使用的shell信息,当用户登录时,该文件仅仅执行一次!默认情况下,他设置一些环境变量,执行用户的.bashrc文件。使用ssh登录时,只执行bashrc,不会执行bash_profile。 阅读全文
posted @ 2014-01-20 19:40 cozybz
摘要:http://download.eclipse.org/eclipse/downloads/Download the "PlatformRuntimeBinary" (http://download.eclipse.org/eclipse/downloads/drops4/R-4.3.1-201309111000/) 阅读全文
posted @ 2014-01-20 18:37 cozybz
摘要:#Create a new file in your home directory called .gtkrc-eclipse # call eclipse with this command:# env GTK2_RC_FILES=/usr/share/themes/Clearlooks/gtk-2.0/gtkrc:/home/USER/.gtkrc-eclipse '/path_to_eclipse/eclipse' # In your Eclipse directory find the file 'plugins/org.eclipse.platform_4.2 阅读全文
posted @ 2014-01-20 18:18 cozybz
摘要:Chromium:~/.config/chromium/Default/User StyleSheets/Custom.csshtml, body {background-color: #C7EDCC!important;}Eclipse:Preference->TextEditor->#CCE8CF 阅读全文
posted @ 2014-01-20 17:21 cozybz
摘要:删除known_hosts : ssh-keygen -R hostname复制publick key到服务器 :ssh-copy-id user@hostname.example.com复制文件 :scp -p port yourFile theRemotehost:/path/to/folder指定 key :-iidentity_file指定 用户 : user@host指定 port : -p权限 :.ssh 700 public key 644(600) private key 600 阅读全文
posted @ 2014-01-18 17:46 cozybz