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

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,210
» Latest member: greg22
» Forum threads: 4,029
» Forum posts: 16,404

Full Statistics

Online Users
There are currently 194 online users.
» 0 Member(s) | 191 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: 370
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 83,627
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 38,462
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 1,829
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 5,298
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 41,245
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 113,534
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 52,063
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 42,322
what does your nick mean ...
Forum: Hello
Last Post: volt
2020-08-06, 03:25 PM
» Replies: 28
» Views: 41,502

 
  WEBMIN
Posted by: neurosis - 2004-05-02, 10:42 AM - Forum: How Do I? - Replies (1)


Webmin is a web-based interface for system administration for Unix Linux. Using any browser that supports tables and forms (and Java for the File Manager module), you can setup user accounts, Apache, DNS, file sharing and so on. http://www.webmin.com/

 

it can help :) lol i know its helped me

Print this item

  Installing Slackware Linux
Posted by: neurosis - 2004-05-02, 10:20 AM - Forum: How Do I? - No Replies


[/url][url=http://www.bitbenderforums.com/vb22/showth...p?postid=311808]http://www.bitbenderforums.com/vb22/showth...p?postid=311808 :)

Print this item

  Help Installing Fedora Linux Core 1
Posted by: Guest - 2004-04-30, 10:03 PM - Forum: Fedora Core Release 1 - Replies (2)


I am trying to install Fedora core 1 and I am able to boot up with the cd and start the install process. I start the install process and after about 1 min the system freezes at the line "running /sbin/loader" and nothing happens. I waited for over 15 min and was forced to reboot. I re-tried to install and the same thing happend. When I run the media check on the cds, the same thing happens, it freezes at the line "running /sbin/loader" I ran the media check on the CDs from another PC and they all passed. I checked the MD5 checksum of the ISOs and they are fine. I reburned the CDs just to make sure but i still have the same problem.

 

The PC I want to install it on is:

 

AMD Athlon 700Mhz

512 MB RAM

80 GB Mator HD (FAT32 Partitions)

Geforce 3 64 MB

Soundblaster Live

Plextor CD-RW

ASUS 52X CD-ROM

 

This will be my first time installing\using Linux so any help on how i can get it installed would be appreciated. PS: I will be dual booting with WinXP

Print this item

  Firewall-Jay
Posted by: dubkat - 2004-04-30, 02:02 AM - Forum: Security and Firewalls - Replies (1)


IP Tables.... thats the 'thingy' that works like a firewall for your linux box. It has a ton of features, and if you are like me... its all over your head... you don't even know where to begin.

 

Enter Firewall-Jay

its a handy-dandy if-i-can-figure-it-out-so-can-you script.

 

it can lock down your box pretty tight, its worked well for me.

 

you can get more info/download from here: firewall-jay.sourceforge.net

 

enjoy ;)

Print this item

  xchat/win background :)
Posted by: anyweb - 2004-04-29, 09:43 PM - Forum: Linux - No Replies


heh

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-11-1083275033.png" data-fileid="116">[img]<fileStore.core_Attachment>/post-11-1083275033.png[/img]</a>



Attached Files
.png   Screenshot_15.png (Size: 353.69 KB / Downloads: 0)
Print this item

  setting up DNS
Posted by: hijinks - 2004-04-29, 07:11 PM - Forum: DNS and DHCP - Replies (6)


First.. these are the rpms you need installed

 



Code:
bind
bind-utils
caching-nameserver




 

as you can see we are going to install a caching nameserver. This is the most straight foward type of DNS install.. very very easy. The hard part is figuring out the config and what all those and letters and dots mean and what should go where. Also this will not cover reverse.. most people don't need it.. if people want a reverse section i will add it

 

Most people complain that they don't have a /etc/named.conf when they have bind installed. Well named.conf is included in the caching nameserver package.

 

ok so now on to the install. For this install we shall setup a domain called jyrules.com. If anyone wants to buy me this it'll be glad to take it <img src="https://www.linux-noob.com/forums/public/style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid=" :)" border="0" alt="smile.gif" />

 

ok so now we edit the /etc/named.conf file

 

you will see other entries for the localhost. We want to keep these. so at the bottom add this

 

 



Code:
zone "jyrules.com" {
       type master;
       file "jyrules.com";
};




 

So the zone is the name of the domain. and the file is the file in /var/named i call it the domain also you can call the file whatever you want.

 

Now lets create that zone file.. so edit a new file called /var/named/jyrules.com

 

and lets add all this into it

 



Code:
@               IN      SOA     ns1.jyrules.com. admin.jyrules.com. (
                               2004042801      ; Serial
                             2H       ; Refresh
                             2H       ; Retry
                             1H       ; Expire
                             1D)      ; Min TTL

                       NS      ns1.jyrules.com.
                       NS      ns2.jyrules.com.
                       NS      ns.domain.com.

jyrules.com.           MX      5 mail.jyrules.com.
jyrules.com.           MX      15 pvr.jyrules.com.

jyrules.com.           A       66.143.31.24

localhost               A       127.0.0.1

www                             CNAME   jyrules.com.
ftp                             CNAME   jyrules.com.
mail                            CNAME   jyrules.com.
ns1                             CNAME   jyrules.com.
ns2                             CNAME   jyrules.com.

pvr                   IN      A       24.194.246.98




 

ok so the first line is the SOA. I won't go into much here but just the things to change. This is THE MOST confusing part of DNS is seems. The ns1.jyrules.com means this is the main nameserver for this domain. The admin.jyrules.com reads like admin@jyrules.com this is the contact for the dns of the domain.

 

Everytime you change your dns records.. you should change the serial number for it. This helps other servers refresh your domain so they aren't caching bad info. i do it like <year><month><day><hour>

 

so the next lines specifiy what nameservers control this domain. I have two setup that are within my domain and one that is outside my network.

 

The next line tells email servers which IP to send email to for a domain. mail is my primary mailserver and pvr is my secondary. It knows this my the numbers (5 and 15) whichever is lower is the primary. You can have 10 of them listed.. it will just start at the lowest and move up. So if the first 2 are down it'll go to the 3rd.

 

my next two lines assign a name to an IP. You should only have one name assigned to an IP. THen you can use aliases after that. I always bind the domain to the main ip.

 

Then come the aliases which are identified by the cnames. So that says if www.jyrules.com is accessed check the ip for jyrules.com. You can have a ton of these if you want.

 

Then my last line is another A record that gets pointed to a IP outside. This is my mythtv box.

 

Now save the file, and run the following commands

 



Code:
chkconfig named on
service named start




This ensures bind is started on bootup and then starts bind.

 

You can check your /var/log/messages file and you should get something like this

 



Code:
Apr 29 15:09:20 pvr named[4316]: loading configuration from '/etc/named.conf'
Apr 29 15:09:20 pvr named[4316]: no IPv6 interfaces found
Apr 29 15:09:20 pvr named[4316]: listening on IPv4 interface lo, 127.0.0.1#53
Apr 29 15:09:20 pvr named[4316]: listening on IPv4 interface eth0, 192.168.1.100#53
Apr 29 15:09:20 pvr named[4316]: command channel listening on 127.0.0.1#953
Apr 29 15:09:20 pvr named[4316]: zone 0.0.127.in-addr.arpa/IN: loaded serial 1997022700
Apr 29 15:09:20 pvr named[4316]: jyrules.com:1: no TTL specified; using SOA MINTTL instead
Apr 29 15:09:20 pvr named[4316]: zone jyrules.com/IN: loaded serial 2004042801
Apr 29 15:09:20 pvr named[4316]: zone localhost/IN: loaded serial 42
Apr 29 15:09:20 pvr named[4316]: running
Apr 29 15:09:20 pvr named[4316]: zone jyrules.com/IN: sending notifies (serial 2004042801)




 

Yay.. it loaded the zone and its running. Now we can change the /etc/resolv.conf to point to 127.0.0.1

 



Code:
nameserver 127.0.0.1




 

If you have others listed add that one to the top. so it gets run first. Now we can debug our domain locally to see if everything is up and running

 



Code:
[root@pvr log]# nslookup jyrules.com
Note:  nslookup is deprecated and may be removed from future releases.
Consider using the `dig' or `host' programs instead.  Run nslookup with
the `-sil[ent]' option to prevent this message from appearing.
Server:         127.0.0.1
Address:        127.0.0.1#53

Name:   jyrules.com
Address: 66.143.31.24

[root@pvr log]# nslookup mail.jyrules.com
Note:  nslookup is deprecated and may be removed from future releases.
Consider using the `dig' or `host' programs instead.  Run nslookup with
the `-sil[ent]' option to prevent this message from appearing.
Server:         127.0.0.1
Address:        127.0.0.1#53

mail.jyrules.com        canonical name = jyrules.com.
Name:   jyrules.com
Address: 66.143.31.24




 

 

There ya go.. looks like bind is up and running. If you have a firewall in front.. make sure port 53 tcp/udp can get through.

 

another one from the great J to the Y

Print this item

  Installing core 2 via apt-get
Posted by: enigma - 2004-04-29, 03:58 PM - Forum: Updating Linux - Replies (4)

Hey guys, I am wondering how I would install fedora core 2 test 3 via apt if you have the answer i would greatly appreciate it thanks :)

Print this item

  Hey Hey All...
Posted by: ameilius - 2004-04-29, 09:46 AM - Forum: Hello - Replies (1)


whats up all - im new to the whole linux thing, hence why im here...

 

anyway - jus sayin widdddup

 

and if any of ya like music - check out www.ameilius.com - you can get some of my tracks and info there - im in Santa Monica now recording my official demo, Im from Jersey, and will be relocating there upon finishing the album which is set to being as soon as the contracts are all settled....

 

So uhhh - plan on seeing/hearing a lot of me - hehe - cuz im not stoppin till i get what i want, and all i want now is to get this damn pcmcia card working - lol ;)

Print this item

  Gnome2 at startup
Posted by: jimpy90 - 2004-04-28, 08:59 AM - Forum: Gnome - Replies (2)


Hi,

 

I have recently installed FreeBSD (i know it's unix but....) version 4.9 i386. Considering that this is the first time i have ever used Linux/Unix Based OS i am doing quite well with setting up the XServer and the Gnome Desktop.

 

My question is this...

Ho do i/What file do i change to make Gnome run at startup so that i login to the computer with the Gnome GUI????????????

 

Please reply this has been pissing me off for the past day, and please speak real simple. i am very computer literate but, Unix is a whole new world to me. :/

Print this item

  screenshot of the day :)
Posted by: anyweb - 2004-04-28, 08:33 AM - Forum: Linux - No Replies


fedora running crossoveroffice :)

 

cheers

 

anyweb

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/post-11-1083141237.png" data-fileid="115">[img]<fileStore.core_Attachment>/post-11-1083141237.png[/img]</a>



Attached Files
.png   screenshot.png (Size: 898.86 KB / Downloads: 0)
Print this item