Dell Inspiron 17r 7720 se

Help with issues concerning notebooks, laptops and netbooks.
User avatar
NevilleGoddard
Developer
Posts: 517
Joined: Thu Dec 22, 2016 10:30 pm
Location: Japan

Re: Dell Inspiron 17r 7720 se

Post by NevilleGoddard »

Oh, sorry. :oops:
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 :lol:

Good luck maybe this will work.
Kernelpanic
Posts: 37
Joined: Tue Sep 29, 2015 4:59 pm

Re: Dell Inspiron 17r 7720 se

Post by Kernelpanic »

NevilleGoddard wrote:Oh, sorry. :oops:
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 :lol:

Good luck maybe this will work.
Yes the screen are referred to the live USB,I'm trying to install it :D

I like your way of thinking ;)
Kernelpanic
Posts: 37
Joined: Tue Sep 29, 2015 4:59 pm

Re: Dell Inspiron 17r 7720 se

Post by Kernelpanic »

NevilleGoddard wrote: Look for something about "Using config file : /some/directory"
Bad news :cry:
There is nothing like that.No path of some type of configuration file ...
D-a-m-n it want me crazy :D
I'm doing a video of my screen with log file. I'm thinking how could I show it to you
User avatar
NevilleGoddard
Developer
Posts: 517
Joined: Thu Dec 22, 2016 10:30 pm
Location: Japan

Re: Dell Inspiron 17r 7720 se

Post by NevilleGoddard »

Please do. :D
Kernelpanic
Posts: 37
Joined: Tue Sep 29, 2015 4:59 pm

Re: Dell Inspiron 17r 7720 se

Post by Kernelpanic »

User avatar
NevilleGoddard
Developer
Posts: 517
Joined: Thu Dec 22, 2016 10:30 pm
Location: Japan

Re: Dell Inspiron 17r 7720 se

Post by NevilleGoddard »

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. :)
Kernelpanic
Posts: 37
Joined: Tue Sep 29, 2015 4:59 pm

Re: Dell Inspiron 17r 7720 se

Post by Kernelpanic »

New problem, no way out :D
To do this :

Code: Select all

pkg install xf86-video-intel
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
ASX
Posts: 988
Joined: Wed May 06, 2015 12:46 pm

Re: Dell Inspiron 17r 7720 se

Post by ASX »

Kernelpanic 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?
hmm ... may be easy may be not, depending on your wifi adapter

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"
while my device is supported from iwn module, yours might be different and you need to change the settings accordingly.

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
After you have a working driver, just for test run:

Code: Select all

ifconfig wlan0 scan
That should provide you a list of available networks, if all went well.

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"
}
and finally restart the network services:

Code: Select all

service netif restart
service routing restart
check again for connectivity:

Code: Select all

ping www.gioogle.com
ping 8.8.8.8
if pinging google.com doesn't work, but pinging 8.8.8.8 does work, you have a dns issue (should not be, but ... just in case).
Kernelpanic
Posts: 37
Joined: Tue Sep 29, 2015 4:59 pm

Re: Dell Inspiron 17r 7720 se

Post by Kernelpanic »

The battle continue ....
root@ghostbsd:~#ifconfig wlan0 scan
ifconfig: interface wlan0 does not exist
ASX
Posts: 988
Joined: Wed May 06, 2015 12:46 pm

Re: Dell Inspiron 17r 7720 se

Post by ASX »

Kernelpanic wrote:The battle continue ....
root@ghostbsd:~#ifconfig wlan0 scan
ifconfig: interface wlan0 does not exist
My fault: after editing rc.conf and before to scan for network issue:

Code: Select all

service netif restart
service routing restart
or simply reboot
Post Reply