Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 5,208
» Latest member: slotqris
» Forum threads: 4,029
» Forum posts: 16,404
Full Statistics
|
Online Users |
There are currently 187 online users. » 0 Member(s) | 184 Guest(s) Bing, Google, Yandex
|
Latest Threads |
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 70
|
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 73,976
|
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 30,522
|
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 1,648
|
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 5,053
|
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 40,632
|
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 103,526
|
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 44,259
|
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 34,695
|
what does your nick mean ...
Forum: Hello
Last Post: volt
2020-08-06, 03:25 PM
» Replies: 28
» Views: 40,155
|
|
|
ISDN DrayTek Adapter |
Posted by: localoca - 2004-01-17, 11:10 PM - Forum: Network Problems
- Replies (1)
|
 |
I have and ISDN draytek adapter for my connection and even though i've installed the drivers i can't see it on the adapter list... any chance i could get some help to try and resolve that? :(
|
|
|
ifconfig command in RH9?? |
Posted by: sallas - 2004-01-17, 01:26 AM - Forum: Redhat
- Replies (4)
|
 |
Hi all,
Been a while since I have played around with Linux, but was sure that the ifconfig was equivelant to the windows ipconfig command?
Running the following command in both my RH9 boxes :
ifconfig eth0
Returns :
bash: ifconfig: command not found
I must be missing soemthing simple surely!
TIA.
|
|
|
apt-get kernel 2.6 |
Posted by: hijinks - 2004-01-16, 04:26 PM - Forum: Kernel Related
- Replies (16)
|
 |
want to know how to install 2.6 via apt. Well its easy. Add the following line to your /etc/apt/sources.list file
rpm [/url][url=http://people.redhat.com]http://people.redhat.com arjanv/2.6 kernel
then run the following commands
Code: apt-get update
apt-get install kernel#2.6.1-1.131
that was when 2.6.1-1.131 was the newest. You can get a complete listing by running
Code: apt-get install kernel
NOTE: This was done on a fedora core1 box. RH 9 might have some depandancy issues :)
|
|
|
I get this error message |
Posted by: InaVirtualGhetto - 2004-01-16, 01:47 PM - Forum: Security and Firewalls
- Replies (4)
|
 |
in gentoo, a fresh install, I get this error message while trying to do anything except display the help in ipatbles:
modprobe: Can't locate module ip_tables
iptables v1.2.8: can't initialize iptables table `filter': iptables who? (do you need to insmod?)
Perhaps iptables or your kernel needs to be upgraded.
I am using the 2.4.20 kernel, and iptables worked fine with the same kernel version in redhat 9. I even emerged a new version of iptables, and the error message still comes up. what could be the problem?
|
|
|
How to Install Apache/Tomcat/Java/Tomcat-Connector |
Posted by: Strabo - 2004-01-16, 01:47 PM - Forum: LAMP
- Replies (4)
|
 |
This will tell you how to install apache tomcat java and tomcat connector step by step with screen shots so you wont get lost. I got ZERO help in doing this from anyone on IRC.
Here is the link to my doc but if you can't get it for some reason (1.2 mb big) i'll paste the instructions below wihtout scren shots.
[/url][url=http://www.xn85turbo.com/Apache-Tomcat-Tom...ector-Setup.doc]http://www.xn85turbo.com/Apache-Tomcat-Tom...ector-Setup.doc
[strabo]
These are the environment variables!
echo "#Set a few environmental variables for Tomcat, Java, and Apache" >> /etc/profile
echo "export CATALINA_HOME=/usr/local/tomcat/" >> /etc/profile
echo "export JAVA_HOME=/usr/local/java" >> /etc/profile
echo "export APACHE_HOME=/usr/local/apache" >> /etc/profile
echo "#Start Tomcat and Apache
echo "/usr/local/sbin/start.sh" >> /etc/rc.local
echo "#Set a few environmental variables for Tomcat, Java, and Apache" >> /etc/rc.local
echo "export CATALINA_HOME=/usr/local/tomcat/" >> /etc/rc.local
echo "export JAVA_HOME=/usr/local/java" >> /etc/rc.local
echo "export APACHE_HOME=/usr/local/apache" >> /etc/rc.local
Step 1:
Go get the apps listed in each install section!
Step 2:
Change to the directory with the applications> cd /usr/local/src/NfuseApache
Step 3:
Unpack Apache first: tar zxvf httpd-2.0.47.tar.gz
Step 4:
Change to the Directory with the apache installation files> cd /usr/local/src/NfuseApache/httpd-2.0.47
Step 5:
Configure Apache: ./configure --prefix=/usr/local/apache --enable-so
Step 6:
Make the package> make
Step 7:
Install the package> make install
Step 8:
Test Apache configuration> /usr/local/apache/bin/apachectl configtest
Step 9:
Set the Apache variable> export APACHE_HOME=/usr/local/apache
Verify that the variable is set> echo $ APACHE_HOME
Install Tomcat:
Step 1:
Change to the installation directory> cd /usr/local/src/NfuseApache
Step 2:
Copy tomcat to /usr/local/ > cp -p tomcat-4.1.27.tar.gz /usr/local/
Verify its there> ls /usr/local/
Step 3:
Change to the /usr/local directory > cd /usr/local/
Step 4:
Unpack Tomcat> tar zxvf tomcat-4.1.27.tar.gz
Step 5:
Make a symbolic link ot the tomcat installation directory> ln -s /usr/local/jakarta-tomcat-4.1.27 /usr/local/tomcat
Verify its there> ls
Step 6:
Set the tomcat directory variable> export CATALINA_HOME=/usr/local/tomcat
Step 7:
Verify that it now read the new variable> echo $CATALINA_HOME
Build install JAVA
Step 1:
Make the java package executable> chmod 777 chmod 777 j2sdk-1_4_2_03-linux-i586.bin
Step 2:
Copy the package to /usr/local/ > cp j2sdk-1_4_2_03-linux-i586.bin /usr/local/
Step 3:
Change to the /usr/local/ directory> cd /usr/local/
Step 2:
Unpack the Java package> ./ j2sdk-1_4_2_03-linux-i586.bin
Step 3:
Read the Disclaimer and except it at the end by typing> yes
The package will unpack and create a directory called j2sdk1.4.2_03
Step 4:
Make a symbolic link to the java directory> ln -s /usr/local/j2sdk1.4.2_03/ /usr/local/java
Step 5:
Verify the /usr/local/java symbolic link was created> ls /usr/local
Step 6:
Set the java directory variable> export JAVA_HOME=/usr/local/java
Verify the variable was set for java> echo $JAVA_HOME
Build Tomcat/Apache Connector:
Step 1:
Change to the installation directory> cd /usr/local/src/NfuseApache/
Step 2:
Unpack the connector package> tar xvzf jakarta-tomcat-connectors-jk-1.2-src-current.tar.gz
Step 3:
Set the Connector Home variable> export CONNECTOR_HOME=/usr/local/src/NfuseApache/jakarta-tomcat-connectors-jk-1.2.5-src
Verify the variable is correct> echo $ CONNECTOR_HOME
Step 4:
Change to the connector installation directory> cd $CONNECTOR_HOME/jk/native
Step 5:
Run the build command> ./buildconf.sh
Step 6:
Run the configure command to link it to apache> ./configure --with-apxs=/usr/local/apache/bin/apxs
Step 7:
Make the package> make
Step 8:
Install the package> make install
Step 9:
Verify it made the file mod_jk.so> find / -name mod_jk.so
|
|
|
real player |
Posted by: tek-69 - 2004-01-16, 01:35 PM - Forum: Audio and Video
- Replies (2)
|
 |
as much as i hated real player for windows alot of net based video is in its format.
I couldnt find a linux version so i was wondering if anyone knew of a linux program that could
view real?
have fun
-tek-
|
|
|
|