LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 04-11-2016, 10:07 PM   #1
rblampain
Senior Member
 
Registered: Aug 2004
Location: Western Australia
Distribution: Debian 11
Posts: 1,288

Rep: Reputation: 52
Can't get any browser to work.


I have done a fresh Debian 8 "netinstall" on a desktop, everything works fine except that I cannot get any browser to work (Iceweasel, Chromium or Epiphany).
Chromium and Epiphany were installed separately and successfully, "synaptic" shows them all as installed. At the right top corner of the screen there is a volume icon that shows a line and when I start a browser, either on its own or through an HTML document, the screen fills up with what looks like small sections of that line and the only option is to power down and reboot.

The internet connection works because "installs" are able to download and install packages (also installed successfully packages like "tree", "rsync" and others and rsync has been tested successfully locally)

This is tailor made desktop 6/7 years old used briefly under Debian 5:
asus MN... motherboard
8G ram
80G HDD /
2x500G HDD raid1 (working properly under /mnt/raid1/)
firewall from netinstall if any

I have no idea of what the problem could be, could anyone make a suggestion?

Thank you for your help.

Last edited by rblampain; 04-11-2016 at 10:09 PM.
 
Old 04-11-2016, 10:21 PM   #2
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Hi...

Do any of your kernel or system logs show anything of interest?

Regards...
 
1 members found this post helpful.
Old 04-12-2016, 02:42 AM   #3
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
isn't a netinstall a text interface only install (no gui)?
i think you left out a few steps of how you got to a graphical desktop; quite necessary to help you.

generally, the first thing i always do is open a terminal window and execute the command from there, maybe i can get some useful information.
 
1 members found this post helpful.
Old 04-12-2016, 08:15 PM   #4
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,323
Blog Entries: 28

Rep: Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142
Ondoho, unless it's changed since I last used Debian, a netinstall is by default a full install that fetches packages from the internet, rather than requiring the full set of optical installation media.

What is the output of these commands?

Code:
ping google.com
ping 8.8.8.8
traceroute google.com
traceroute 8.8.8.8
Post their output, being sure to enclose it in "code" tags, which become available when to click the "Go Advanced" button at the bottom of the compose post windows.
 
1 members found this post helpful.
Old 04-13-2016, 12:44 AM   #5
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by frankbell View Post
Ondoho, unless it's changed since I last used Debian, a netinstall is by default a full install that fetches packages from the internet, rather than requiring the full set of optical installation media.
you are right.
i associated it so in my head, because a netinstall offers you a choice (tasksel iirc) to install a graphical environment and other things.

thus my request from my previous post is still valid.
 
1 members found this post helpful.
Old 04-13-2016, 08:42 AM   #6
rblampain
Senior Member
 
Registered: Aug 2004
Location: Western Australia
Distribution: Debian 11
Posts: 1,288

Original Poster
Rep: Reputation: 52
Thank you for the answers.
I cannot find anything wrong in the logs.
I selected the gui install. There was no hitch at all during the install, everything proceeded as expected. DPKG... log shows the browsers are installed and configured.

Code:
$ ping google.com
ping: unknown host google.com
$ ping 8.8.8.8
connect: Network is unreachable
$ traceroute google.com
google.com: Name or service not known
Cannot handle "host" cmdline arg `google.com' on position 1 (argc 1)
$ traceroute 8.8.8.8
traceroute to 8.8.8.8 (8.8.8.8), 30 hops max, 60 byte packets
connect: Network is unreachable
$
 
Old 04-13-2016, 09:42 PM   #7
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,323
Blog Entries: 28

Rep: Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142
The reason I asked you to ping both google.com and 8.8.8.8 is this: If you had successfully hit 8.8.8.8 but not google.com, the issue would likely be with your DNS configuration, rather than with connectivity itself. If you had hit one but not the other, traceroute provides information that helps indicate where the connection failed.

You seem to have a network configuration problem.

Are you using a wired or wireless connection? If you are using wireless, test with a wired connection. If you connect over a wired connection, the issue is likely the wireless driver or chipset.

If you do not connect over a wired connection, the issue is likely your network configuration itself. This article from the Debian website should help: https://wiki.debian.org/NetworkConfiguration

What is the output of the command ifconfig -a and the content of your /etc/network/interfaces file? You can post the output here, again using code tags (by the way, thanks for using the code tags).

Last edited by frankbell; 04-13-2016 at 09:54 PM.
 
1 members found this post helpful.
Old 04-14-2016, 01:59 AM   #8
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by rblampain View Post
Code:
$ ping google.com
ping: unknown host google.com
$ ping 8.8.8.8
connect: Network is unreachable
$ traceroute google.com
google.com: Name or service not known
Cannot handle "host" cmdline arg `google.com' on position 1 (argc 1)
$ traceroute 8.8.8.8
traceroute to 8.8.8.8 (8.8.8.8), 30 hops max, 60 byte packets
connect: Network is unreachable
$
this very clearly shows that your network is down; your original assessment (network up, only browsers don't work) is not valid anymore.
the previous post outlines how to proceed.
 
1 members found this post helpful.
Old 04-18-2016, 08:55 PM   #9
rblampain
Senior Member
 
Registered: Aug 2004
Location: Western Australia
Distribution: Debian 11
Posts: 1,288

Original Poster
Rep: Reputation: 52
Debian 8 is new to me, I do not like having to adapt to it and I thought I would install Debian 7 from DVDs since that's what I have on other machines and see if there is a difference. However, it seems since I had raid 1 configured and working the new "install" failed repeatedly to configure raid as it appears I had to select the option
Code:
"..erase data.."
first but erasing data on the first disk of an array of 2 disks has been running for 14 hours and is about 3/4 completed.

I will update this in the next few days and answer the questions.

Last edited by rblampain; 04-18-2016 at 08:57 PM.
 
Old 05-06-2016, 07:53 AM   #10
rblampain
Senior Member
 
Registered: Aug 2004
Location: Western Australia
Distribution: Debian 11
Posts: 1,288

Original Poster
Rep: Reputation: 52
After a few days of erasing data, Debian 7 works normally although there is something I did not like: it looks like even though the install was fron DVDs, parts of Debian 8 were automatically fetched from the internet and installed "a la Windows" (behind your back and without asking if you want it or not). The result is that the screen display is generic Debian 8 although there is the option to revert to "classical" at booting time.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
flashplugin doesn't work at all in any browser eithrial Linux - Software 16 09-29-2013 09:33 PM
[SOLVED] java won't work from within a browser doughyi8u Linux - Newbie 0 09-30-2012 08:32 PM
java doesn't work in my browser lord_didger Debian 2 10-30-2011 03:43 PM
How do I get Hotjava browser to work? Rasenganfan2 Linux - Software 3 04-05-2009 11:44 PM
Getting Flash to work with Opera browser alexAR55 Linux - Newbie 11 04-26-2008 11:46 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 06:31 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration