Thursday, February 25, 2010

find which linux os is running

uname -a

Linux fip 2.6.18-164.el5 #1 SMP Thu Sep 3 03:28:30 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux

tail /etc/redhat-release

CentOS release 5.4 (Final)


extract a tgz or tar.gz

To extract the compressed tar archive target.tar.gz into the current working directory with:

gzip -dc target.tar.gz | tar xf -

If the file was compressed with bzip2 (i.e., .tar.bz2), you can substitute the bzip2 command for gzip.

If the archive was compressed with the UNIX compress command (archive ending in .Z) you can use:

zcat target.tar.Z | tar xf -



Monday, February 8, 2010

Solution : error opening installation log file VMware-viclient.exe

Step 1. set following environment variable

           TMP = C:\TEMP
           TEMP = C:\TEMP
Step 2.  put the executable file under directory where you don't have any space in directory name
ex. C:\TEMP


C:\Documents and Settings\user [This will not work]

- Mihir Patel

Friday, February 5, 2010

how to extract tar.gz

tar xvf gzip-1.2.4.tar


Solution : configure.in: required file `./ylwrap' not found

Problem:

configure.in: required file `./ylwrap' not found
configure.in: `automake --add-missing' can install `ylwrap'

Solution :

copy in the ylwrap file from the automake1.10 directory to your local folder manually.

- Mihir Patel

Thursday, February 4, 2010

Ubuntu 9.10 + setting up auto detect proxy to correct apt-get update

if you can access google from firefox but unable to do apt-get update and install and stuff this article will help.


-- getting the proxysettings


  1. in the url type wpad/wpad.dat 
  2. save and open the wpad.dat file.
  3. you should see some thing like

function FindProxyForURL(url, host)
{
        if (isPlainHostName(host) ||
        isInNet(host, "10.0.0.0", "255.0.0.0") ||
        dnsDomainIs(host, ".pth.au.asap") ||
        dnsDomainIs(host, "sharepoint.site.com.au") ||
        dnsDomainIs(host, ".bne.au.asap") ||
        dnsDomainIs(host, ".talent2ehr.com") ||
        dnsDomainIs(host, ".hellobris") ||
        dnsDomainIs(host, ".wa") ||
        dnsDomainIs(host, ".switch.aust.com") ||
        dnsDomainIs(host, "HS9.site.com") ||
        dnsDomainIs(host, "inxsoftware.com") ||
        dnsDomainIs(host, "10.10.11.2") ||
    dnsDomainIs(host, ".csee-transport.fr") ||
        dnsDomainIs(host, "127.0.0.1"))
                return "DIRECT";
    if (shExpMatch(url, "http://155.89.236.87*")) {return "PROXY proxylu1.global.sys:3128";}
    if (shExpMatch(url, "http://155.89.1.145*")) {return "PROXY proxylu1.global.sys:3128";}
    if (shExpMatch(url, "http://155.89.1.131*")) {return "PROXY proxylu1.global.sys:3128";}
        else
                return "PROXY 10.25.41.14:3128; DIRECT";
    }

4. grab your proxy settings for it and enter then in the following tutorial.

- Mihir





===========================


Are you trying to use apt-get or synaptic or adept or {package-manager-of-choice} to keep Debian or Ubuntu machines up to date? Are you stuck behind your employer’s firewall? Is that firewall a Microsoft ISA proxy? Gee, you must be frustrated.

Our MS proxy speaks NTLM for authentication, and no amount of setting the http_proxy environment variable or rewriting /etc/apt/apt.conf seems to make any difference; the Linux machines can’t get out to the outside world.

Well, they partly can. Set the proxy details in Firefox and web browsing is fine, but nothing else is.

So, enter a very useful little Python application called ntlmaps or NTLM Authenticating Proxy Server. Set this up on a machine that needs updating, edit your /etc/apt/apt.conf to point to it, and away you go.

A few caveats. If you’re running Ubuntu, you should grab the ntlm package from Ubuntu — ntlmaps. If you’re on Debian you can get it from Debian’s page and of course it may be downloaded from its own site. I’d suggest not using the Debian one on Ubuntu or the Ubuntu one on Debian unless you want to fiddle endlessly with Python versions. But who would be silly enough {ahem} to do that?

I have had mixed experiences with using ntlmaps. First of all, I have seen suggestions that all you need to do is:

apt-get update
apt-get install ntlmaps

Yeah, nice one. Install via the network the thing you need to install things via the network. Sheesh. That’s why it’s necessary to use another machine to grab the .deb package from one of the providers I mentioned above and install it with a:

dpkg -i name_of_downloaded_package.deb

The install should finish with a nice series of questions designed to configure the proxy for you.

If it installed properly…

ps aux | grep ntl

…should show you the details of the running proxy.

You should be able to control the proxy via:

/etc/init.d/ntlm start
/etc/init.d/ntlm stop
/etc/init.d/ntlm restart

But on one of my machines these all failed silently and the ps aux | grep ntl revealed no running proxy. I ended up having to copy the /etc/ntlm/server.conf file to /usr/lib/site-python/ntlm/ directory and run:
sudo python /usr/lib/site-python/ntlm/main.py &
to backdoor the thing into going.

Update: Ignore my convoluted and painful hackaround above. The sane way to get ntlmaps working is to realise that there is a bug in the Debian and Ubuntu packages and to do this after you install it:

sudo dpkg-reconfigure ntlmaps

This will re-run the setup script and this time ask you all of the questions you need to answer to actually get it working. I have reported this bug via Ubuntu’s launchpad so with any luck the future releases may have this sorted out so you won’t need to re-run the config script after initially installing.

Oh, and make sure to edit (or create if it doesn’t exist) your /etc/apt/apt.conf so it contains:

ACQUIRE {
http://proxy "http://127.0.0.1:5865/"
}

Update update: I see that more recent installations of the apt system no longer have something called /etc/apt/apt.conf to manage their apt setup. This has been replaced by a directory called /etc/apt/apt.conf.d. So to get the proxy working on a newer setup, create a file called /etc/apt/apt.conf.d/proxy and put the above ACQUIRE stuff in it. Or like this if you wish:

Acquire::http::Proxy "http://127.0.0.1:5865/";

Port 5865 is the default port for the ntlmaps to listen on. If the planets are all in line, you should now be able to:

sudo apt-get update
or perhaps even better…
sudo aptitude update (aptitude apparently does a better job than apt-get)

Easy, eh? :-)

By the way, if your organisation has a password rotation policy that sees you changing your Windows login password with any sort of regularity, beware of being ambushed by ntlmaps. You will have given ntlmaps a password and it will keep using it. When you change your login password, be sure to reconfigure ntlmaps with your new one or it will silently continue authentication attempts via your user name and your old password. You may be happily logged in on another machine while ntlmaps quietly manages to get your account locked out. Hilarity ensues… or so I’m told.