Linux - GeneralThis Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
when i did , i got the following error
manju@manju-desktop:~/Desktop/ns-allinone-2.33/tk8.4.18$ patch -p0 < tk-8.4-lastevent.patch
patching file generic/tk.h
Reversed (or previously applied) patch detected! Assume -R? [n] r
Apply anyway? [n] n
Skipping patch.
1 out of 1 hunk ignored -- saving rejects to file generic/tk.h.rej
I have got this error when I install ubuntu 14.04 lts may support me
mak@ubuntu:~/ns-allinone-2.33/ns-2.33$ sudo make install
for d in /usr/local/man/man1; do \
if [ ! -d $d ]; then \
mkdir -p $d ;\
fi;\
done
/usr/bin/install -c -m 755 ns /usr/local/bin
/usr/bin/install: cannot stat ‘ns’: No such file or directory
make: *** [install-ns] Error 1
mak@ubuntu:~/ns-allinone-2.33/ns-2.33$ ns
ns: error while loading shared libraries: libtcl8.5.so.0: cannot open shared object file: No such file or directory
mak@ubuntu:~/ns-allinone-2.33/ns-2.33$
I have got this error when I install ubuntu 14.04 lts may support me
Code:
mak@ubuntu:~/ns-allinone-2.33/ns-2.33$ sudo make install
for d in /usr/local/man/man1; do \
if [ ! -d $d ]; then \
mkdir -p $d ;\
fi;\
done
/usr/bin/install -c -m 755 ns /usr/local/bin
/usr/bin/install: cannot stat ‘ns’: No such file or directory
make: *** [install-ns] Error 1
mak@ubuntu:~/ns-allinone-2.33/ns-2.33$ ns
ns: error while loading shared libraries: libtcl8.5.so.0: cannot open shared object file: No such file or directory
mak@ubuntu:~/ns-allinone-2.33/ns-2.33$
This thread had been closed for *THIRTEEN YEARS* before you re-opened it. Open your own thread with your own question, and before doing so, you need to do basic research of your own.
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,519
Rep:
Post #6, @Aman Kemal : Ubuntu 14.04 and ns-allinone
Seems the 'ns' you are using is a leftover from a deleted ns-allinone-2.35 ?
I.e. libtcl8.5 is usually an ns-allinone-2.35 component.
How to create a new ns with ns-allinone-2.33, in Ubuntu 14.04 :
Code:
tar xvf ns-allinone-2.33.tar.gz
cd ns-allinone-2.33/
patch -p0 < ns233_gcc5.patch
https://drive.google.com/file/d/1XCe...usp=drive_link
./install
cd ns-2.33/
cp ns ns233
sudo cp ns233 /usr/local/bin/ ## i.e. a new ns must have a new filename
## in order not to get it confused with other "ns"
Simulation : $ ns233 file.tcl
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.