You are not logged in.

Announcement

Due to heavy spamming of forums registration is going in stages. If you wish to register as a new user with ArchBang Forums, first register and then send an e-mail to: archbangforums at gmail dot com. It should contain the problem you want to discuss or some other AB related content. You will be promoted from registering member with no posting rights to new member with posting rights after that. If your mail is ignored you haven't fulfilled the requirements.

#1 2012-03-21 14:00:11

pelasgos
Member
Registered: 2012-03-10
Posts: 42

[SOLVED]Nvidia nouveau drivers & printer

Someone tell me please the steps to install nouveau driver and don't send me the archwiki.... because i installed it badly and i had to re-install the archbang...
Also, i have a Canon Pixma MP-140 and i can't get it work. Where can i get the drivers? Usually in Ubuntu i used the MP150 driver and it worked.

Last edited by pelasgos (2012-04-04 07:12:59)

Offline

#2 2012-03-21 16:01:08

Kruppt
Moderator
From: Blue Ridge Mountains, NC
Registered: 2010-12-20
Posts: 299

Re: [SOLVED]Nvidia nouveau drivers & printer

NOTE!!! This nouveau post is for those who have older nvidia chipsets that are no longer supported via nvidia proprietary drivers!! (cards/chipsets that would normally be using the nvidia-96xx and nvidia-173xx drivers) this setup has not been tested on newer chipsets!!

If you have attempted installation of nvidia drivers and related remove them first before proceeding.
Just an Example:

pacman -R nvidia nvidia-utils libcl libvdpau

From root shell/tty to install nouveau:

pacman -S xf86-video-nouveau nouveau-dri mesa libgl

When pacman is finished, again from same root shell:

nano /etc/mkinitcpio.conf

Look for the line in this config file that starts with --> MODULES= <-- Edit it to look as below code box example:

MODULES="nouveau"

When completed save changes to file. (Ctrl X, then Y, Enter)
When back at the root shell prompt do as follows in root shell:

touch /etc/X11/xorg.conf.d/20-nouveau.conf

Now open this new file with nano text editor in same root shell:

nano /etc/X11/xorg.conf.d/20-nouveau.conf

Type in text exactly as shown in below code box example. Then save changes to file. (Ctrl X, then Y, Enter)

    Section "Device"
        Identifier "Nvidia card"
        Driver "nouveau"
    EndSection

Now Run these two commands from same root shell in shown order:

echo >> /etc/modprobe.d/modprobe.conf
echo 'blacklist nvidia' >> /etc/modprobe.d/modprobe.conf

Now Remove all "vga=" "xorg=vesa" "nomodeset" options from your kernel commandline in /boot/grub/menu.lst. Open menu.lst file in Nano text editor:

nano /boot/grub/menu.lst

Save changes to file. (Ctrl X, then Y, Enter)
When back at root shell prompt run mkinitcpio as in below code box example:

mkinitcpio -p linux

When initd images are finished building ...and you are now back at the prompt, reboot to see if all is kosher.

shutdown -r now

Last edited by Kruppt (2012-03-28 20:15:46)

Offline

#3 2012-03-21 17:48:44

pelasgos
Member
Registered: 2012-03-10
Posts: 42

Re: [SOLVED]Nvidia nouveau drivers & printer

i don't understand the step with grub. Remove "vga=" what do you mean ???
What do i remove from here? heres menu.lst:

# Config file for GRUB - The GNU GRand Unified Bootloader
# /boot/grub/menu.lst

# DEVICE NAME CONVERSIONS 
#
#  Linux           Grub
# -------------------------
#  /dev/fd0        (fd0)
#  /dev/sda        (hd0)
#  /dev/sdb2       (hd1,1)
#  /dev/sda3       (hd0,2)
#

#  FRAMEBUFFER RESOLUTION SETTINGS
#     +-------------------------------------------------+
#          | 640x480    800x600    1024x768   1280x1024
#      ----+--------------------------------------------
#      256 | 0x301=769  0x303=771  0x305=773   0x307=775
#      32K | 0x310=784  0x313=787  0x316=790   0x319=793
#      64K | 0x311=785  0x314=788  0x317=791   0x31A=794
#      16M | 0x312=786  0x315=789  0x318=792   0x31B=795
#     +-------------------------------------------------+
#  for more details and different resolutions see
#  [url]https://wiki.archlinux.org/index.php/GRUB#Framebuffer_resolution[/url]

# general configuration:
timeout   0
default   0
color light-blue/black light-cyan/blue

# boot sections follow
# each is implicitly numbered from 0 in the order of appearance below
#
# TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
#
#-*

# (0) ArchBang Linux
title  ArchBang Linux
root   (hd0,0)
kernel /vmlinuz-linux root=/dev/disk/by-uuid/bd60d6fe-1875-4597-9dfe-44fac269491d loglevel=3 ro quiet resume=/dev/disk/by-uuid/8e7c51cd-fc62-4f1b-bd34-618f2b60977a   nomodeset
initrd /initramfs-linux.img

# (1) ArchBang Linux fallback (useful if you change your hard disk/mainboard)
title  ArchBang Linux Fallback
root   (hd0,0)
kernel /vmlinuz-linux root=/dev/disk/by-uuid/bd60d6fe-1875-4597-9dfe-44fac269491d loglevel=3 ro quiet
initrd /initramfs-linux-fallback.img

# (2) Optional entry for the system on sda1
#title sda1
#rootnoverify (hd0,0)
#makeactive
#chainloader +1

Offline

#4 2012-03-21 19:56:22

Kruppt
Moderator
From: Blue Ridge Mountains, NC
Registered: 2010-12-20
Posts: 299

Re: [SOLVED]Nvidia nouveau drivers & printer

pelasgos wrote:

i don't understand the step with grub. Remove "vga=" what do you mean ???
What do i remove from here? heres menu.lst:

Earlier versions had "xorg=vesa nomodeset" you would remove this. In your case all you have to do is remove "nomodeset"

Offline

#5 2012-03-22 10:14:36

Kruppt
Moderator
From: Blue Ridge Mountains, NC
Registered: 2010-12-20
Posts: 299

Re: [SOLVED]Nvidia nouveau drivers & printer

Not sure but I think these are the drivers you need for your printer.
scangearmp-mp140
cnijfilter-common-i386 OR cnijfilter-common-x86_64 depending on wither your running i686 x86_64 OS
All are packages in AUR.

Offline

#6 2012-03-27 19:56:22

khaos64
Member
Registered: 2012-03-27
Posts: 11

Re: [SOLVED]Nvidia nouveau drivers & printer

Kruppt wrote:

If you have installed nvidia drivers and related remove them first before proceeding.
Just an Example:

pacman -R nvidia nvidia-utils libcl libvdpau

From root shell/tty to install nouveau:

pacman -S xf86-video-nouveau nouveau-dri mesa libgl

When pacman is finished, again from same root shell:

nano /etc/mkinitcpio.conf

Look for the line in this config file that starts with --> MODULES= <-- Edit it to look as below code box example:

MODULES="nouveau"

When completed save changes to file. (Ctrl X, then Y, Enter)
When back at the root shell prompt do as follows in root shell:

touch /etc/X11/xorg.conf.d/20-nouveau.conf

Now open this new file with nano text editor in same root shell:

nano /etc/X11/xorg.conf.d/20-nouveau.conf

Type in text exactly as shown in below code box example. Then save changes to file. (Ctrl X, then Y, Enter)

    Section "Device"
        Identifier "Nvidia card"
        Driver "nouveau"
    EndSection

Now Run these two commands from same root shell in shown order:

echo >> /etc/modprobe.d/modprobe.conf
echo 'blacklist nvidia' >> /etc/modprobe.d/modprobe.conf

Now Remove all "vga=" "xorg=vesa" "nomodeset" options from your kernel commandline in /boot/grub/menu.lst. Open menu.lst file in Nano text editor:

nano /boot/grub/menu.lst

Save changes to file. (Ctrl X, then Y, Enter)
When back at root shell prompt run mkinitcpio as in below code box example:

mkinitcpio -p linux

When initd images are finished building ...and you are now back at the prompt, reboot to see if all is kosher.

shutdown -r now

I started using archbang because I just couldn't get X to configure right with just arch and when I installed archbang X seemed to be configured so that I didn't need to do anything, but was still using the vesa drivers. But I want to use the nouveau or even the proprietary drivers. I followed your instructions Kruppt but I ended up with the samething as when using just arch. 

Everything seemed to go smoothly but when I rebooted the screen is completely off centered, x-axis is good but y-axis is about 1.5-2 inches too high on 15.6 in screen. I tried using viewport and virtual when using arch under a display subsection but I didn't see any difference, and eventually gave up.

And It also seems that the computer still runs on the vesa driver, because It defaults to the integrated card instead of my nvidia card.  On arch, I had ran X -configure, and tried to alter xorg.conf so it only had 1 screen section and 1 device section with the device defined  to the nvidia card with the BusID option, but startx would only error to: Fatal error no screens found.

After following these instructions, I wasn't sure where to go as there is no xorg.conf file, it uses the file in xorg.conf.d. And I am pretty new to Linux. I tired adding the BusID option in the 20-nouveau.conf file, and removing the vesa drivers, but I just got the same error - Fatal no screens found.

I also thought I would be smart and go into the BIOS and disable the onboard video card so it wouldn't be seen by X, but there wasn't an option to do so, but I didnt give up, I then flashed my bios w/ an update - and I saw an option to alter the graphics settings --but there was only options for Switchable or use the integrated card -- no only dedicated. 


So I am kinda stuck, I have since reinstalled and currently updating the whole system. I dont' want to go through the steps again and mess up X like it was before.  But any advice will be great, if I need to do these steps then post all the log files and settings of the messed up X I will, but just wanted to post first. Thanks in advance.

[user@archbang ~]$ lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
01:00.0 VGA compatible controller: NVIDIA Corporation GF108 [GeForce GT 540M] (rev a1)

Last edited by khaos64 (2012-03-28 06:58:20)

Offline

#7 2012-03-28 06:17:47

pelasgos
Member
Registered: 2012-03-10
Posts: 42

Re: [SOLVED]Nvidia nouveau drivers & printer

Y0 ur guide didnt work.It boots with 1680x1050 and when it logins a black screen with colours shows up and nothing. please help.

Offline

#8 2012-03-28 06:39:12

Mr Green
Iso Developer
Registered: 2010-11-07
Posts: 3,746

Re: [SOLVED]Nvidia nouveau drivers & printer

If you read nouveau wiki guide it does state it is experimental, most of the time nvidia works out of the box.

@pelasgos some information would be useful post your xorg log file.

Also make sure when posting threads about video cards/drivers you post output of

lspci | grep VGA

Offline

#9 2012-03-28 10:04:42

Kruppt
Moderator
From: Blue Ridge Mountains, NC
Registered: 2010-12-20
Posts: 299

Re: [SOLVED]Nvidia nouveau drivers & printer

khaos64 wrote:

I started using archbang because I just couldn't get X to configure right with just arch and when I installed archbang X seemed to be configured so that I didn't need to do anything, but was still using the vesa drivers. But I want to use the nouveau or even the proprietary drivers. I followed your instructions Kruppt but I ended up with the samething as when using just arch. 

Everything seemed to go smoothly but when I rebooted the screen is completely off centered, x-axis is good but y-axis is about 1.5-2 inches too high on 15.6 in screen. I tried using viewport and virtual when using arch under a display subsection but I didn't see any difference, and eventually gave up.

And It also seems that the computer still runs on the vesa driver, because It defaults to the integrated card instead of my nvidia card.  On arch, I had ran X -configure, and tried to alter xorg.conf so it only had 1 screen section and 1 device section with the device defined  to the nvidia card with the BusID option, but startx would only error to: Fatal error no screens found.

After following these instructions, I wasn't sure where to go as there is no xorg.conf file, it uses the file in xorg.conf.d. And I am pretty new to Linux. I tired adding the BusID option in the 20-nouveau.conf file, and removing the vesa drivers, but I just got the same error - Fatal no screens found.

I also thought I would be smart and go into the BIOS and disable the onboard video card so it wouldn't be seen by X, but there wasn't an option to do so, but I didnt give up, I then flashed my bios w/ an update - and I saw an option to alter the graphics settings --but there was only options for Switchable or use the integrated card -- no only dedicated. 


So I am kinda stuck, I have since reinstalled and currently updating the whole system. I dont' want to go through the steps again and mess up X like it was before.  But any advice will be great, if I need to do these steps then post all the log files and settings of the messed up X I will, but just wanted to post first. Thanks in advance.

[user@archbang ~]$ lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
01:00.0 VGA compatible controller: NVIDIA Corporation GF108 [GeForce GT 540M] (rev a1)

Hmmm I'm not sure the nouveau driver will work with that chipset. (Will look into it when I find some time) I am unfamiliar with these chipsets as I do not own anything that uses them. [GeForce GT 540M] This post would benifit those running older nvidia cards that the proprietary drivers are no longer being updated. (nvidia-96xx, nvidia-173xx) I should edit this post to specify that so others running newer chipsets don't attempt applying this on their systems.  I Think you should be attemping to install proprietary nvidia drivers and bumblebee, but can not help you with that as I have not had to deal with these cards/chipsets myself. I think ArchVotex has posted a post in regards to these chipsets sometime in the recent past that may be of some help.

Offline

#10 2012-03-28 10:08:55

Kruppt
Moderator
From: Blue Ridge Mountains, NC
Registered: 2010-12-20
Posts: 299

Re: [SOLVED]Nvidia nouveau drivers & printer

pelasgos wrote:

Y0 ur guide didnt work.It boots with 1680x1050 and when it logins a black screen with colours shows up and nothing. please help.

Well you didn't give much to go on......so you probably got more of my time than I should have offered.  ;-)

Offline

#11 2012-03-28 13:50:52

pelasgos
Member
Registered: 2012-03-10
Posts: 42

Re: [SOLVED]Nvidia nouveau drivers & printer

Kruppt wrote:
pelasgos wrote:

Y0 ur guide didnt work.It boots with 1680x1050 and when it logins a black screen with colours shows up and nothing. please help.

Well you didn't give much to go on......so you probably got more of my time than I should have offered.  ;-)

01:00.0 VGA compatible controller: NVIDIA Corporation G92 [GeForce 9800 GT] (rev a2)

what? :S

Offline

#12 2012-03-28 15:57:04

khaos64
Member
Registered: 2012-03-27
Posts: 11

Re: [SOLVED]Nvidia nouveau drivers & printer

Thanks for the reply, I am currently following the Bumblebee wiki, and it says:

Note: If you want to run a 32-bit application on a 64-bit system you must install lib32-virtualgl and proper lib32-* libraries.

Installing Bumblebee with Intel / NVidia

Install bumblebee from AUR, and then install the special nvidia packages nvidia-bumblebee and nvidia-utils-bumblebee for bumblebee:
Warning: Don't install the original nvidia-utils for Bumblebee - it will break your system !

It is secure now to install the nvidia driver:

# pacman -S nvidia

Note: You can install dkms-nvidia from AUR instead of nvidia if you need it.

Couple of questions. 1. Which should I use? dkms-nvidia or nvidia
                                  2.  I get the following error when trying to install 'lib32-virtualgl'

: gcc-libs-multilib and gcc-libs are in conflict. Remove gcc-libs? [y/N] 
error: unresolvable package conflicts detected
error: failed to prepare transaction (conflicting dependencies)
:: gcc-libs-multilib and gcc-libs are in conflict
Installation failed.

Do I force this, how do I get it to go through? There seems to be a lot of dependencies of gcc-libs.

Thanks.

Offline

#13 2012-03-28 19:21:05

Kruppt
Moderator
From: Blue Ridge Mountains, NC
Registered: 2010-12-20
Posts: 299

Re: [SOLVED]Nvidia nouveau drivers & printer

pelasgos wrote:

01:00.0 VGA compatible controller: NVIDIA Corporation G92 [GeForce 9800 GT] (rev a2)
what? :S

A quick search showed that the nvidia drivers work fine with this card. Why then do you want to install the nouveau drivers with this card?

Offline

#14 2012-03-28 20:09:36

Kruppt
Moderator
From: Blue Ridge Mountains, NC
Registered: 2010-12-20
Posts: 299

Re: [SOLVED]Nvidia nouveau drivers & printer

khaos64 wrote:

Thanks for the reply, I am currently following the Bumblebee wiki, and it says:

Note: If you want to run a 32-bit application on a 64-bit system you must install lib32-virtualgl and proper lib32-* libraries.

Installing Bumblebee with Intel / NVidia

Install bumblebee from AUR, and then install the special nvidia packages nvidia-bumblebee and nvidia-utils-bumblebee for bumblebee:
Warning: Don't install the original nvidia-utils for Bumblebee - it will break your system !

It is secure now to install the nvidia driver:

# pacman -S nvidia

Note: You can install dkms-nvidia from AUR instead of nvidia if you need it.

Couple of questions. 1. Which should I use? dkms-nvidia or nvidia
                                  2.  I get the following error when trying to install 'lib32-virtualgl'

: gcc-libs-multilib and gcc-libs are in conflict. Remove gcc-libs? [y/N] 
error: unresolvable package conflicts detected
error: failed to prepare transaction (conflicting dependencies)
:: gcc-libs-multilib and gcc-libs are in conflict
Installation failed.

Do I force this, how do I get it to go through? There seems to be a lot of dependencies of gcc-libs.

Thanks.

Did you uninstall nouveau etc, and undo all the changes done previously when trying to install nouveau?
To go down the path you are now going, you would have to answer yes to the removal of gcc-libs. That is not forcing. If you mean should you use the -f option, no you shouldn't. I have not had any time to really check this out enough to give you a definitive answer on this setup of yours. It looks like you have to install the intel driver first before you install nvidia, bumblebee and related, have you already done this? (intel) I really don't feel right giving any direction on installing drivers in relation to this optimus setup, have not installed drivers for this setup myself. This looks like a mess in the making.

Offline

#15 2012-03-28 21:09:04

khaos64
Member
Registered: 2012-03-27
Posts: 11

Re: [SOLVED]Nvidia nouveau drivers & printer

Kruppt wrote:

Did you uninstall nouveau etc, and undo all the changes done previously when trying to install nouveau?
To go down the path you are now going, you would have to answer yes to the removal of gcc-libs. That is not forcing. If you mean should you use the -f option, no you shouldn't. I have not had any time to really check this out enough to give you a definitive answer on this setup of yours. It looks like you have to install the intel driver first before you install nvidia, bumblebee and related, have you already done this? (intel) I really don't feel right giving any direction on installing drivers in relation to this optimus setup, have not installed drivers for this setup myself. This looks like a mess in the making.

Thanks, this is a new installation that I havent install the nouveau yet, so not an issue, I have installed xf86-video-intel, bumblebee, nvidia-bumblebee - which seems to have also installed nvidia-utils-bumblebee. Thats what I thought about gcc, but it was packer that I guess automatically said no, and so I tired to just remove using pacman, and that failed but used pacman to install gcc-libs-multilib and it removed and installed, then was able to use packer to install the lib32-virtualgl.


Now just have to figure out between the nvidia and dkms-nvidia what is the actul difference?

Offline

#16 2012-03-28 22:48:53

khaos64
Member
Registered: 2012-03-27
Posts: 11

Re: [SOLVED]Nvidia nouveau drivers & printer

Well actually I didnt have to install either, I went to just install nvidia, not dkms and it said that my nvidia-bumblebee conflicted. So it seems that it installed its own nvidia drivers. I then followed the rest of the wiki and added a 20-intel.conf and 20-nvidia.conf with each having the BusID defined, rebooted and X was there and not off centered.  Though it still didn't work quite right, because of some errors I was getting when I tried to test so I saw somewhere where it said to remove the 20-intel.conf. Did that, rebooted bumblebee and ran a test.

[user@archbang ~]$ optirun -c yuv glxspheres
Polygons in scene: 62464
Visual ID of window: 0x21
Context is Direct
OpenGL Renderer: GeForce GT 540M/PCIe/SSE2
124.508178 frames/sec - 108.690659 Mpixels/sec
124.665176 frames/sec - 108.827712 Mpixels/sec
123.882078 frames/sec - 108.144099 Mpixels/sec
122.374192 frames/sec - 106.827775 Mpixels/sec
116.939597 frames/sec - 108.683815 Mpixels/sec
113.993341 frames/sec - 112.270446 Mpixels/sec

[user@archbang ~]$ glxspheres
Polygons in scene: 62464
Visual ID of window: 0x92
Context is Direct
OpenGL Renderer: Mesa DRI Intel(R) Sandybridge Mobile 
2.510142 frames/sec - 2.191254 Mpixels/sec
1.575345 frames/sec - 1.375213 Mpixels/sec
1.583494 frames/sec - 1.382327 Mpixels/sec
1.582998 frames/sec - 1.381894 Mpixels/sec
1.583272 frames/sec - 1.382133 Mpixels/sec

So seems all is working. I do not know much bout bumblebee and its config but so far what Ive read is that it uses the Intel by defualt and is user defined on when using the Nvidia card, is there no way to reverse it - I would rather use the Nvidia by defualt and then switch to the intel as needed.


EDIT: Spoke too soon, whenever I rebooted and the 20-intel.conf file not in xorg.conf.d, X doesnt start, just a black screen - To get into X I have to add the file back. But then I come back to the same error again where I have to remove the 20-intel.cof file to use bumblebee/optirun......Any suggestions?

Last edited by khaos64 (2012-03-29 08:52:11)

Offline

#17 2012-03-29 20:48:50

mike4ca
Happy (Arch|Manjaro)[B,b]ang User
From: Iowa, USA
Registered: 2011-10-17
Posts: 429

Re: [SOLVED]Nvidia nouveau drivers & printer

I don't have an optimus system, but from what I recall reading it was designed for Windows systems.  When gpu load is low, it uses the intel integrated graphics.  When high, it switches to the Nvidia.  This is to help with battery life.  Nvidia stated that it could not be implemented in Linux.  Leaving Linux users to run a laptop like this with either the discrete graphics or integrated graphics (not both at same time) much like you would a non-optimus system.  Someone smarter figured out how to get 2 x servers running at the same time and created bumblebee to do what Nvidia said could not be done.  However, as you are finding out it is still experimental.  So if the battery life is not an issue, than the easier option may be to just set the graphics to Nvidia.  I am not sure if there is a setting in the BIOS to disable optimus, you may want to look.

Last fall I was looking at a new laptop and starting reading up on the optimus stuff.  It looked like it was a mess and not something that would be picked up and fixed by the mainstream linux community, so I avoided laptops with that feature.


Free Software Foundation member 10865

Offline

#18 2012-03-30 05:10:04

Mr Green
Iso Developer
Registered: 2010-11-07
Posts: 3,746

Re: [SOLVED]Nvidia nouveau drivers & printer

How does Jupiter fit into the mix, I know very little about it other than power management.

Offline

#19 2012-03-30 05:24:14

Kruppt
Moderator
From: Blue Ridge Mountains, NC
Registered: 2010-12-20
Posts: 299

Re: [SOLVED]Nvidia nouveau drivers & printer

khaos64 wrote:
Kruppt wrote:

Did you uninstall nouveau etc, and undo all the changes done previously when trying to install nouveau?
To go down the path you are now going, you would have to answer yes to the removal of gcc-libs. That is not forcing. If you mean should you use the -f option, no you shouldn't. I have not had any time to really check this out enough to give you a definitive answer on this setup of yours. It looks like you have to install the intel driver first before you install nvidia, bumblebee and related, have you already done this? (intel) I really don't feel right giving any direction on installing drivers in relation to this optimus setup, have not installed drivers for this setup myself. This looks like a mess in the making.

Thanks, this is a new installation that I havent install the nouveau yet, so not an issue, I have installed xf86-video-intel, bumblebee, nvidia-bumblebee - which seems to have also installed nvidia-utils-bumblebee. Thats what I thought about gcc, but it was packer that I guess automatically said no, and so I tired to just remove using pacman, and that failed but used pacman to install gcc-libs-multilib and it removed and installed, then was able to use packer to install the lib32-virtualgl.


Now just have to figure out between the nvidia and dkms-nvidia what is the actul difference?


Dynamic Kernel Modules System
Running a new Kernel requires all modules to be recompiled. DKMS automates doing this, you don't have to manage this your self for future kernel-upgrades.

If it were myself I would go for the normal driver, and if i felt I wanted to try the dkms-nvidia system, I would clone my existing install to another partition, and install the dkms-nvidia driver and related there. Put each to use....see if all worked over a period of time or not..then decide which system I was going to keep after a few upgrades(kernel, xorg, nvidia) on each and such....put both systems through some use before making my choice. If one or the other ended up being more problematic...dump it and keep using the one that seems to be the more solid solution...but that's me.

Offline

#20 2012-03-30 06:27:03

Kruppt
Moderator
From: Blue Ridge Mountains, NC
Registered: 2010-12-20
Posts: 299

Re: [SOLVED]Nvidia nouveau drivers & printer

khaos64 wrote:

So seems all is working. I do not know much bout bumblebee and its config but so far what Ive read is that it uses the Intel by defualt and is user defined on when using the Nvidia card, is there no way to reverse it - I would rather use the Nvidia by defualt and then switch to the intel as needed.

"In most cases there is no way to use only the DGP (nvidia in your case) and all the switching and rendering is controlled by software"
What I have gathered from reading thus far about this hybrid system, the IGP is the chipset that is actually "hard-wired" to hardware outputs whereas the DGP is not. So if you only wanted to deal with one chipset for the time being, until you have the system hammered out...it would be the Intel driver and chipset that you would want enabled and not the DGP. I haven't been able to really read into this all that much yet ..but here are a few links that may be helpful in keeping abreast of this hybrid bunk..HA.

https://launchpad.net/~hybrid-graphics-linux
http://linux-hybrid-graphics.blogspot.com/
http://hybrid-graphics-linux.tuxfamily. … ACPI_calls
https://wiki.archlinux.org/index.php/Hybrid_graphics

Offline

#21 2012-03-30 10:49:13

khaos64
Member
Registered: 2012-03-27
Posts: 11

Re: [SOLVED]Nvidia nouveau drivers & printer

Kruppt wrote:
khaos64 wrote:

So seems all is working. I do not know much bout bumblebee and its config but so far what Ive read is that it uses the Intel by defualt and is user defined on when using the Nvidia card, is there no way to reverse it - I would rather use the Nvidia by defualt and then switch to the intel as needed.

"In most cases there is no way to use only the DGP (nvidia in your case) and all the switching and rendering is controlled by software"
What I have gathered from reading thus far about this hybrid system, the IGP is the chipset that is actually "hard-wired" to hardware outputs whereas the DGP is not. So if you only wanted to deal with one chipset for the time being, until you have the system hammered out...it would be the Intel driver and chipset that you would want enabled and not the DSP. I haven't been able to really read into this all that much yet ..but here are a few links that may be helpful in keeping abreast of this hybrid bunk..HA.

https://launchpad.net/~hybrid-graphics-linux
http://linux-hybrid-graphics.blogspot.com/
http://hybrid-graphics-linux.tuxfamily. … ACPI_calls
https://wiki.archlinux.org/index.php/Hybrid_graphics


Thanks for the info, I'll look over those.

Anyone have any idea about the 20-intel.conf file, right now I have to go through this process upon boot, to get working X and Bubblebee.

(20-intel.conf file is named as 20-intel for quick access)

-Power
-(X fails)
-go to tty ---  rename 20-intel to 20-intel.conf
-startx
-login
-rename 20-intel.conf to 20-intel
-rc.d restart bumblebeed

Offline

#22 2012-03-30 13:30:52

pablokal
Administrator
From: Nijmegen, Holland
Registered: 2010-10-12
Posts: 2,621
Website

Re: [SOLVED]Nvidia nouveau drivers & printer

Have you tried to have both files, identical in content but named differently  as 20-intel and 20- intel.conf  in the appropriate folder?
Apparently both namings are called for.


Getting your questions answered here at ArchBang Forums
Please! Always give hardware info, if there is a chance that 's relevant: #lspci -vnn
Quote: What I have learnt from Linux is to minimize dependencies and functionalities for greater independence.
On Arch(bang) and Openbox: http://stillstup.blogspot.com/

Offline

#23 2012-03-30 21:13:04

khaos64
Member
Registered: 2012-03-27
Posts: 11

Re: [SOLVED]Nvidia nouveau drivers & printer

No, I only change the name from 20-intel.conf to 20-intel so that when I restart bumblebee it only sees the .conf file and work correctly with the nvidia card. I will try though.

Per the wiki:

[ERROR]Cannot access secondary GPU

In some instances, running optirun will return:

[ERROR]Cannot access secondary GPU - error: [XORG] (EE) No devices detected.

[ERROR]Aborting because fallback start is disabled.

In this case, you will need to move the file /etc/X11/xorg.conf.d/20-intel.conf to somewhere else. Restart the bumblebeed daemon, and it should work. Credit for this goes to Lekensteyn on #bumblebee at freenode.net

Offline

#24 2012-03-31 05:13:06

pelasgos
Member
Registered: 2012-03-10
Posts: 42

Re: [SOLVED]Nvidia nouveau drivers & printer

Kruppt wrote:
pelasgos wrote:

01:00.0 VGA compatible controller: NVIDIA Corporation G92 [GeForce 9800 GT] (rev a2)
what? :S

A quick search showed that the nvidia drivers work fine with this card. Why then do you want to install the nouveau drivers with this card?

Because, i want to change the resolution to default 1680x1050...

Offline

#25 2012-03-31 08:06:36

Kruppt
Moderator
From: Blue Ridge Mountains, NC
Registered: 2010-12-20
Posts: 299

Re: [SOLVED]Nvidia nouveau drivers & printer

pelasgos wrote:
Kruppt wrote:
pelasgos wrote:

01:00.0 VGA compatible controller: NVIDIA Corporation G92 [GeForce 9800 GT] (rev a2)
what? :S

A quick search showed that the nvidia drivers work fine with this card. Why then do you want to install the nouveau drivers with this card?

Because, i want to change the resolution to default 1680x1050...

What?!! =-(

https://wiki.archlinux.org/index.php/HC … 81024MB.29

You can achieve this resolution with nvidia drivers if your monitor can actually do that resolution.
Using the nvidia drivers is the way to go for this card, forget nouveau.

Offline

#26 2012-04-01 14:06:01

pelasgos
Member
Registered: 2012-03-10
Posts: 42

Re: [SOLVED]Nvidia nouveau drivers & printer

Kruppt wrote:
pelasgos wrote:
Kruppt wrote:

A quick search showed that the nvidia drivers work fine with this card. Why then do you want to install the nouveau drivers with this card?

Because, i want to change the resolution to default 1680x1050...

What?!! =-(

https://wiki.archlinux.org/index.php/HC … 81024MB.29

You can achieve this resolution with nvidia drivers if your monitor can actually do that resolution.
Using the nvidia drivers is the way to go for this card, forget nouveau.

OK, installed nvidia and works ok.




Kruppt wrote:

Not sure but I think these are the drivers you need for your printer.
scangearmp-mp140
cnijfilter-common-i386 OR cnijfilter-common-x86_64 depending on wither your running i686 x86_64 OS
All are packages in AUR.


I installed them but now , how can i configure the printer to work???

Offline

#27 2012-04-02 10:51:55

Kruppt
Moderator
From: Blue Ridge Mountains, NC
Registered: 2010-12-20
Posts: 299

Re: [SOLVED]Nvidia nouveau drivers & printer

pelasgos wrote:
Kruppt wrote:
pelasgos wrote:

Because, i want to change the resolution to default 1680x1050...

What?!! =-(

https://wiki.archlinux.org/index.php/HC … 81024MB.29

You can achieve this resolution with nvidia drivers if your monitor can actually do that resolution.
Using the nvidia drivers is the way to go for this card, forget nouveau.

OK, installed nvidia and works ok.




Kruppt wrote:

Not sure but I think these are the drivers you need for your printer.
scangearmp-mp140
cnijfilter-common-i386 OR cnijfilter-common-x86_64 depending on wither your running i686 x86_64 OS
All are packages in AUR.


I installed them but now , how can i configure the printer to work???

Setup the printer via cups from your browser using the below url:
http://localhost:631/

Offline

#28 2012-04-02 12:10:58

pelasgos
Member
Registered: 2012-03-10
Posts: 42

Re: [SOLVED]Nvidia nouveau drivers & printer

Kruppt wrote:
pelasgos wrote:
Kruppt wrote:

What?!! =-(

https://wiki.archlinux.org/index.php/HC … 81024MB.29

You can achieve this resolution with nvidia drivers if your monitor can actually do that resolution.
Using the nvidia drivers is the way to go for this card, forget nouveau.

OK, installed nvidia and works ok.




Kruppt wrote:

Not sure but I think these are the drivers you need for your printer.
scangearmp-mp140
cnijfilter-common-i386 OR cnijfilter-common-x86_64 depending on wither your running i686 x86_64 OS
All are packages in AUR.


I installed them but now , how can i configure the printer to work???

Setup the printer via cups from your browser using the below url:
http://localhost:631/

http://localhost:631/

Unable to connect
       
          Firefox can't establish a connection to the server at localhost:631.

  The site could be temporarily unavailable or too busy. Try again in a few
    moments.
  If you are unable to load any pages, check your computer's network
    connection.
  If your computer or network is protected by a firewall or proxy, make sure
    that Aurora is permitted to access the Web.

Help please big_smile

Offline

#29 2012-04-02 12:21:12

Mr Green
Iso Developer
Registered: 2010-11-07
Posts: 3,746

Re: [SOLVED]Nvidia nouveau drivers & printer

As root

/etc/rc.d/cupsd restart

Then try localhost:631 again

Offline

#30 2012-04-02 12:55:28

pelasgos
Member
Registered: 2012-03-10
Posts: 42

Re: [SOLVED]Nvidia nouveau drivers & printer

Mr Green wrote:

As root

/etc/rc.d/cupsd restart

Then try localhhost:631 again

Sorry, but nothing.

Offline

#31 2012-04-02 21:31:58

mike4ca
Happy (Arch|Manjaro)[B,b]ang User
From: Iowa, USA
Registered: 2011-10-17
Posts: 429

Re: [SOLVED]Nvidia nouveau drivers & printer

There is a gui for configuring cups that I find easier than the web interface.  See: http://www.archlinux.org/packages/extra … ter-gnome/ (also available for 32bit systems).


Free Software Foundation member 10865

Offline

#32 2012-04-03 00:01:45

Mr Green
Iso Developer
Registered: 2010-11-07
Posts: 3,746

Re: [SOLVED]Nvidia nouveau drivers & printer

pelasgos wrote:
Mr Green wrote:

As root

/etc/rc.d/cupsd restart

Then try localhhost:631 again

Sorry, but nothing.

Really not got anything to go on, what output did you get from first command?

Offline

#33 2012-04-03 08:18:30

pelasgos
Member
Registered: 2012-03-10
Posts: 42

Re: [SOLVED]Nvidia nouveau drivers & printer

Mr Green wrote:
pelasgos wrote:
Mr Green wrote:

As root

/etc/rc.d/cupsd restart

Then try localhhost:631 again

Sorry, but nothing.

Really not got anything to go on, what output did you get from first command?

:: Stopping cupsd daemon                                                 [FAIL]
:: Starting cupsd daemon                                                 [DONE]

OK now it works i just reinstalled cups xD

Offline

#34 2012-04-04 21:28:46

khaos64
Member
Registered: 2012-03-27
Posts: 11

Re: [SOLVED]Nvidia nouveau drivers & printer

Thanks for all the help, seems just removing both 20-nvidia.conf and 20-intel.conf / never adding them to begin with is what solves the boot problem. Seems bumblebee can figure it out on its own.

Offline

Board footer

Powered by FluxBB