Good luck!
I couldn't find anything online about disabling the nvidia card.
Please let us know how you get on with TrueOS!
Dell Inspiron 17r 7720 se
- NevilleGoddard
- Developer
- Posts: 517
- Joined: Thu Dec 22, 2016 10:30 pm
- Location: Japan
- NevilleGoddard
- Developer
- Posts: 517
- Joined: Thu Dec 22, 2016 10:30 pm
- Location: Japan
Re: Dell Inspiron 17r 7720 se
Good luck.
As an absolute last resort if nothing else works, a BIOS update may fix the problem. According to a forum I read Dell did a BIOS update and I think it's update A15 and it runs the nvidia card by default.
This may or may not fix things but updating the BIOS can be VERY risky. You may brick your machine.
As an absolute last resort if nothing else works, a BIOS update may fix the problem. According to a forum I read Dell did a BIOS update and I think it's update A15 and it runs the nvidia card by default.
This may or may not fix things but updating the BIOS can be VERY risky. You may brick your machine.
-
- Posts: 37
- Joined: Tue Sep 29, 2015 4:59 pm
Re: Dell Inspiron 17r 7720 se
This evening i will try to install TrueOs and see what happens.
Mmmh i know that updating bios will be very dangerous and i prefer to do nothing in this way
Probably I must stay with Gnu/Linux on this machine
Thanks again for your support
Cheers
Mmmh i know that updating bios will be very dangerous and i prefer to do nothing in this way
Probably I must stay with Gnu/Linux on this machine
Thanks again for your support
Cheers
Re: Dell Inspiron 17r 7720 se
Last week I 'bricked' a Dell Vostro laptop when it failed to complete a bios update ... but .. I was subsequently able to resurrect it using a Phoenix utility named recovery/crisis utilityKernelpanic wrote: Mmmh i know that updating bios will be very dangerous and i prefer to do nothing in this way
http://itstillworks.com/recover-phoenix ... 18098.html
That was the first time I bricked a laptop in my life, and I'm glad there is a way to recover from such events. For the record, the laptop was/is afflicted from some motherboard related issue.
Chance are you Dell is also using a Phoenix Bios
- NevilleGoddard
- Developer
- Posts: 517
- Joined: Thu Dec 22, 2016 10:30 pm
- Location: Japan
Re: Dell Inspiron 17r 7720 se
I updated the BIOS my Dell desktop and all went smoothly, but it took a lot of work.
-
- Posts: 37
- Joined: Tue Sep 29, 2015 4:59 pm
Re: Dell Inspiron 17r 7720 se
Nothing to do...
Yesterday evening i tried many times to install TrueOs without success.It's the same with GhostBSD,error with video card.
Unfortunately I think that I will remain with Gnu/Linux on that machine.
Yesterday evening i tried many times to install TrueOs without success.It's the same with GhostBSD,error with video card.
Unfortunately I think that I will remain with Gnu/Linux on that machine.
- NevilleGoddard
- Developer
- Posts: 517
- Joined: Thu Dec 22, 2016 10:30 pm
- Location: Japan
Re: Dell Inspiron 17r 7720 se
Kernelpanic, perhaps you should have a look at this when you have the time.
https://forums.freebsd.org/threads/49670/
In the last post at the bottom he says he got X working and he gives his Xorg configuration file. You could try using his file or just editing yours so only the intel chip is used. You may have to edit it slightly to your pci identifier and you may get good results.
You'll be stuck with only your Intel GPU. You won't be able to use the nvidia one.
Give it a try.
https://forums.freebsd.org/threads/49670/
In the last post at the bottom he says he got X working and he gives his Xorg configuration file. You could try using his file or just editing yours so only the intel chip is used. You may have to edit it slightly to your pci identifier and you may get good results.
You'll be stuck with only your Intel GPU. You won't be able to use the nvidia one.
Give it a try.
-
- Posts: 37
- Joined: Tue Sep 29, 2015 4:59 pm
Re: Dell Inspiron 17r 7720 se
Wow this seems to be very interesting. I'll try again with my favorite BSD OS, GhostBSDNevilleGoddard wrote:Kernelpanic, perhaps you should have a look at this when you have the time.
https://forums.freebsd.org/threads/49670/
In the last post at the bottom he says he got X working and he gives his Xorg configuration file. You could try using his file or just editing yours so only the intel chip is used. You may have to edit it slightly to your pci identifier and you may get good results.
You'll be stuck with only your Intel GPU. You won't be able to use the nvidia one.
Give it a try.
This evenig I'm going to work on it
Thank you very much for this heko NevilleGoddard
Ps.I start GhostBSD in live mode and then I modify the xorg.conf?Or i need to install FreeBSD with no GUI and then after xorg being install i will modify it?
- NevilleGoddard
- Developer
- Posts: 517
- Joined: Thu Dec 22, 2016 10:30 pm
- Location: Japan
Re: Dell Inspiron 17r 7720 se
First run GhostBSD in live mode and open a terminal and enter the command:
pciconf -lv
Then look for something like:
vgapci0@pci0:0:2:0 class=878734
vendor = 'Intel Corporation'
Device = 'Mobile XXXXXX Integrated Graphics Controller '
class = display
Take note of the pci0:0:2:0 if your number is not 0:0:2:0 write your number down.
If possible, install GhostBSD as usual and then reboot. Probably pick UFS, not ZFS and FreeBSD bootloader.
Then when the prompt comes up to go into a shell, go into the shell and enter the command:
/sbin/mount -u /
then enter the command:
Xorg -configure
This should create a a file at /root/xorg.conf.new file
Then edit this file keeping only one "device" section by the command:
ee /root/xorg.conf.new
and editing out any section you see with nvidia in it and setting the driver to intel like so:
Section "Device"
Identifier "Card0"
Driver "intel"
Then install the package for intel drivers:
pkg install xf86-video-intel
then reboot and hold your breath
If this doesn't work try including the ID of the card by editing the device section so it looks like this:
Section "Device"
Identifier "Card0"
Driver "intel"
BusID "PCI:0:2:0"
Changing the PCI number for yours if it is different.
And try again.
Good luck.
pciconf -lv
Then look for something like:
vgapci0@pci0:0:2:0 class=878734
vendor = 'Intel Corporation'
Device = 'Mobile XXXXXX Integrated Graphics Controller '
class = display
Take note of the pci0:0:2:0 if your number is not 0:0:2:0 write your number down.
If possible, install GhostBSD as usual and then reboot. Probably pick UFS, not ZFS and FreeBSD bootloader.
Then when the prompt comes up to go into a shell, go into the shell and enter the command:
/sbin/mount -u /
then enter the command:
Xorg -configure
This should create a a file at /root/xorg.conf.new file
Then edit this file keeping only one "device" section by the command:
ee /root/xorg.conf.new
and editing out any section you see with nvidia in it and setting the driver to intel like so:
Section "Device"
Identifier "Card0"
Driver "intel"
Then install the package for intel drivers:
pkg install xf86-video-intel
then reboot and hold your breath
If this doesn't work try including the ID of the card by editing the device section so it looks like this:
Section "Device"
Identifier "Card0"
Driver "intel"
BusID "PCI:0:2:0"
Changing the PCI number for yours if it is different.
And try again.
Good luck.
-
- Posts: 37
- Joined: Tue Sep 29, 2015 4:59 pm
Re: Dell Inspiron 17r 7720 se
Wow thanks for your description.
The only problem is that I can't go in the live mode.So I cannot use the graphical installer.
How could I install GhostBSD in console mode?before install I would like to know if this damned video card works.
For this reason I would like to know if everything works well.However tonight I'll be Dr.Frankenstein
Thanks again for your precious help
Cheers
The only problem is that I can't go in the live mode.So I cannot use the graphical installer.
How could I install GhostBSD in console mode?before install I would like to know if this damned video card works.
For this reason I would like to know if everything works well.However tonight I'll be Dr.Frankenstein
Thanks again for your precious help
Cheers