LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 04-27-2014, 12:20 AM   #16
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641

# 15 .

The right compiler for Ubuntu 12.04 - i686 is now :
gcc41-compat-4.1.2.ubu1204_i386.deb →
https://docs.google.com/open?id=0B7S...lNURldUenRyb3c

Removing the "1210" gcc41 : $ sudo dpkg -r gcc41-compat
Install "1204" : $ sudo dpkg -i gcc41-compat-4.1.2.ubu1204_i386.deb

No reboot required. The PATH script /etc/profile.d/gcc41.sh is the same.

-
 
Old 04-27-2014, 01:29 AM   #17
dils747
LQ Newbie
 
Registered: Apr 2014
Posts: 9

Rep: Reputation: Disabled
I have removed the old package and installed the new one.
But I am getting the same error when I try "export CC=gcc41 CXX=g++41 && ./install"
Below is the complete trace when I execute

# export CC=gcc41 CXX=g++41 && ./install
============================================================
* Testing for Cygwin environment
============================================================
Cygwin not detected, proceeding with regular install.
============================================================
* Build XGraph-12.1
============================================================
loading cache ./config.cache
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... (cached) yes
checking for working aclocal... found
checking for working autoconf... found
checking for working automake... found
checking for working autoheader... found
checking for working makeinfo... missing
checking if malloc debugging is wanted... no
checking for gcc... (cached) gcc
checking whether the C compiler (gcc ) works... yes
checking whether the C compiler (gcc ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking for X... (cached) libraries , headers
checking for dnet_ntoa in -ldnet... (cached) no
checking for dnet_ntoa in -ldnet_stub... (cached) no
checking for gethostbyname... (cached) yes
checking for connect... (cached) yes
checking for remove... (cached) yes
checking for shmat... (cached) yes
checking for IceConnectionNumber in -lICE... (cached) yes
checking for float.h... (cached) yes
checking for limits.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for unistd.h... (cached) yes
checking for strcasecmp... (cached) yes
creating ./config.status
creating Makefile
creating autoconf.h
autoconf.h is unchanged
gcc -DHAVE_CONFIG_H -I. -I. -I. -g -c dialog.c
dialog.c: In function ‘make_msg_box’:
dialog.c:780:5: warning: passing argument 2 of ‘getline’ from incompatible pointer type [enabled by default]
/usr/include/stdio.h:675:20: note: expected ‘size_t * __restrict__’ but argument is of type ‘char *’
dialog.c:780:5: error: too few arguments to function ‘getline’
/usr/include/stdio.h:675:20: note: declared here
dialog.c: In function ‘getline’:
dialog.c:893:9: error: argument ‘lptr’ doesn’t match prototype
/usr/include/stdio.h:675:20: error: prototype declaration
dialog.c:899:1: error: number of arguments doesn’t match prototype
/usr/include/stdio.h:675:20: error: prototype declaration
make: *** [dialog.o] Error 1
Can not create xgraph; But xgraph is an optional package, continuing...
============================================================
* Build CWeb
============================================================
Making cweb
gcc -g -c -o ctangle.o ctangle.c
ctangle.w:75:12: warning: conflicting types for built-in function ‘strlen’ [enabled by default]
gcc -g -DCWEBINPUTS=\"/usr/local/lib/cweb\" -c common.c
common.w:1409:12: warning: conflicting types for built-in function ‘strlen’ [enabled by default]
common.w: In function ‘fatal’:
common.w:1176:1: warning: format not a string literal and no format arguments [-Wformat-security]
gcc -g -o ctangle ctangle.o common.o
gcc -g -c -o cweave.o cweave.c
cweave.w:79:12: warning: conflicting types for built-in function ‘strlen’ [enabled by default]
cweave.w: In function ‘print_cat’:
cweave.w:1739:1: warning: format not a string literal and no format arguments [-Wformat-security]
gcc -g -o cweave cweave.o common.o
ln: failed to create symbolic link `cweave': File exists
ln: failed to create symbolic link `ctangle': File exists
============================================================
* Build Stanford GraphBase
============================================================
Making sgb
gcc41 -g -I/usr/local/sgb/include test_io.c gb_io.o -o test_io
make: gcc41: Command not found
make: *** [test_io] Error 127
Unable to create sgb library, but it's optional, so continuing...
============================================================
* Build GT-ITM
============================================================
sgb lib not found. gt-itm & sgb2ns could not be installed. Continuing..
============================================================
* Build zlib
============================================================
Building static library libz.a version 1.2.3 with gcc41.
Checking for unistd.h... No.
Checking whether to use vs[n]printf() or s[n]printf()... using s[n]printf()
Checking for snprintf() in stdio.h... No.
WARNING: snprintf() not found, falling back to sprintf(). zlib
can build but will be open to possible buffer-overflow security
vulnerabilities.
Checking for return value of sprintf()... No.
WARNING: apparently sprintf() does not return a value. zlib
can build but will be open to possible string-format security
vulnerabilities.
Checking for errno.h... No.
Checking for mmap support... No.
make: Nothing to be done for `all'.
Zlib has been installed successfully.
============================================================
* Build tcl8.4.11
============================================================
loading cache ./config.cache
checking whether to use symlinks for manpages... no
checking whether to compress the manpages... no
checking whether to add a package name suffix for the manpages... no
checking for gcc... gcc41
checking whether the C compiler (gcc41 ) works... no
configure: error: installation or configuration problem: C compiler cannot create executables.
tcl8.3.2 configuration failed! Exiting ...
Tcl is not part of the ns project. Please see www.Scriptics.com
to see if they have a fix for your platform.

Last edited by dils747; 04-27-2014 at 01:35 AM.
 
Old 04-27-2014, 03:49 AM   #18
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# 17 .
Quote:
# export CC=gcc41 CXX=g++41 && ./install
OK, that's kind of an error. You should do ns2 builds in /home/name/<folder>/,
.. and no "root" commands ! ( Except for # make install ).
*** `root´ is for administrative tasks only.

If you insist in using `root´, you will need gcc41/g++41 in root's PATH :
$ cd /usr/bin/
# ln -s ../gcc41/bin/gcc41
# ln -s ../gcc41/bin/g++41

-
 
1 members found this post helpful.
Old 04-27-2014, 06:42 AM   #19
dils747
LQ Newbie
 
Registered: Apr 2014
Posts: 9

Rep: Reputation: Disabled
Unhappy Same segmentation problem

Thanks for the reply. I have istalled gcc41 and g++41 as a non-root user.
After this I installed ns-2.29 as you have mentioned from the scratch.
But when I run "ns-nist-pmipv6 pmip.tcl" I am getting the same segmentation error.

num_nodes is set 6
INITIALIZE THE LIST xListHead
_o97 channelID = 2412000000.000000
_o127 channelID = 2437000000.000000
_o200 channelID = 2412000000.000000
channel.cc:sendUp - Calc highestAntennaZ_ and distCST_
highestAntennaZ_ = 1.5, distCST_ = 513.3
SORTING LISTS ...DONE!
Link Connect to AP 0 on Channel 1
Segmentation fault (core dumped)

My system is 64 bit and I have installed 32 bit ubuntu 12.04. Is there any connection with 64 bit machine or with ubuntu 12.04?
or else pls let me know the OS in which you have executed "pmip.tcl" code.
 
Old 04-27-2014, 07:54 AM   #20
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# 19 .

Most computers are 64bits. Since 2004 - 2005.
No problem at using a 32bits OS with a 64bits processor.
But : ns-2.29 + ns-2.29-nist-mob-022707 + pmip6-for-ns-2.29-nist.patch
.. don't seem to work with Ubuntu 12.04 : Cannot compile with g++41 .
( Because the nistmob + pmip files are far older than ns-2.29.3 ).
And cannot link if using the older compiler g++34 (gcc version 3.4.6).

( Actually 64bits did once work with the above : CentOS 5.x )
The reliable choice is usually the 32bits CentOS 6.5 .

Please read the threads. May also work with a later 32bits Ubuntu.
http://www.linuxquestions.org/questi...gs/wimax-nist/
http://www.linuxquestions.org/questions/tags/nist-mob/
http://www.linuxquestions.org/questions/tags/pmip6/

-

Last edited by knudfl; 04-27-2014 at 11:30 AM.
 
1 members found this post helpful.
Old 04-27-2014, 09:24 AM   #21
dils747
LQ Newbie
 
Registered: Apr 2014
Posts: 9

Rep: Reputation: Disabled
Thank you so much for your timely help.
I will do with cent OS. If something goes wrong I will trouble you again.. hope you dont mind

Regards,
Dils
 
Old 05-01-2014, 10:19 PM   #22
dils747
LQ Newbie
 
Registered: Apr 2014
Posts: 9

Rep: Reputation: Disabled
Installing gcc41 & g++41 in CentOS 6.4

Hello.. I am back

Would you pls guide me in installing gcc41 & g++41 in CentOS 6.4?

Thanks
 
Old 05-02-2014, 03:21 AM   #23
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# 22 .

A similar compiler is already available :
# yum install compat-gcc-34-c++

Then the build command will be :
$ export CC=gcc34 CXX=g++34 && ./install

(It's Ubuntu only, that has the "g++34 issues" with `ns-2.29-nist-mob´, I think.)

-
 
Old 05-02-2014, 08:30 AM   #24
dils747
LQ Newbie
 
Registered: Apr 2014
Posts: 9

Rep: Reputation: Disabled
Errors while executing install command

I have installed gcc34 as root
then I have executed #export CC=gcc34 CXX=g++34 && ./install

It is throwing lots of errors. Please find the attachment of the errors.
I think its problem with gcc. Could you please help?
Attached Files
File Type: txt Error.txt (17.6 KB, 15 views)
 
Old 05-02-2014, 09:54 AM   #25
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# 24 .
Quote:
I have installed gcc34 as root
It better be : # yum install compat-gcc-34-c++

Start from scratch in a new folder in /home/<name>/.
And no root commands ! (Except 'make install'.)
See the above posts : `$´ is the user prompt. `#´ is root.

Use the right ns-2.29 = 'ns-allinone-2.29.3.tar.gz'
http://sourceforge.net/projects/nsna...allinone-2.29/

$ tar xvf ns-allinone-2.29.3.tar.gz
$ cd ns-allinone-2.29/
$ tar xvf ns-2.29-nist-mob-022707.tgz
$ patch -p0 < pmip6-for-ns-2.29-nist.patch
$ export CC=gcc34 CXX=g++34 && ./install
$ cd ns-2.29/
# make install

-

Last edited by knudfl; 05-02-2014 at 09:56 AM.
 
Old 05-03-2014, 03:59 AM   #26
dils747
LQ Newbie
 
Registered: Apr 2014
Posts: 9

Rep: Reputation: Disabled
Getting same errors


Just did every thing from scratch as you have mentioned but ending up at the same point.. getting lots of errors while it is installing tk8.4.11.

please let me know how to solve this.
 
Old 05-03-2014, 04:30 AM   #27
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# 26.

The ns-2.29.3 { tcl8.4.11/, tk8.4.11/, otcl-1.11/ }
.. will build equally OK with either gcc-3.4.6 or gcc-4.4.x .
.. So your `tk8.4.11´ issues are not compiler related.

May be you forgot to install all the required prerequisites ?
# yum install \
gcc-c++ compat-gcc-34-c++ autoconf automake libtool libXmu-devel

Can also be a corrupt ns-allinone-2.29.3.tar.gz ?
Delete the one you downloaded, and get a new one ..
http://sourceforge.net/projects/nsna...ar.gz/download

-
 
1 members found this post helpful.
Old 05-03-2014, 08:10 AM   #28
dils747
LQ Newbie
 
Registered: Apr 2014
Posts: 9

Rep: Reputation: Disabled
Thumbs up Thanks a lot.. !

Finally I have installed ns and executed pmip.tcl
Got the trace output..! Problem was with prerequisites..
You are doing a great job of guiding newbies like me..
Thanks a lot

I really want to learn linux concepts in depth..
would you please give me some suggestions, links to Internet resources etc.

Regards,
Dils

Last edited by dils747; 05-03-2014 at 08:12 AM.
 
Old 05-03-2014, 08:22 AM   #29
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# 28 .

Best way of learning : Use a Linux OS.
Reading about it is OK, but things are memorized much easier,
when they are used in a real situation.

RUTE is often suggested to be good to start with :
. http://rute.2038bug.com/index.html.gz
. http://linux.2038bug.com/rute-home.html

-
 
Old 03-07-2015, 04:39 PM   #30
abenmariem
LQ Newbie
 
Registered: Feb 2014
Location: Tunisia
Distribution: Ubuntu
Posts: 29

Rep: Reputation: Disabled
pmip problem with ns2.29

Hello,
I installed ns2.29 on ubuntu 13.10 32 bits and i added the patch successfully to ns2.29.
url:https://sites.google.com/site/pmip6n...ns-2/downloads
when trying to execute pmip.tcl i got the problem with the tracing in the line:
(void)Tcl_Write(channel_, wrk_, n + 1); (basetrace.cc)
size is the size of the wrk_ variable that i am printing.
the problem is:

r 0.100596958 _5_ MAC --- 0 BCN 64 [20a ffffffff 0 0]
size 56
Link Connect to AP 0 on Channel 1
s 0.101266958 _5_ MAC --- 0 UNKN 44 [13a 0 2 0]
size 50
r 0.101474503 _3_ MAC --- 0 UNKN 44 [13a 0 2 0]
size 50
s 0.101484503 _3_ MAC --- 0 ACK 38 [0 2 0 0]
size 47
r 0.101789503 _5_ MAC --- 0 ACK 38 [0 2 0 0]
size 47
s 0.101858503 _3_ MAC --- 0 CM1 44 [13a 2 0 0]
size 49
r 0.102066049 _5_ MAC --- 0 CM1 44 [13a 2 0 0]
size 49
s 0.102076049 _5_ MAC --- 0 ACK 38 [0 0 0 0]
size 47
s 0.102381049 _3_ AGT --- 1 pbu 68 [0 0 0 0] ------- [12582912:250 4194304:250 32 0]
size 87
+ 0.102381 3 0 pbu 68 ------- 0 3.0.0.250 1.0.0.250 -1 1
size 57
- 0.102381 3 0 pbu 68 ------- 0 3.0.0.250 1.0.0.250 -1 1
size 57
r 0.102381049 _3_ MAC --- 0 ACK 38 [0 0 0 0]
size 47
r 0.103386 3 0 pbu 68 ------- 0 3.0.0.250 1.0.0.250 -1 1
size 57
+ 0.103386 0 1 pbu 68 ------- 0 3.0.0.250 1.0.0.250 -1 1
size 57
- 0.103386 0 1 pbu 68 ------- 0 3.0.0.250 1.0.0.250 -1 1
size 57
r 0.104392 0 1 pbu 68 ------- 0 3.0.0.250 1.0.0.250 -1 1
size 57
+ 0.104392 1 0 pba 68 ------- 0 1.0.0.250 3.0.0.250 -1 2
size 57
- 0.104392 1 0 pba 68 ------- 0 1.0.0.250 3.0.0.250 -1 2
size 57
r 0.105397 1 0 pba 68 ------- 0 1.0.0.250 3.0.0.250 -1 2
size 57
+ 0.105397 0 3 pba 68 ------- 0 1.0.0.250 3.0.0.250 -1 2
size 57
- 0.105397 0 3 pba 68 ------- 0 1.0.0.250 3.0.0.250 -1 2
size 57
r 0.106403 0 3 pba 68 ------- 0 1.0.0.250 3.0.0.250 -1 2
size 57
r 0.106402809 _3_ AGT --- 2 pba 68 [0 0 0 0] ------- [4194304:250 12582912:250 30 0]
size 87
s 0.155638072 _4_ MAC --- 0 BCN 64 [20a ffffffff 1 0]
size 56
s 0.200083958 _3_ MAC --- 0 BCN 64 [20a ffffffff 0 0]
size 56
r 0.200596958 _5_ MAC --- 0 BCN 64 [20a ffffffff 0 0]
size 56
s 0.255638072 _4_ MAC --- 0 BCN 64 [20a ffffffff 1 0]
size 56
s 0.300083958 _3_ MAC --- 0 BCN 64 [20a ffffffff 0 0]
size 56
r 0.300596958 _5_ MAC --- 0 BCN 64 [20a ffffffff 0 0]
size 56
s 0.355638072 _4_ MAC --- 0 BCN 64 [20a ffffffff 1 0]
size 56
s 0.400083958 _3_ MAC --- 0 BCN 64 [20a ffffffff 0 0]
size 56
r 0.400596958 _5_ MAC --- 0 BCN 64 [20a ffffffff 0 0]
size 56
s 0.455638072 _4_ MAC --- 0 BCN 64 [20a ffffffff 1 0]
size 56
+ 0.5 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 0 4
size 49
- 0.5 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 0 4
size 49
s 0.500083958 _3_ MAC --- 0 BCN 64 [20a ffffffff 0 0]
size 56
r 0.500596958 _5_ MAC --- 0 BCN 64 [20a ffffffff 0 0]
size 56
+ 0.501 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 1 5
size 51
- 0.501 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 1 5
size 51
+ 0.502 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 2 6
size 51
- 0.502 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 2 6
size 51
+ 0.503 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 3 7
size 51
- 0.503 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 3 7
size 51
+ 0.504 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 4 8
size 51
- 0.504 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 4 8
size 51
+ 0.505 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 5 9
size 51
- 0.505 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 5 9
size 51
+ 0.506 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 6 10
size 52
- 0.506 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 6 10
size 52
+ 0.507 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 7 11
size 52
- 0.507 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 7 11
size 52
+ 0.508 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 8 12
size 52
- 0.508 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 8 12
size 52
+ 0.509 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 9 13
size 52
- 0.509 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 9 13
size 52
+ 0.51 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 10 14
size 52
- 0.51 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 10 14
size 52
r 0.51008 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 0 4
size 53
+ 0.51008 1 0 cbr 1040 ------- 2 1.0.0.1 3.0.0.1 0 4
size 53
- 0.51008 1 0 cbr 1040 ------- 2 1.0.0.1 3.0.0.1 0 4
size 53
+ 0.511 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 11 15
size 53
- 0.511 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 11 15
size 53
r 0.51108 2 1 cbr 1000 ------- 2 2.0.0.0 1.0.1.0 1 5
size 53
+ 0.51108 1 0 cbr 1040 ------- 2 1.0.0.1 3.0.0.1 1 5
size 53

/sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S
 
  


Reply

Tags
nist-mob, ns2, pmip6



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Help me with Network Simulator 2.....with MPLS and PMIPv6 Dannysenju Linux - Software 1 03-18-2012 04:29 PM
Pmipv6 installation in ns 2.29 on ubuntu 8.10 parulgaba Ubuntu 0 05-20-2011 02:09 AM
patch installation on RHEL shabev Linux - Enterprise 2 03-20-2008 10:08 AM
sendmail patch installation muks Linux - Networking 1 10-09-2003 07:58 PM
OpenSSH patch installation Obscure Linux - Security 6 09-22-2003 04:06 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 08:53 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration