Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,219
» Latest member: glassagencies
» Forum threads: 4,029
» Forum posts: 16,404

Full Statistics

Online Users
There are currently 164 online users.
» 0 Member(s) | 162 Guest(s)
Bing, Google

Latest Threads
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 511
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 89,182
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 42,536
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 1,922
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 5,416
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 41,532
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 118,540
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 56,319
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 46,215
what does your nick mean ...
Forum: Hello
Last Post: volt
2020-08-06, 03:25 PM
» Replies: 28
» Views: 42,188

 
  New here
Posted by: uncle.b - 2005-07-26, 12:57 AM - Forum: Hello - Replies (5)

Sup, my name is Branden and im 22. I currently live in central Florida and am going to school for computer programming and analysis(AS).

Print this item

  if you have dns issues
Posted by: anyweb - 2005-07-25, 11:30 AM - Forum: Network Problems - No Replies


if you can ping 66.249.87.99 but cannot ping www.google.com then chances are you have DNS issues (cannot resolve hostnames)

 

to fix, try manually editing /etc/resolv.conf and input your nameservers in there

 

heres a sample

 

Quote:; generated by /sbin/dhclient-scriptnameserver 192.168.0.1
 

of course, in my case, 192.168.0.1 is my nat/firewall box, but you can point that ip to your ISP's nameservers

 

changes to resolv.conf take place immediatly so no need to restart networking...

 

cheers

 

anyweb

Print this item

  Mandrake: Control Center
Posted by: jpalazzi - 2005-07-24, 11:24 PM - Forum: Xorg Problems - Replies (3)


Can someone tell me how to reinstall the control center on mandrake 10.1? somehow i unintalled it.

 

thanks

newbie

Print this item

  :)
Posted by: anyweb - 2005-07-24, 10:03 PM - Forum: Windows - No Replies


i like to GAME

 

:-)

 

BF2 rocks btw :P

 

cheers

 

anyweb

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-1-1122242635.png" data-fileid="350">[img]<fileStore.core_Attachment>/post-1-1122242635.png[/img]</a>



Attached Files
.png   Image1.png (Size: 2 MB / Downloads: 0)
Print this item

  Mandrake
Posted by: jpalazzi - 2005-07-23, 08:22 PM - Forum: Network Problems - Replies (4)


I am trying to setup a DNS server with mandrake. does anyone have any setup guides taht would help me.

 

thanks

Print this item

  gnome gui wont load programs
Posted by: jpalazzi - 2005-07-23, 08:20 PM - Forum: Xorg Problems - Replies (3)


For some reason when i double click on an icon it wont open. it seems to try and then just quits.

 

any ideas?

Print this item

  IBM Thinkpad 23, Fedora Core 4, and me
Posted by: somna - 2005-07-21, 02:24 PM - Forum: Fedora Core Release 4 - Replies (6)


Hi all! My names Anthony and I'm starting college (network security as a major) and need some hand-holding getting my Linux box set up. Let's just say I've got over a decade of experience with DOS and Windows, but this is going to be my first foray into another operating system... setup and usage and everything.

 

When I say first foray, I mean it... I'm still trying to decipher installation instructions, where I put them in, etc. At this point, I'm working on installing Dag Repo (YUM and all those good things) and TPCTL to the system and feel like the first time I got lost in the DOS command prompt when I was a kid. Yuck, I hate the hopeless feeling.

 

Anyway, any help whatsoever would be greatly appreciated.

Print this item

  fluxbox question here "style and icons"
Posted by: asbani - 2005-07-20, 11:43 AM - Forum: Fluxbox - Replies (1)


on the right click "Fluxbox menu" when it include icons just near any program, is that from the style itself? or from the menuconf? so here's my question

 

1. any good website which has alot of good styles "to download them and modify them later" cause i cant start doing my own theme now, I want some samples.

 

2. How to make icons just near any icon like Firefox or thunderbird icons on the right click menu

Print this item

  proxy/ip detection script
Posted by: seeno - 2005-07-20, 01:22 AM - Forum: LAMP - Replies (1)




Code:
<?php
$reqhost = $_SERVER['HTTP_HOST'];
$proxy = $_SERVER['HTTP_X_FORWARDED_FOR'];
$ipaddr = $_SERVER['REMOTE_ADDR'];
$revdns = $_SERVER['REMOTE_HOST'];
$final = "";
if ($revdns) {$final = $revdns;}
else {$final = $ipaddr;}
if ($proxy) {
       $final = $proxy;
       $prxyhost = gethostbyaddr($_SERVER['HTTP_X_FORWARDED_FOR']);
       if ($prxyhost) {$final = $prxyhost;}
       }
echo"your ip/revdns is $final";
?>




 

this little script will check if there's a proxy by checking if there is a X_FORWARDED_FOR in the header (which contains the client's ip) and will try to get the reverse dns of that ip, if there's no revdns, it prints the ip, if there's no X_FORWARDED_FOR, it will try to get the reverse dns of the remote ip (REMOTE_HOST), if there's no revdns, it will print the ip (REMOTE_ADDR).

Print this item

  non-recursive Tar
Posted by: section31 - 2005-07-18, 02:47 PM - Forum: Compressed Files - Replies (4)


Is there a simple way to do a non-recursive tar.

 

I've come up with a few sites that say there is a flag -n for it, but the distro (fedora 3) i'm using doesn't have that option. Any other alternatives?

Print this item