How to Install TCSH package in Ubuntu 11?

I am trying to install tcsh package in ubuntu 11
When i tried to invoke the tcsh,i was prompted to contact administrator to install tcsh package.
Since i am also the admin on my system its my job to install tcsh :smiley:

I have downloaded tcsh package named "tcsh-6.17.00.tar", since i don not have online access with my laptop.. i will have to learn how to install tcsh offline.

please advice how to?

But why? :confused:
you can try the usual actions:

tar -xf tcsh-6.17.00.tar
cd tcsh-6.17.00
./configure
make
sudo make install

But tcsh is an old package and maybe you will need some twiks.
Another way - you can download deb package from Debian -- Error and

sudo dpkg -i tcsh_6.17.02-4_i386.deb 
1 Like

I am new in to shells,as an intern my work is mainly on c shell.
I wish there was an universal shell which can interpret all shells :frowning:
anyway, thanks for the answers, let me try.

---------- Post updated at 05:16 PM ---------- Previous update was at 04:54 PM ----------

Also, i need to run these commands in the directory where i am keeping the tcsh package?

and./configure return an error: command not supported :frowning:

I've just checked. It's works fine for me but I'm afraid you need a few development packages to compile it. The best way to download the deb package. Anyway you should download something and deb package is the smallest and easiest variant.

Its working now, I have installed the tcsh package. Just one doubt.
the awk command is not available. Is that normal.

I tried checking awk --help, but its an invalid syntax for my system.

I think there is something error on that Tcsh package. Try to install it again if ever it gonna happen again i think you should install another one...

This particular command doesn't work properly... after i enter "sudo make install"
after a while the process is stuck and i get error.

Your second method works, but I can't find the "awk" in the installed package.

In Ubuntu awk (gawk) is installed with the base system. What is the output of (the last line)

dpkg -l gawk

And how did you try to execute awk (in what shell/terminal)?

I tried its execution in tcsh.
I will post the exact output later today.

And give the input of

echo $PATH

Need a little advice.
I also have a fedora15 with me. as my work is mainly on tcsh/csh and later on python.
will you advice me to move on to fedora or stick with ubuntu?

Ubuntu 10.04.3 would be the best choice. But Natty is good too but only with the latest updates.
IMO, of course. And I don't know much about Fedora 15.

1 Like

Thanks guys for your help, i have successfully installed the tcsh packages.