Lm_sensors And The Vnf3-250 Or It8712f - how to detect system specs.

free web hosting
Free Web Hosting > Computers & Tech > How-To's and Tutorials > OS > Linux

Lm_sensors And The Vnf3-250 Or It8712f - how to detect system specs.

qwijibow
on my motherboard, gnu/linux (gentoo) was detecting my system specs VERY inacuratly.
the CPU tempreture was -110 degrees, and the detected voltages should have fried my motherboard.

this tutorial may only be of use for people with an identicle motherboard, there may be nobody here with this hardware, but last time i looked, google returned no hits on my queries, maybe google will find this page for other linuxers using similar hardware.

here is how i got it working accuratly.

i am using a Chaintech VNF3-250 motherboard (nforce 3 chipset, amd64 cpu)
however this may be usefull for all computers with the latest chip from ITE (the it8712F)
this chip is commonly used as a tepreture voltage and fan speed controller.

you need to load the following drivers..
CODE

modprobe it87
modprobe i2c_sensor
modprobe i2c_isa


different distro's use different methods to auto load modules dureing starup.
if you dont know how to do this for your distro, just add the above 3 lies to your /etc/init.d/ local script
somtimes called "local" sometimes called "rc.local" "find /etc/ | grep local" should find it.

now you need to install lm_sensors. again, each distro has a differen way to to this, some may have rpm's on your install cd's, gentoo requires you to run "emerge lm-sensors", and som may require you to compile it yourself.

here is the lm_sensors homepage http://www2.lm-sensors.nu/~lm78/

run the program "sensors-detect"
and when asked questions, simply answer with the default by hitting return.

read the output, it will give the details of any sensor hardware it finds.
remember, i am using it8712F, however this example may also work for any it87* chips.
for non it87* chips, this tutorial use useless.

now run the following code

CODE

sensors -s
sensors


is the output believeable ?
the default configureation for my motherboard was far off, detecting my cpu below freezing.

here is an example of good output
CODE

it87-isa-0290
Adapter: ISA adapter
VCore 1:   +1.12 V  (min =  +4.08 V, max =  +4.08 V)  
VCore 2:   +2.58 V  (min =  +4.08 V, max =  +4.08 V)  
+3.3V:     +3.36 V  (min =  +4.08 V, max =  +4.08 V)  
+5V:       +5.13 V  (min =  +6.85 V, max =  +6.85 V)  
+12V:     +12.29 V  (min = +16.32 V, max = +16.32 V)  
-12V:     -12.49 V  (min =  +3.93 V, max =  +3.93 V)  
-5V:       -6.57 V  (min =  +4.03 V, max =  +4.03 V)  
Stdby:     +2.53 V  (min =  +6.85 V, max =  +6.85 V)  
VBat:      +2.69 V
fan1:     3375 RPM  (min =    0 RPM, div = 8)
CPU Temp:    +36 C  (low  =    -1 C, high =    -1 C)   sensor = diode
System Temp:  +27 C  (low  =    -1 C, high =    -1 C)   sensor = thermistor
[code]

if the default onfigureation works for you then skip the next part.

if like me, the default onfigureation is way off, try this...
[code]
#make a backup
mv /etc/sensors.conf /etc/sensors.conf.backup
touch /etc/sensors.conf


open up /etc/sensors.conf, and add the following confureation file.

CODE

chip "it87-*"

   label in0 "VCore 1"
   label in1 "VCore 2"
   label in2 "+3.3V"
   label in3 "+5V"
   label in4 "+12V"
   label in5 "-12V"
   label in6 "-5V"
   label in7 "Stdby"
   label in8 "VBat"

  set in0_min 1.5 * 0.95
  set in0_max 1.5 * 1.05
  set in1_min 2.4
  set in1_max 2.6
  set in2_min 3.3 * 0.95
  set in2_max 3.3 * 1.05
  set in3_min 5.0 * 0.95
  set in3_max 5.0 * 1.05
  set in4_min 12 * 0.95
  set in4_max 12 * 1.05
  set in5_max -12 * 0.95
  set in5_min -12 * 1.05
  set in6_max -5 * 0.95
  set in6_min -5 * 1.05
  set in7_min 5 * 0.95
  set in7_max 5 * 1.05

   ignore  vid

   compute in3 ((6.8/10)+1)*@ ,  @/((6.8/10)+1)
   compute in4 ((30/10) +1)*@  , @/((30/10) +1)
   compute in5 (7.67 * @) - 27.36  ,  (@ + 27.36) / 7.67
   compute in6 (4.33 * @) - 13.64  ,  (@ + 13.64) / 4.33
   compute in7 ((6.8/10)+1)*@ ,  @/((6.8/10)+1)

   label temp1       "CPU Temp"
   set   temp1_over  60
   set   temp1_low   15
   label temp2       "System Temp"
   set   temp2_over  45
   set   temp2_low   15
  ignore temp3
#    label temp3       "Temp3"
#    set   temp3_over  45
#    set   temp3_low   15



# Fans
   set fan1_min 3000
# set fan2_min 3000
  ignore fan2
  ignore fan3
# set fan3_min 3000



now re-run
CODE

sensors -s
sensors


hopefully, this should give a more accurate reading for this motherboard / chip.

the only thing left to do, is install a nice graphical display that can wars you, or shutdown the computer if it gets too hot, or the cpu fan fails.

i would recomnd ksensors from http://ksensors.sourceforge.net/

 

 

 


Reply

yquiensabe
Hey kudos, that was just what I needed to get the sensors running right. Have you figured out how to enable the joystick port on the VNF3-250 riser card? My usb joystick works fine so I'm sure my kernel supports joysticks (FC3).

Reply

qwijibow
QUOTE(yquiensabe @ Mar 4 2005, 06:14 AM)
Hey kudos, that was just what I needed to get the sensors running right.  Have you figured out how to enable the joystick port on the VNF3-250 riser card?  My usb joystick works fine so I'm sure my kernel supports joysticks (FC3).
*



I used both "coldplug" to autodetect my hardware, one of the drivers coldplug loads is "gameport"
i assume this is the joystick pot on the reiser card, but i dont have a joystick to test my theory.

Glad this post tutorial was usefull to you. How did you find it ? has google picked it up already ?

Reply

yquiensabe
Yeah, I found your article doing a google search for "VNF3-250 hardware sensor". I finally got the gameport to work after reading the Linux Joystick driver readme. I had to do:
/sbin/modprobe joydev
/sbin/modprobe ns558
/sbin/modprobe analog
Teaches me right for not looking at the Readme file. Another thing about the VNF3-250 is that it hangs in FC3 with the Cool'nQuiet enabled in the BIOS. Not a big deal as it doesn't really quiet down my system anyways.

Reply

qwijibow
Cool'n'quiet in the bios doesnt realy do anything as far as linux is concerned.

the Cool'n'quiet technology allows the operating system to lower the voltage, cpu-frequency, and fan speeds when the cpu is idle.

i have a 2.4Ghz amd64 cpu, but when idle, linux slows the cpu down to 1Ghz and lowers the voltage. this tends to lower my cpu tempreture by about 18 degrees C.

to find out if your kernel has been compiled to support Cool'n'quiet have a look in the kernel config file for the entry

CODE

CONFIG_X86_POWERNOW_K8=m # (or =y)


if like me its set as m, the driver will need to be modprobed first.
if it is neither m or y, then you will need a kernel re-compile.

and you dont need cool'n'quiet emableed in the bios for it to work... thats just for MS windows.

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Recent Queries:-
  1. it8712f lm_sensors - 46.43 hr back. (1)
  2. how to detect specs - 174.51 hr back. (1)
  3. it8712f chip - 199.10 hr back. (1)
  4. ite it8712f motherboard drivers - 217.92 hr back. (1)
  5. ksensors temp1 temp2 temp3 - 304.56 hr back. (1)
  6. it8712f - 59.46 hr back. (2)
Similar Topics

Keywords : lm, sensors, vnf3, 250, it8712f, detect, system, specs

  1. Before Unplugging A Usb Disk From An Opensuze System
    What should I do ? (9)
  2. How To: Make A Simple Php Forum System
    (4)
    Hello, One of my first ever projects I embarked on when I began to understand PHP well was a forum
    system. I've decided to begin writing a tutorial to help people start one of their own. The code
    for this project is based on that of OakumBoard/cBoard, my own forum software which can be seen
    running at www.sonicxtremegm.co.cc Anyways, time to start off, you must run this SQL query on an
    SQL database with a name of your choice: CODE s CREATE TABLE `forums` (
      `id` int(3) NOT NULL auto_increment,   `name` varchar(80) NO....
  3. Lost Blogging System?
    (1)
    This is really odd. Suddenly after Gamma server's move; I lose my Movable Type control panel
    because mt.cgi states that it can't find mt-config.cgi at all. However, both of them are
    clearly there as shown below: Help? xboxrulz....
  4. Simple Template System
    (0)
    Hello, This is my first tutorial at astahost. It covers how to make a simple template system, which
    I use in some of my software. To start, we need a page that will be the template itself. For this
    tutorial, below is a very simple one: CODE <HTML> <HEAD> <TITLE> PHP
    Template System </TITLE> </HEAD> <BODY> <H1> <?php echo
    $content; ?> </H1> </BODY> </HTML> Save this as template.html
    Next, the php, also very simple: CODE <?php $content = "Test"; includ....
  5. Site Login
    How to make a login system (2)
    QUOTE Heres an easy way to make a registration/login system for your site. First lets think of
    all the stuff we need to make a login system. • SQL table with users • Registration
    page • Login page • Page to see if the user is logged in It's always easy to first
    think of what you truly need before programming. Planning your code saves hours of work. Creating
    an SQL table So, lets get started. This tutorial is quite basic, so I will show you how to create a
    new SQL table. You can make your table via systems like PHPmyAdmin or Navicat, bu....
  6. Which Os Would Be First To Respond With ....
    an OS to use a new computer system made by a third manufacturing compa (4)
    and which do you think would be best for this? reason I ask is that I have plans to build a device
    that will need a Parallel port that would have thousands of hard wired pins if not millions and
    nothing exists today that could handle that. so the idea is if a brand new style of computing were
    devised requiring all levels of programming to be done from scratch who do you think would be the
    best candidate to make a user friendly OS for it? remember BRAD NEW like using trianary or
    quadrinary as opposed to binary with multi sensitive transistors that would have 4 or more ....
  7. Whats Wrong In Altec Lansing Sound System ?
    Problem in Altec Lansing 5.1 (5)
    Guyz I need your Help. I bought Altec Lansing 5.1 with Creative sound blaster 5.1 sound card. it has
    two playing systems in it one is stereo system and the other is suuround system.In Stereo system
    only the front right and front left speaker works with woofer and the other three speaker dont
    produce any sound.When I switch to surround system all the five speaker works but woofer doesn't
    produce any sound means no base. so I not getting the proper sound in anyway, I want all the five
    speakers to work with woofer .... do anybody knows about this issue ???please help m....
  8. How To Make A Private Message System.
    (9)
    Hey! Today, I am going to teach you how to make a Private Message (PM) script in PHP. Before
    we start, I want to tell you what you should know, and what files we will create. Then we will
    continue with the codes, and descriptions. I would like if you learned something from this tutorial.
    If you find any errors (Even if I spell something wrong), I would like you to post it in this
    thread. What you should know: You should know HTML. Just a bit (forms, and maybe a little design
    if you would like that). You should know much about PHP and Mysql. You should know how ....
  9. Clean Memory, A Useful System Tool
    (4)
    QUOTE Random access memory, or RAM, is a type of memory that is randomly accessible as opposed
    to sequential memory, which can only be accessed sequentially. Tapes and videocassettes use
    sequential memory in the form of electromagnetic tape. Random access memory is used in computers and
    is temporary in nature. CleanMemory program was made for one purpose and ie to achieve maximum
    performance. ....
  10. How To Make A PM (Personal Message) System?
    (Should I Store The Data In A Database?) (4)
    Hey! I just wanted to know, if I want to make a PM system, should I store the PMs in a database
    or how should I do it? And if I should store them in a database, how do I do that. Because I have
    acctually no idea, if I should create 50 tables to store 50 messages /tongue.gif"
    style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" /> (And a little OT question
    ). How can i change the timestamp into real date?....
  11. Lost Connection To Mysql ,..., System Error: 111 In
    (3)
    While I was trying to connect to my database or even create one using PhP mySQL I was given the
    followoing error: Lost connection to MySQL server at 'reading initial communication
    packet', system error: 111 in Has somebody encontered a similar report? I have my database
    created using the cpanel together with a user name and password. I wonder if it is a server issue?
    What can you do if you have not access to the configuration files?....
  12. Setting Up Cvs On A Sun Unix System
    Details needed (4)
    Can anyone point me to some documentation that details me on setup of a CVS server? I need to setup
    a CVS repository on a Sun Unix system with following specs: Machine hardware: sun4v OS
    version: 5.10 Processor type: sparc Hardware: SUNW,Sun-Fire-T200 Any
    details on which specific version of CVS I should get, the setups (env variables) I need to setup,
    any ports I need to setup, would be much appreciated. (Or even links to documentations). I did try
    to use Google, but seems like my Google skills have lost its touch. /sad.gif" style="ve....
  13. Try To Comment My Computer Specs.
    (6)
    Operating System:-- Windows XP Professional Service Pack 2 (build 2600) Processor:-- 2.00
    gigahertz Intel Celeron 8 kilobyte primary memory cache 128 kilobyte secondary memory cache Main
    Circuit Board:-- Board: ASUSTeK Computer INC. P4VP-MX Rev 1.xx Bus Clock: 100 megahertz BIOS:
    American Megatrends Inc. 1010.003 10/21/2004 Drives:-- 120.01 Gigabytes Usable Hard Drive Capacity
    69.71 Gigabytes Hard Drive Free Space ATAPI CDROM. CyberDrv CW018D CD-R/RW PF5020I JBF015L SCSI
    CdRom Device 3.5" format removeable media ST340014A (40.02 GB) -- drive 1, s/n 3JX8....
  14. Credit System V2.0 Online
    Free Web Hosting Credit System v2 now online! (17)
    Dear Members, I am pleased to announce that I have finished coding Credit System V2.0 and its now
    online for members to use. Instead of the old URL used for managing your free web hosting account
    (http://www.astahost.com/process), You shall now be using :- http://www.astahost.com/manage
    (Credit System v2.0 Url) The new version is :- More secure. More reliable. Easily Upgradable
    and employs Module system. Has a Much better look. Central Login. Ajax Powered. Has a Log
    System. Good number of Bugs fixes Please use it and kindly report any further sugge....
  15. Login System Using A Mysql Db
    How do i do this? (5)
    Hi guys, ive got a registration system that looks something like the one below: Firstname:
    Lastname: Then i have inset.php, which looks like the following: $con =
    mysql_connect("localhost","autobot","abc123"); if (!$con) { die('Could not connect:
    ' . mysql_error()); }mysql_select_db("my_db", $con);$sql="INSERT INTO person
    (username, password) VALUES ('$_POST ','$_POST ')";if
    (!mysql_query($sql,$con)) { die('Error: ' . mysql_error()); } echo "1 record
    added";mysql_close....
  16. Cracking Wireless Access Point Password?
    Is it possible to crack the system setup password on wireless routers? (22)
    Is it possible to crack the system setup password for a wireless access point - wirelessly? I
    understand how to use tools like aircrack and airsnort to crack the network password used by
    clients, but this will only grant you the client password to access the network. If there is a way
    to gain access to the system setup password of a wireless router, please explain the process to me,
    so that I can take all possible precautions to try to avoid this happening to my new wireless
    network... Thanks.....
  17. System Stops Responding
    Computer suddenly freezes while on the Internet (10)
    I am using a Pentium 4 computer (256 MB RAM) with windows 2000 service pack 4 installed in it. While
    using Internet through a cable braodband modem, the computer sometimes freezes completely. It no
    more responds to any keystroke or any left/ right mouse click. I then have to restart the computer
    to be able to use it again. I have noticed it happened once or twice when I entered some text in the
    Google search box and pressed the enter key. Has anybody experienced this problem and know how to
    resolve this? Has it got anything to do with the virtual memory of the computer? ....
  18. Which Operating System Is Better?
    Its a poll (41)
    Well Vote =]....
  19. How To Change The Color Of The Leds On A Dell Xps System
    (9)
    I happen to find this by accident when trying to fix my computer, but anyways In this tutorial I
    will show you how to change the LED colors on your Dell XPS system may it be either laptop or
    Desktop, you will be able to get rid of that red color and change it to 16 other colors. This is a
    simple process and you don't hae to worry about messing anything up, but what is also neat is
    that (at least on the laptop) you can have 4 different colors going on at once. Step 1: If you
    have your computer running then go ahead and restart it. Step 2: during the load up sc....
  20. Preferred Forum System
    So many choices...it's overwhelming (22)
    I am trying to decide which forum software I should install for my site. I need something free
    (obviously) and I need a good choice. I think phpBB works great but I am also interested in trying
    IceBB. Simple Machines Forum is time-consuming to configure and I don't like Invision Power
    Board (and that isn't free). I have tried testing out the forums at OpenSourceCMS but there
    were way too many choices and the forums were just completely overwhelming to try them all out.
    Getting into Portals, Blogs and Image Galleries and you'll wonder if you will be able to....
  21. Solar System To Have 12 Planets
    (49)
    QUOTE Feeling crowded? Scientists want to add 3 planets to our solar system Last
    Updated Wed, 16 Aug 2006 07:42:14 EDT The Associated Press The universe really is expanding —
    astronomers are proposing to rewrite the textbooks to say our solar system has 12 planets, rather
    than the nine memorized by generations of schoolchildren. This photo illustration shows the
    largest known Kuiper Belt objects. Xena, at about 2,400 kilometres across, is slightly larger than
    Pluto, which is about 2,290 kilometres across. (AP Photo/NASA) Much-maligned Plu....
  22. What Is Unicode System
    (1)
    Unicode systems - What it is? Unicode provides a unique number for each characters independant of
    the language, platform and program .Computers store everything, the letters and other characters as
    numbers, so some encoding system need to be adapted to convert different characters to numbers. Now
    in absence of any general encoding system, there exist a lots of different and conflicting encoding
    system. Like one may assign the same number to different keyboard characters or the same keyboard
    character may be assigned different numbers in different coding systems. Why....
  23. CuteNews: PHP-based Blog System - No MySQL
    (10)
    I don't know if you guys have heard about CuteNews, but I think it's an awesome blogging
    system. If you don't know where to get it or how to set it up, here is a quick run-down.
    Download the zip file (virus free) from http://www.mysharebox.com/dl.php?key=8276639 . 1) Unzip
    the file. 2) Make a folder titled "cutenews". 3) Upload the contents of the cutenews folder into the
    one you've just created. 4) CHMOD the file index.php to 777. 5) CHMOD the folder "data" to 777.
    6) Then CHMOD all the files and folders inside of "data" to 777. 7) Go to http://YO....
  24. Winxp Cannot Detect Usb Harddisk
    if it is connected to USB Hub (8)
    I have a 2.5' Laptop harddisk. so, I bought a USB case for it to make it portable. It works fine
    if I connected this portable harddisk to my laptop's USB port. However, it doesn't work if
    I connected it to a USB Hub. Windows XP cannot detect it. My USB Hub is connected to power supply.
    any idea to solve this problem?? ....
  25. Www.modthesims2.com - Sims 2 Mods Site
    I need to get it out of my system! (8)
    Okay, MTS2 is one of the BEST sites to get awesome downloads for The Sims 2. I love that site so
    much! And they have this cool forum where you can request people to create downloads for you if
    you aren't very good at creating downloads! And some people post pictures of themselves,
    that way people can sim them! Some of the people that post their pictures are weird looking.
    Anyway, I just want to know who has been to MTS2 and loves it!? This sounds like spam, but I
    just want to know who loves that site?! /biggrin.gif' border='0' style='ver....
  26. Ncaa Football Bcs System Not Broken!
    Human polls a scourge (2)
    After a couple of season of "split championships" (different No. 1 ranked teams in the AP poll and
    USA Today Coaches' poll) people have been complaining that the Bowl Championship Series
    doesn't work and this led to the AP poll pulling out of it. These people are plain wrong.
    There are some problems with the BCS but its not broken. The reason that many people say this is
    because there are more than three undefeated teams and one gets left out of the championship.
    Unfortunately the goal of BCS was never to make sure all undefeated teams have a chance to play f....
  27. Best Forum System
    (25)
    Can you guys tell me what you think are the best forum system? I like phpbb personal, but invision
    is good enought to. /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /> ....
  28. Whats A High Quality Gaming PC Specs
    Looking at getting new Gaming PC (15)
    Hey guys new to astahost.com had a break in not too long ago and lloking at getting new pc currently
    running old AMD-K6 350MHZ 128Mg ram lol. previous gaming computer got stolen. Looking at buying a
    new gaming system but not fluent with system specs and hardware items price not an issue as
    insurance is covering can anyone help me out. Sinister Shadow....
  29. System Sounds Not Working
    ... :( (9)
    I don't know when this started to happen, probably not caused by me though, but my System Sounds
    don't work anymore. You know how when you change your volume in Windows, it makes a beeping
    sound to tell you how loud or quiet you've turned your volume into? Well, it doesn't make
    that sound anymore. But, I can still listen to music and sounds of my own or in games, etc., just
    not "Windows generated". I think the problem is some wrong setting in the Sound and Audio Devices
    Properties of the Control Panel. I am using the Windows Default sound scheme, selecte....
  30. How Do I Make A RPG Battle System?
    final fantasy style (13)
    I use flash mx, but I was wondering how to/what language I would need to make a final fantasy-like
    turn based battle system for a rpg I'm making. "So, any help you could give us would be...
    Helpful?" MP&THG....

    1. Looking for lm, sensors, vnf3, 250, it8712f, detect, system, specs

Searching Video's for lm, sensors, vnf3, 250, it8712f, detect, system, specs
Similar
Before
Unplugging A
Usb Disk
From An
Opensuze
System -
What should
I do ?
How To: Make
A Simple Php
Forum System
Lost
Blogging
System?
Simple
Template
System
Site Login -
How to make
a login
system
Which Os
Would Be
First To
Respond With
.... - an OS
to use a new
computer
system made
by a third
manufacturin
g compa
Whats Wrong
In Altec
Lansing
Sound System
? - Problem
in Altec
Lansing 5.1
How To Make
A Private
Message
System.
Clean
Memory, A
Useful
System Tool
How To Make
A PM
(Personal
Message)
System? -
(Should I
Store The
Data In A
Database?)
Lost
Connection
To Mysql
,..., System
Error: 111
In
Setting Up
Cvs On A Sun
Unix System
- Details
needed
Try To
Comment My
Computer
Specs.
Credit
System V2.0
Online -
Free Web
Hosting
Credit
System v2
now
online!
Login System
Using A
Mysql Db -
How do i do
this?
Cracking
Wireless
Access Point
Password? -
Is it
possible to
crack the
system setup
password on
wireless
routers?
System Stops
Responding -
Computer
suddenly
freezes
while on the
Internet
Which
Operating
System Is
Better? -
Its a poll
How To
Change The
Color Of The
Leds On A
Dell Xps
System
Preferred
Forum System
- So many
choices...it
's
overwhelming
Solar System
To Have 12
Planets
What Is
Unicode
System
CuteNews:
PHP-based
Blog System
- No MySQL
Winxp Cannot
Detect Usb
Harddisk -
if it is
connected to
USB Hub
Www.modthesi
ms2.com -
Sims 2 Mods
Site - I
need to get
it out of my
system!
Ncaa
Football Bcs
System Not
Broken!
- Human
polls a
scourge
Best Forum
System
Whats A High
Quality
Gaming PC
Specs -
Looking at
getting new
Gaming PC
System
Sounds Not
Working -
... :(
How Do I
Make A RPG
Battle
System? -
final
fantasy
style
advertisement




Lm_sensors And The Vnf3-250 Or It8712f - how to detect system specs.



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE