- 浏览: 301870 次
- 性别:
- 来自: 南京
文章分类
最新评论
-
ggwang:
谢谢分享!
如何释放Ubuntu多余的空间?如何给Ubuntu扩容(install inside windows)? -
allenshao:
只有放枪咯~~~~~
Google Group Android Developers 无法打开的问题 -
malong26:
也打不开~~~
Google Group Android Developers 无法打开的问题 -
songshuang:
一直喂它会一直吃是不?
用你的鼠标逗逗它 -
allenshao:
现在基本上用免费的VPN,缺点是限流量。
如何访问appspot网站?
在外网环境下Ubuntu应该很好配置,但是在OA网络的话,需要设置一些比较繁琐的步骤。
这里我简单写了几个步骤:
首先是跟上网无关的,那就是设置中文输入环境:
1.在CDROM中插入Ubuntu CD,在Ubuntu面板上选择“System->Administration->Software
Sources”,然后选中“Installable from CD-ROM/DVD”
2.选择“System->Administration->Language Support”,选中“Use input
method...”然后单击“Install/Remove Languages...”,Choose "Chinese" and
then apply.
3.“System->Preferences->SCIM Input Method Setup”,在“Global Setup”中,
你会看到中文输入法,设置Hotkey,重启即可。
接下来是设置Office网络:
1.“System->Preferences->Network Connections”,在“Wired”tab中编辑
Connection,“802.1x Security”Authentication选择Protected EAP(PEAP),
里面选项选择“MSCHAPV2”,然后输入你的User name以及Passwd
(和你Windows中的OA Account一致)
接下来设置Internet Proxy,有两个,一个是Firefox,另一个是Terminal:
Firefox:“Edit->Preference->Advanced->Network”,选择“Settings...”,
然后设置Http Proxy(根据你公司的网络)
Terminal:这一步,我们需要cntlm这个插件,如附档。
安装cntlm,然后“sudo gedit /etc/cntlm.conf”,修改Username, Domain,
Password和Proxy;
编辑完后,运行“sudo cntlm -f -v”
最后“System->Preferences->Network Proxy”,选中“Manual proxy
configuration”,HTTP Proxy输入127.0.0.1, Port输入3128
然后按下“Apply System-Wide...”
这些设置完后,可以试下“sudo apt-get update”
做完上面这些设置后,你应该就可以通过Proxy上OA网络,而且可以apt-get了。
补充:内网ssh代理
使用corkscrew sudo apt-get install corkscrew
修改用户目录下的.ssh/config文件,正常情况下没有config文件
Host *
ProxyCommand corkscrew http-proxy.example.com 8080 %h %p
I successfully 'GIT' android source through http proxy. Here is my
steps:
Download a tool corkscrew from http://www.agroman.net/corkscrew/
Create a shell script named 'git-proxy' in ~/bin, include following
content:
Replace ~/bin/ and <...> with your own information.
and then run following command:
========================================================
有可能会出现如下错误
解决办法:
1. make sure your git-proxy has x attribute: chmod +x git-proxy.
2. make sure your git-proxy is correct.
3. try replace ~/bin with the absolute path.
===========================================================
还有一个工具
1. Install socat. For example, on Debian/Ubuntu, just sudo apt-get install socat.
2. Create a script called gitproxy in your bin directory;
#!/bin/sh
# Use socat to proxy git through an HTTP CONNECT firewall.
# Useful if you are trying to clone git:// from inside a company.
# Requires that the proxy allows CONNECT to port 9418.
#
# Save this file as gitproxy somewhere in your path (e.g., ~/bin) and then run
# chmod +x gitproxy
# git config --global core.gitproxy gitproxy
#
# More details at http://tinyurl.com/8xvpny
# Configuration. Common proxy ports are 3128, 8123, 8000.
_proxy=proxy.yourcompany.com
_proxyport=3128
exec socat STDIO PROXY:$_proxy:$1:$2,proxyport=$_proxyport
view raw gitproxy-socat This Gist brought to you by GitHub.
You will need to replace proxy.yourcompany.com with the name of your proxy host and the port with the port used by the proxy (common ports include 3128, 8123 and 8000). (If the javascript is broken, visit Gist 49288 and download the raw file; or use the original commands as reproduced in the comments.)
3. Configure git to use it:
$ git config --global core.gitproxy gitproxy
按照上面的两种方法,我设置git proxy依旧没有能够成功:(
这里,我再介绍我成功设置git proxy的第三种办法
使用socket
step如下:
1 sudo apt-get install socket
2 在你的home/allen/bin(这个在$PATH中)下创建脚本 "proxy-cmd.sh"
#! /bin/bash
(echo "CONNECT $1:$2 HTTP/1.0"; echo; cat ) | socket YOUR_PROXY
YOUR_PROXY_PORT | (read a; read a; cat )
3 chmod +x proxy-cmd.sh
4 export GIT_PROXY_COMMAND=<PATH TO YOUR SCRIPT>/proxy-cmd.sh
这里你可以在~/.bashrc中export GIT_PROXY_COMMAND,就没有必要每次都export了。
至此,你就可以repo init了。
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
怎样远程连接windows share folder
除了ubuntu自带的connect to server外,还有一种办法:
这里我简单写了几个步骤:
首先是跟上网无关的,那就是设置中文输入环境:
1.在CDROM中插入Ubuntu CD,在Ubuntu面板上选择“System->Administration->Software
Sources”,然后选中“Installable from CD-ROM/DVD”
2.选择“System->Administration->Language Support”,选中“Use input
method...”然后单击“Install/Remove Languages...”,Choose "Chinese" and
then apply.
3.“System->Preferences->SCIM Input Method Setup”,在“Global Setup”中,
你会看到中文输入法,设置Hotkey,重启即可。
接下来是设置Office网络:
1.“System->Preferences->Network Connections”,在“Wired”tab中编辑
Connection,“802.1x Security”Authentication选择Protected EAP(PEAP),
里面选项选择“MSCHAPV2”,然后输入你的User name以及Passwd
(和你Windows中的OA Account一致)
接下来设置Internet Proxy,有两个,一个是Firefox,另一个是Terminal:
Firefox:“Edit->Preference->Advanced->Network”,选择“Settings...”,
然后设置Http Proxy(根据你公司的网络)
Terminal:这一步,我们需要cntlm这个插件,如附档。
安装cntlm,然后“sudo gedit /etc/cntlm.conf”,修改Username, Domain,
Password和Proxy;
编辑完后,运行“sudo cntlm -f -v”
最后“System->Preferences->Network Proxy”,选中“Manual proxy
configuration”,HTTP Proxy输入127.0.0.1, Port输入3128
然后按下“Apply System-Wide...”
这些设置完后,可以试下“sudo apt-get update”
做完上面这些设置后,你应该就可以通过Proxy上OA网络,而且可以apt-get了。
补充:内网ssh代理
使用corkscrew sudo apt-get install corkscrew
修改用户目录下的.ssh/config文件,正常情况下没有config文件
Host *
ProxyCommand corkscrew http-proxy.example.com 8080 %h %p
I successfully 'GIT' android source through http proxy. Here is my
steps:
Download a tool corkscrew from http://www.agroman.net/corkscrew/
tar zxvf corkscrew-2.0.tar.gz cd corkscrew-2.0 ./configure make cp corkscrew ~/bin # or to any directory in your $PATH
Create a shell script named 'git-proxy' in ~/bin, include following
content:
#!/bin/sh exec ~/bin/corkscrew <proxy name> <proxy port> $*
Replace ~/bin/ and <...> with your own information.
and then run following command:
git config --global core.gitproxy '~/bin/git-proxy'
========================================================
有可能会出现如下错误
Getting repo ... from git://android.git.kernel.org/tools/repo.git fatal: exec ~/bin/git-proxy failed. fatal: The remote end hung up unexpectedly
解决办法:
1. make sure your git-proxy has x attribute: chmod +x git-proxy.
2. make sure your git-proxy is correct.
3. try replace ~/bin with the absolute path.
===========================================================
还有一个工具
1. Install socat. For example, on Debian/Ubuntu, just sudo apt-get install socat.
2. Create a script called gitproxy in your bin directory;
#!/bin/sh
# Use socat to proxy git through an HTTP CONNECT firewall.
# Useful if you are trying to clone git:// from inside a company.
# Requires that the proxy allows CONNECT to port 9418.
#
# Save this file as gitproxy somewhere in your path (e.g., ~/bin) and then run
# chmod +x gitproxy
# git config --global core.gitproxy gitproxy
#
# More details at http://tinyurl.com/8xvpny
# Configuration. Common proxy ports are 3128, 8123, 8000.
_proxy=proxy.yourcompany.com
_proxyport=3128
exec socat STDIO PROXY:$_proxy:$1:$2,proxyport=$_proxyport
view raw gitproxy-socat This Gist brought to you by GitHub.
You will need to replace proxy.yourcompany.com with the name of your proxy host and the port with the port used by the proxy (common ports include 3128, 8123 and 8000). (If the javascript is broken, visit Gist 49288 and download the raw file; or use the original commands as reproduced in the comments.)
3. Configure git to use it:
$ git config --global core.gitproxy gitproxy
按照上面的两种方法,我设置git proxy依旧没有能够成功:(
这里,我再介绍我成功设置git proxy的第三种办法
使用socket
step如下:
1 sudo apt-get install socket
2 在你的home/allen/bin(这个在$PATH中)下创建脚本 "proxy-cmd.sh"
#! /bin/bash
(echo "CONNECT $1:$2 HTTP/1.0"; echo; cat ) | socket YOUR_PROXY
YOUR_PROXY_PORT | (read a; read a; cat )
3 chmod +x proxy-cmd.sh
4 export GIT_PROXY_COMMAND=<PATH TO YOUR SCRIPT>/proxy-cmd.sh
这里你可以在~/.bashrc中export GIT_PROXY_COMMAND,就没有必要每次都export了。
至此,你就可以repo init了。
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
怎样远程连接windows share folder
除了ubuntu自带的connect to server外,还有一种办法:
#!/bin/sh sudo mount //10.193.77.93/FreeShare /mnt/share/ -o iocharset=utf8,username=wjrt87,password=123,dmask=777,fmask=777,codepage=cp936,uid=0
- cntlm_0.35.1-1_i386.rar (55.8 KB)
- 下载次数: 7
- corkscrew-2.0.tar.gz (55.4 KB)
- 下载次数: 1
发表评论
-
AOSP source code build error: Virtual memory exhausted: Cannot allocate memory
2014-01-02 15:47 1381Sometimes compiling certain thi ... -
Disable Amazon hint in Ubuntu search
2013-12-22 18:07 941Getting bored with Amazon assoc ... -
Remove Ubuntu One
2013-12-08 23:08 869To start, we need to make sure ... -
Get Rid Of “System Program Problem Detected” error in Ubuntu
2013-12-08 22:59 685Remove old crash-reports - reco ... -
error: gnutls_handshake() falied when you sync chip code in ubuntu
2013-11-30 19:47 925gnutls package is broken, worka ... -
unix2dos dos2unix
2013-03-04 20:12 796sudo aptitude install tofrodos ... -
JDK6 installed in Ubuntu
2012-11-10 15:23 854按照网上的方法apt-get并不成功,我这里采用的方法是手工安 ... -
Android source sync问题汇总(since 2012)
2012-11-04 16:00 18361. [repo init] fetch address is ... -
How to develpe Object-C on Ubuntu
2011-11-21 17:08 11191) Install the GNU Objective-C ... -
如何使用USB及wubi安装ubuntu11.10
2011-11-15 17:48 7工具/原料 usb或者usb接口的存储介质(如mp3/4/ ... -
Ubuntu-Studio 11.10下载
2011-11-15 17:46 986http://cdimage.ubuntu.com/ubunt ... -
Ubuntu10.10上怎样安装JDK5
2011-01-04 11:11 1471sudo apt-get install sun-java5- ... -
Hello LUA
2010-12-17 14:08 1334LUA, who are you? Lua是一种轻量级的 ... -
Ubuntu10.04安装后丢失windows启动项解决方法
2010-06-27 16:45 1484先安装的windows,然后安装ubuntu后重启没有了启动选 ... -
更换Ubuntu Java开发环境
2010-05-28 10:31 1118allen@ubuntu:~/jordan/cts05$ su ... -
如何释放Ubuntu多余的空间?如何给Ubuntu扩容(install inside windows)?
2010-05-28 09:06 7489最近发现ubuntu空间老被占满,腾出了5G空间,不过一会儿d ... -
Wubi安装ubuntu10.04
2010-05-25 11:05 954http://www.wubi-installer.org/ ... -
Ubuntu新安装后需要做的事
2010-05-25 09:18 1631其中的某些步骤没有亲自尝试过,遇到问题可以先google ... -
Ubuntu更新源列表(更新到10.10)
2010-05-21 11:29 4405Ubuntu 10.10 #官方的Ubuntu 10.10要 ... -
apt-get提示插入cd的解决办法
2010-05-19 13:26 1680当用apt-get的时候,有时候会出现如下提示 比如sudo ...
相关推荐
### 在Ubuntu 9.04上安装VMware Tools的详细步骤及注意事项 #### 一、背景介绍 在虚拟化环境中,为了提高宿主机与虚拟机之间的兼容性和性能,通常需要在虚拟机内部安装一个名为VMware Tools的软件包。本文将详细...
标题中的“硬盘安装Ubuntu 9.04过程详解”指的是在个人计算机的硬盘上安装Linux Ubuntu ...虽然现代的Ubuntu版本推荐使用更简便的USB启动盘安装,但在没有USB设备或网络环境的条件下,硬盘安装依然是一种实用的方法。
4. **网络配置**:在安装过程中,用户可以设置网络连接,这样可以在线更新软件包和获取安装过程中可能需要的额外驱动。 5. **安装类型**:用户可以选择“标准”安装,该选项将为用户配置基础系统;也可以选择...
在本篇文章中,我们将深入探讨如何安装Ubuntu 9.04操作系统,这是一款基于Debian的Linux发行版,因其稳定性、易用性和强大的开源社区支持而受到广大用户的喜爱。Ubuntu 9.04,代号Jaunty Jackalope,发布于2009年,...
对于学习ubuntu 9.04的童鞋很有用滴
### Ubuntu 9.04 更新源配置详解 #### 背景介绍 Ubuntu 9.04(代号Jaunty Jackalope)是2009年4月发布的Ubuntu版本之一,它提供了许多功能改进和性能提升。随着时间的推移,用户可能会遇到软件包过时或下载速度慢的...
Ubuntu 9.04 ISPconfig设置
ubuntu 9.04 安装配置优化全记录
在这个教程中,我们将深入探讨如何在Ubuntu这个基于Debian的Linux发行版上安装并配置CVSNT,以便于团队协作和代码管理。 首先,我们需要确保系统已经更新到最新状态,执行以下命令: ```bash sudo apt-get update ...
### Ubuntu9.04下安装SimpleScalar的知识点详解 #### 1. 安装环境 - **操作系统**:Ubuntu 9.04 - **GCC版本**:4.3.3(该版本为系统自带) #### 2. 软件下载 - **下载地址**:访问官方网站 ...
Ubuntu-9.04-1gb.7z,是colinux下的Ubuntu 9.04的镜像文件~
OpenERP Installing Ubuntu9.04
ubuntu每次装完之后,网络配置经常不成功无法链接到外网,所以做个总结以后可供参考
- **Ubuntu 9.04** 是一款基于Debian的开源操作系统,提供了一个用户友好的图形界面以及丰富的应用软件,对于希望尝试Linux系统的Windows用户来说是一个不错的选择。 - **Windows** 系统是目前市场上最广泛使用的...
Ubuntu 9.04 双网卡双 IP 配置方法 本文将详细介绍 Ubuntu 9.04 双网卡双 IP 配置方法,解决了双线情况下只能 ping 通一个网卡的问题。 在 Ubuntu 9.04 系统中,配置双网卡双 IP 需要解决两个问题:一是配置两个...
- **DHCP**:解释了 DHCP 的工作原理及其在 Ubuntu 9.04 服务器中的配置方法。 - **时间同步**:介绍了如何使用 NTP(网络时间协议)来保持系统时间的准确性。 - **远程管理**: - **OpenSSH 服务器**:详细说明了...