View unanswered posts    View active topics

All times are UTC - 6 hours





Post new topic Reply to topic  [ 52 posts ] 
Go to page Previous  1, 2, 3, 4  Next

Print view Previous topic   Next topic  
Author Message
Search for:
 Post subject:
PostPosted: Wed Dec 07, 2005 10:07 pm 
Offline
Joined: Thu Oct 13, 2005 6:06 pm
Posts: 48
ok, i was able to download the file and remove the script for reverting to 7174 however i am unclear as to how to do anything else

thnaks in advance


Top
 Profile  
 
 Post subject:
PostPosted: Thu Dec 08, 2005 2:41 pm 
Offline
Joined: Thu Mar 25, 2004 11:00 am
Posts: 9551
Location: Arlington, MA
tjc wrote:
- Download the bundle as above and move it to /usr/src

To move the file do:
Code:
mv NVIDIA-Linux-x86-1.0-8174-pkg1.run /usr/src

tjc wrote:
- Copy and modify the file /usr/local/bin/install-nvidia-7174-debian.sh to make one for 8174. In the copy replace all occurances of 7174 with 8174. This should work:
Code:
sed '/7174/s//8174/g'  </usr/local/bin/install-nvidia-7174-debian.sh \
>/usr/local/bin/install-nvidia-8174-debian.sh
chmod +x /usr/local/bin/install-nvidia-8174-debian.sh

As instructed. Note that I even broke the first command with a line continuation character to avoid word wrap problems. If you see a lot of stuff get written to the screen you screwed up. If the chmod command gives you an error messsage you screwed up. If the file is zero length you screwed up.
tjc wrote:
- Run the script that you just created for 8174

Type (or paste) the name of the script as given "/usr/local/bin/install-nvidia-8174-debian.sh" and hit enter. You should see a bunch of output, if not you screwed up above.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Dec 08, 2005 3:19 pm 
Offline
Joined: Tue Mar 22, 2005 9:18 pm
Posts: 1422
Location: Brisbane, Queensland, Australia
tjc, don't you hate it when you havqe to repeat yourself. :lol:


Top
 Profile  
 
 Post subject:
PostPosted: Thu Dec 08, 2005 5:12 pm 
Offline
Joined: Thu Oct 13, 2005 6:06 pm
Posts: 48
tjc wrote:
tjc wrote:
- Download the bundle as above and move it to /usr/src

To move the file do:
Code:
mv NVIDIA-Linux-x86-1.0-8174-pkg1.run /usr/src

tjc wrote:
- Copy and modify the file /usr/local/bin/install-nvidia-7174-debian.sh to make one for 8174. In the copy replace all occurances of 7174 with 8174. This should work:
Code:
sed '/7174/s//8174/g'  </usr/local/bin/install-nvidia-7174-debian.sh \
>/usr/local/bin/install-nvidia-8174-debian.sh
chmod +x /usr/local/bin/install-nvidia-8174-debian.sh

As instructed. Note that I even broke the first command with a line continuation character to avoid word wrap problems. If you see a lot of stuff get written to the screen you screwed up. If the chmod command gives you an error messsage you screwed up. If the file is zero length you screwed up.
tjc wrote:
- Run the script that you just created for 8174

Type (or paste) the name of the script as given "/usr/local/bin/install-nvidia-8174-debian.sh" and hit enter. You should see a bunch of output, if not you screwed up above.


i ran all of the lines up to the last one and receive no error msg or output whatsoever, however when i type in /usr/local/bin/install-nvidia-8174-debian.sh and press enter it tells me that the file or directory dousnt exist


Top
 Profile  
 
 Post subject:
PostPosted: Thu Dec 08, 2005 7:21 pm 
Offline
Joined: Thu Mar 25, 2004 11:00 am
Posts: 9551
Location: Arlington, MA
Girkers wrote:
tjc, don't you hate it when you havqe to repeat yourself. :lol:

Once upon a time I spent a lot of time teaching various CS topics (C, C++, OOD/OOP, Unix, ...) and training people who often had a marginal command of english on our software, so I've got (or at least had) a pretty heavy layer of callus on that bump, but it's still really frustrating when you're working with a particularly dense, lazy or ignorant student.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Dec 08, 2005 7:25 pm 
Offline
Joined: Thu Oct 13, 2005 6:06 pm
Posts: 48
with me its just ignorant, i have absolutely no command of linux, windows ok but not linux so i ask experts who are willing to give out their time to helpidiots like me

thanks to all


Top
 Profile  
 
 Post subject:
PostPosted: Thu Dec 08, 2005 7:27 pm 
Offline
Joined: Thu Mar 25, 2004 11:00 am
Posts: 9551
Location: Arlington, MA
king_kilr wrote:
i ran all of the lines up to the last one and receive no error msg or output whatsoever, however when i type in /usr/local/bin/install-nvidia-8174-debian.sh and press enter it tells me that the file or directory dousnt exist

What does this show:
Code:
ls -al /usr/local/bin/install-nvidia-8174-debian.sh
diff  /usr/local/bin/install-nvidia-7174-debian.sh /usr/local/bin/install-nvidia-8174-debian.sh

And if you're hand typing these rather than cutting and pasting you need to be very, very careful that you use the right characters. For example, all the single quotes in these examples are the one under the double quote, NOT the "back quote' up under the tilde (~). Also as I said above, you need to do all of this as root. Here is a "live" example cut and pasted from an ssh session on my KnoppMyth box:
Code:
root@black2:/etc/X11# ls -al /usr/local/bin/install-nvidia-8174-debian.sh
-rwxr-xr-x  1 root root 4058 Dec  7 22:29 /usr/local/bin/install-nvidia-8174-debian.sh
root@black2:/etc/X11# diff  /usr/local/bin/install-nvidia-7174-debian.sh /usr/local/bin/install-nvidia-8174-debian.sh
28c28
< VER=1.0-7174
---
> VER=1.0-8174


Top
 Profile  
 
 Post subject:
PostPosted: Thu Dec 08, 2005 11:04 pm 
Offline
Joined: Mon Nov 24, 2003 4:23 pm
Posts: 38
FYI,
8174 seemed to have fixed my 1080i wrap around bug. I am now in FC3 (started as KnoppMyth), so I may not be of much use to people. I had been stuck on 2.6.10 w/ 6629 drivers. Upgraded to 2.6.12 and 8174 and I still have 1080i! Running their nvidia-xconfig-1.0-8174 did break mplayer and xine working for some reason. Reverting to my old xorg.conf put the system up nicely.


Top
 Profile  
 
 Post subject:
PostPosted: Sun Dec 11, 2005 4:11 pm 
Offline
Joined: Mon Oct 06, 2003 10:38 am
Posts: 4978
Location: Nashville, TN
Ok I got a little time, so I went ahead and installed this driver and tested 1080i ouput using my vga->component converter, and I can confirm that at least in this configuration the split screen issue has been fixed, also the (for lack of a better word) flickering on the menu items is gone as well. I have to say if you are a 1080i person these drivers are definitely worth a try.

P.S. - Make sure you backup your XF86Config-4 file before installing the drivers, because it overwrites your existing one, or at least it did for me. Good thing I keep a backup in /myth/backup

_________________
Have a question search the forum and have a look at the KnoppMythWiki.

Xsecrets


Top
 Profile  
 
 Post subject:
PostPosted: Sun Dec 11, 2005 10:29 pm 
Offline
Joined: Thu Mar 25, 2004 11:00 am
Posts: 9551
Location: Arlington, MA
Remember, if you didn't disable the install-nvidia-7174-debian process, the older version will reappear next time you boot, and it will hose your XF86Config-4 in the process. If you don't have a backup of that file make at least two. ;-)


Top
 Profile  
 
 Post subject: Can't DL the driver
PostPosted: Mon Dec 26, 2005 1:10 am 
Offline
Joined: Sun Dec 25, 2005 11:49 pm
Posts: 7
here's a dumb question. I can't DL the driver. the wget command keeps giving the no host error. I was able to get the driver under a ubuntu boot but it is on a different drive. Why the hell is the network support not loading under knoppmyth?

Geeze I am in way over my head but it has been fun so far. any help would be greatly appreciated.

Jason

Update! I ran netcardconfig and was able to setup the NIC and download the drivers, however the driver would not load as the utility did not recognize my processor as being supported. I downloaded the R5A16 version and it installed just fine with the exception of recognizing my NIC. That post is here.


Last edited by jcsmith on Tue Dec 27, 2005 11:17 pm, edited 1 time in total.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Dec 26, 2005 4:58 am 
Offline
Joined: Sun Jun 12, 2005 2:39 pm
Posts: 464
Location: UK
Have you completely finished the install first? A terminal opens up on first boot asking for your root password, Once you put it in it starts setting up the network card.


Top
 Profile  
 
 Post subject: completed first install
PostPosted: Mon Dec 26, 2005 10:53 am 
Offline
Joined: Sun Dec 25, 2005 11:49 pm
Posts: 7
Yes I completed the install but the NIC is not setup. I checked the BIOS and it is enabled and it installs under ubuntu. And yes I did have the net/cable plugged in while doing the install.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Dec 26, 2005 1:09 pm 
Offline
Joined: Fri Sep 19, 2003 7:05 pm
Posts: 5088
Location: Fontana, Ca
Must you use such language? If you expect support, I suggest you clean it up. WIthout hardware details, no one can help you. If you need help with your NIC, then start a new thread.

_________________
cesman

When the source is open, the possibilities are endless!


Top
 Profile  
 
 Post subject: partial success
PostPosted: Wed Dec 28, 2005 6:00 pm 
Offline
Joined: Sun Dec 25, 2005 11:49 pm
Posts: 7
I downloaded the file and got it all loaded folowing the steps given but then x starts and the screen is jumbled like there is a refresh problem. Is there a way to fix this?

Thank you.


Top
 Profile  
 

Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 52 posts ] 
Go to page Previous  1, 2, 3, 4  Next



All times are UTC - 6 hours




Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group

Theme Created By ceyhansuyu