LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 07-22-2006, 02:59 PM   #1
aigarzzz
LQ Newbie
 
Registered: Jul 2006
Posts: 9

Rep: Reputation: 0
ASUS P5VDC-MX video fail


i installed fedora core 5 on ASUS P5VDC-MX motherboard and i cant login in graphical mode. Also in text mode i cant login as superuser with su -. after su - in login name i write 'root' (i dont know how to set up root user name) and then password - after that there is no superuser mode. any sugestions?
 
Old 07-22-2006, 05:21 PM   #2
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
1. You don't setup a root username, that is the root's username

2. You login with 'root' from the command line, not su -

3. You may have to login as a normal user and *then* su - to root, depends on how your system is setup.

After all that, you'll then need to tell us what the problem/error is on why you can't get the video working.

Cool
 
Old 07-22-2006, 11:04 PM   #3
Dummy-in-Linux
Member
 
Registered: Jun 2004
Location: Bangkok, Thailand
Distribution: Fedora 25 86_64
Posts: 357

Rep: Reputation: 32
Quick question how much memory you have installed on the mother board, and how much RAM (memory) did you reserve for VGA (video) in the BIOS setup?
 
Old 07-23-2006, 06:52 AM   #4
aigarzzz
LQ Newbie
 
Registered: Jul 2006
Posts: 9

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by MasterC
1. You don't setup a root username, that is the root's username

2. You login with 'root' from the command line, not su -

3. You may have to login as a normal user and *then* su - to root, depends on how your system is setup.

After all that, you'll then need to tell us what the problem/error is on why you can't get the video working.

Cool
in installation process there is a message - 'Probing the vide card: Unable to probe'. fedora 5 dont recognize onboard video and i can only work in text mode.
There is linux drivers in asus driver cd. How can i install them from cd?

Last edited by aigarzzz; 07-23-2006 at 06:54 AM.
 
Old 07-23-2006, 08:12 AM   #5
Dummy-in-Linux
Member
 
Registered: Jun 2004
Location: Bangkok, Thailand
Distribution: Fedora 25 86_64
Posts: 357

Rep: Reputation: 32
Download the driver from

http://www.viaarena.com/default.aspx...0&SubCatID=150

And follow the installation instruction's
 
Old 07-23-2006, 11:58 AM   #6
aigarzzz
LQ Newbie
 
Registered: Jul 2006
Posts: 9

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Dummy-in-Linux
Download the driver from

http://www.viaarena.com/default.aspx...0&SubCatID=150

And follow the installation instruction's
Thank's. there is said how can i install pre-compiled binary , but not mentioned adress where can i get Linux-FBDev-kernel-bin_2.6.00.02.tgz and how can i copy that to my hdd. I tried copy with
rcp http://www.viaarena.com/Driver/Linux..._2.6.00.02.tgz /usr

but this didnt work
 
Old 07-23-2006, 03:29 PM   #7
aigarzzz
LQ Newbie
 
Registered: Jul 2006
Posts: 9

Original Poster
Rep: Reputation: 0
ok now i understand how to copy from web file to hdd, but there is next problem:
i wrote
rcp /usr downlaod.viaarena.com:Linux-FBDev-kernel-src_2[1].6.00.02.tgz
and 'connect refused' error show up. What is the problem? What i doing wrong?
 
Old 07-24-2006, 08:11 AM   #8
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
Quote:
Originally Posted by aigarzzz
in installation process there is a message - 'Probing the vide card: Unable to probe'. fedora 5 dont recognize onboard video and i can only work in text mode.
There is linux drivers in asus driver cd. How can i install them from cd?
That's an odd problem. Normally, even if it fails to 'probe' your videocard, it will still use the 'vesa' driver to get you going with a nice GUI.

I think you'll find it quite a lot of work to get the Via FB drivers installed. Openchrome is probably a better option anyway, but instead of doing all that work, you could probably just make a small tweak to your xorg.conf

You'll need to fire up a command line text editor, you will probably have either pico or nano installed. Once you log in as root, you will be editing a file in your /etc/X11 directory. To do this, I'll use nano as my example:
nano -w /etc/X11/xorg.conf

If you have nano installed it will bring up that conf file. If you don't, it will probably say something like:
bash: nano: command not found

At this point, I'll assume you have it installed, if you do not, you'll need to consult a Fedora guide on getting a command line text editor installed (or using one that is installed).

So now that we have that file open, there is 1 line that needs to be changed. Using Nano you would type CTRL+w to find the Video Cards sections:
CTRL+w ( a little search screen opens up at the bottom of the file) then type:
Video
Typically this will bring you to the Video Cards section, which may just be called "Device" but may also be called "VideoDevice"

You should see a line there starting with:
Driver
It might look like this:
Section "Device"
Identifier "Generic Video Card"
Driver "vga"
BusID "PCI:1:0:0"
EndSection

The BusID may not be there, it's probably ok to leave it alone for now. you will need to get your cursor over the V on vga, and delete those letters and type in:
vesa
Keep the quotes around it.

Save the file:
CTRL+s
Answer Y to overwrite.

Now you *might* be able to get into the gui, try with a:
startx
And if you get errors, post them up.

Hopefully that will at least get you going on the right track.

Good luck!

Cool
 
Old 07-25-2006, 01:32 AM   #9
aigarzzz
LQ Newbie
 
Registered: Jul 2006
Posts: 9

Original Poster
Rep: Reputation: 0
file "/etc/X11/xorg.conf" is empty
 
Old 07-25-2006, 02:56 AM   #10
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
Then it sounds like something didn't get installed, like X or any graphical stuff that would have pulled in X. You *could* do something like:
yum install fluxbox

This should pull in the necessary packages, which should include xorg; and should then create a working xorg.conf for you.

Alternatively, a reinstall may prove easier; just be sure to select the graphical packages during the install.

Cool
 
Old 07-25-2006, 06:15 AM   #11
aigarzzz
LQ Newbie
 
Registered: Jul 2006
Posts: 9

Original Poster
Rep: Reputation: 0
i installed
yum install fluxbox
but xorg.conf is still empty
 
Old 07-26-2006, 03:11 AM   #12
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
You can certainly create one, though it's probably easier to just reinstall. The tool is called:
xorgconfig
OR
xorgcfg

Go through each step, answer the questions, when you are done, an xorg.conf will be created, then you *might* be able to get into the gui by typing:
startx

HTH

Cool
 
Old 07-28-2006, 11:55 AM   #13
Dummy-in-Linux
Member
 
Registered: Jun 2004
Location: Bangkok, Thailand
Distribution: Fedora 25 86_64
Posts: 357

Rep: Reputation: 32
Most Graphical installations fail because of not enough memory/RAM or to much for VGA etc...etc... I asked this before ....and can ask again "Quick question how much memory you have installed on the mother board, and how much RAM (memory) did you reserve for VGA (video) in the BIOS setup?"

Because Asus and VIA say the chipset supports VESA standard, so it is very likely it is a memory problem.

Last edited by Dummy-in-Linux; 07-28-2006 at 11:56 AM.
 
  


Reply



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
SUSE 10 Video and Audio Fail except with RealPlayer mesh2005 Linux - Software 6 05-07-2006 04:36 AM
Install fail on Asus A8V Deluxe Gilligan Linux - Hardware 2 12-20-2004 01:51 PM
MPLAYER fail to play video file. hanbin Linux - Software 1 11-20-2004 10:08 AM
Xine: All available video drivers fail?? garrettstj Linux - Software 5 08-22-2003 11:11 AM
ASUS P4C onboard LAN fail on SUSE 8.2 Pro niteshadw Linux - Hardware 0 08-10-2003 07:33 PM

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

All times are GMT -5. The time now is 05:51 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