Dell Inspiron 17r 7720 se
- NevilleGoddard
- Developer
- Posts: 517
- Joined: Thu Dec 22, 2016 10:30 pm
- Location: Japan
Re: Dell Inspiron 17r 7720 se
Oh, sorry.
I thought by your screenshots showed that you had installed GhostBSD but you couldn't get to your desktop. Your screenshots are from a live USB?
In that case check the /var/log/Xorg.0.log file.
This can be done by entering the command:
ee /var/log/Xorg.0.log
when the boot process stops and the # symbol appears.
Look for something about "Using config file : /some/directory"
If you edit this config file to only have the intel card and not the nvidia card used with (probably) the vesa driver you may get to the desktop.
When you find the info from /var/log/Xorg.0.log press escape and enter to leave the editor and then enter the command:
ee /directory/from/the/logfile to edit the correct config directory. Make the edits and save them. This may get you to the desktop.
I don't like taking "No" for an answer
Good luck maybe this will work.
I thought by your screenshots showed that you had installed GhostBSD but you couldn't get to your desktop. Your screenshots are from a live USB?
In that case check the /var/log/Xorg.0.log file.
This can be done by entering the command:
ee /var/log/Xorg.0.log
when the boot process stops and the # symbol appears.
Look for something about "Using config file : /some/directory"
If you edit this config file to only have the intel card and not the nvidia card used with (probably) the vesa driver you may get to the desktop.
When you find the info from /var/log/Xorg.0.log press escape and enter to leave the editor and then enter the command:
ee /directory/from/the/logfile to edit the correct config directory. Make the edits and save them. This may get you to the desktop.
I don't like taking "No" for an answer
Good luck maybe this will work.
-
- Posts: 37
- Joined: Tue Sep 29, 2015 4:59 pm
Re: Dell Inspiron 17r 7720 se
Yes the screen are referred to the live USB,I'm trying to install itNevilleGoddard wrote:Oh, sorry.
I thought by your screenshots showed that you had installed GhostBSD but you couldn't get to your desktop. Your screenshots are from a live USB?
In that case check the /var/log/Xorg.0.log file.
This can be done by entering the command:
ee /var/log/Xorg.0.log
when the boot process stops and the # symbol appears.
Look for something about "Using config file : /some/directory"
If you edit this config file to only have the intel card and not the nvidia card used with (probably) the vesa driver you may get to the desktop.
When you find the info from /var/log/Xorg.0.log press escape and enter to leave the editor and then enter the command:
ee /directory/from/the/logfile to edit the correct config directory. Make the edits and save them. This may get you to the desktop.
I don't like taking "No" for an answer
Good luck maybe this will work.
I like your way of thinking
-
- Posts: 37
- Joined: Tue Sep 29, 2015 4:59 pm
Re: Dell Inspiron 17r 7720 se
Bad newsNevilleGoddard wrote: Look for something about "Using config file : /some/directory"
There is nothing like that.No path of some type of configuration file ...
D-a-m-n it want me crazy
I'm doing a video of my screen with log file. I'm thinking how could I show it to you
- NevilleGoddard
- Developer
- Posts: 517
- Joined: Thu Dec 22, 2016 10:30 pm
- Location: Japan
Re: Dell Inspiron 17r 7720 se
Please do.
-
- Posts: 37
- Joined: Tue Sep 29, 2015 4:59 pm
- NevilleGoddard
- Developer
- Posts: 517
- Joined: Thu Dec 22, 2016 10:30 pm
- Location: Japan
Re: Dell Inspiron 17r 7720 se
OK, thanks.
From what i could see from the video the fbdev module isn't loading and it's loading the vesa driver. I think you want the intel driver. The laptop won't work with just the nvidia card. So you need to get the intel card working.
Try:
pkg install xf86-video-intel
then:
Xorg -configure
This should create an xorg.conf.new file in /root
Edit the file and remove all nvidia references and save. Also try to edit the devices section so it looks like this:
Section "Device"
Identifier "Card0"
Driver "intel"
BusID "PCI:0:0:2:0"
EndSection
I hope that's the right BusID number.
Type exit and see if this works.
From what i could see from the video the fbdev module isn't loading and it's loading the vesa driver. I think you want the intel driver. The laptop won't work with just the nvidia card. So you need to get the intel card working.
Try:
pkg install xf86-video-intel
then:
Xorg -configure
This should create an xorg.conf.new file in /root
Edit the file and remove all nvidia references and save. Also try to edit the devices section so it looks like this:
Section "Device"
Identifier "Card0"
Driver "intel"
BusID "PCI:0:0:2:0"
EndSection
I hope that's the right BusID number.
Type exit and see if this works.
-
- Posts: 37
- Joined: Tue Sep 29, 2015 4:59 pm
Re: Dell Inspiron 17r 7720 se
New problem, no way out
To do this :
I need to be connected to the web.
The problem is that i haven't an ethernet connection but only a wi-fi connection.How can i connect to my wi-fi protected by wpa/psk2 by terminal?
Thanks again for help
Cheers
To do this :
Code: Select all
pkg install xf86-video-intel
The problem is that i haven't an ethernet connection but only a wi-fi connection.How can i connect to my wi-fi protected by wpa/psk2 by terminal?
Thanks again for help
Cheers
Re: Dell Inspiron 17r 7720 se
hmm ... may be easy may be not, depending on your wifi adapterKernelpanic wrote:The problem is that i haven't an ethernet connection but only a wi-fi connection.How can i connect to my wi-fi protected by wpa/psk2 by terminal?
place something like this in /etc/rc.conf
Code: Select all
create_args_wlan0="country IT regdomain ETSI"
wlans_iwn0="wlan0"
ifconfig_wlan0="WPA DHCP"
EDIT: your device as listed before is supported from iwn
Wi-Fi 802.11 a/g/n Wi-Fi Model Intel Centrino Advanced-N 2230 Bluetooth
The following command may help to identify your hardware:
Code: Select all
pciconf -lv
Code: Select all
ifconfig wlan0 scan
Last step is add a few info in /etc/wpa_supplicant.conf (namely "SSID" and "wpa key")
Code: Select all
network={
ssid="YOUR-SSID"
psk="YOUR-WPA-KEY"
}
Code: Select all
service netif restart
service routing restart
Code: Select all
ping www.gioogle.com
ping 8.8.8.8
-
- Posts: 37
- Joined: Tue Sep 29, 2015 4:59 pm
Re: Dell Inspiron 17r 7720 se
The battle continue ....
root@ghostbsd:~#ifconfig wlan0 scan
ifconfig: interface wlan0 does not exist
root@ghostbsd:~#ifconfig wlan0 scan
ifconfig: interface wlan0 does not exist
Re: Dell Inspiron 17r 7720 se
My fault: after editing rc.conf and before to scan for network issue:Kernelpanic wrote:The battle continue ....
root@ghostbsd:~#ifconfig wlan0 scan
ifconfig: interface wlan0 does not exist
Code: Select all
service netif restart
service routing restart