LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 04-01-2010, 01:37 PM   #1
caksin
Member
 
Registered: Jul 2008
Location: Ankara, Türkiye
Distribution: Ubuntu, Pardus
Posts: 47

Rep: Reputation: 16
Talking Why does it say "Linux" instead of "Ubuntu"


Hi,
I did search if such a question existed but could not find any relevant results and I could not decide where to post, so sorry if this is not the place, but it does seem to be newbie question;

Why does it say "Linux" on my posts whereas I have Karmic Koala - 32 bit on the left over there?
 
Old 04-01-2010, 01:42 PM   #2
pljvaldez
LQ Guru
 
Registered: Dec 2005
Location: Somewhere on the String
Distribution: Debian Wheezy (x86)
Posts: 6,094

Rep: Reputation: 281Reputation: 281Reputation: 281
Probably because your browser doesn't have Ubuntu in the User Agent string.
 
Old 04-01-2010, 01:43 PM   #3
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
You need to set the distribution in firefox, or the browser you are using.
There is a thread at LQ concerning this problem.
http://www.linuxquestions.org/questi...-posts-749091/
 
Old 04-01-2010, 01:46 PM   #4
JimBrewster
Member
 
Registered: Feb 2010
Location: usa:/dev/random
Distribution: Slackware-15.0; -current
Posts: 245

Rep: Reputation: 60
What browser are you using?

You might want to check out this thread
 
Old 04-01-2010, 01:49 PM   #5
caksin
Member
 
Registered: Jul 2008
Location: Ankara, Türkiye
Distribution: Ubuntu, Pardus
Posts: 47

Original Poster
Rep: Reputation: 16
I posted the first one using chrome, now this one is from ff. Let's see how it goes.
Edit: Lol it shows nothing from ff, now I checked both ff and chrome settings - could not find where to set the distro, I guess that was not the place to look.
I checked the links you guys gave but did not see anything about any configuration. Can you tell me where it is or how to do it?

Last edited by caksin; 04-01-2010 at 01:57 PM.
 
Old 04-01-2010, 02:50 PM   #6
smeezekitty
Senior Member
 
Registered: Sep 2009
Location: Washington U.S.
Distribution: M$ Windows / Debian / Ubuntu / DSL / many others
Posts: 2,339

Rep: Reputation: 231Reputation: 231Reputation: 231
^^ Refresh the page.
 
Old 04-01-2010, 02:54 PM   #7
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
checked the links you guys gave but did not see anything about any configuration. Can you tell me where it is or how to do it?
http://www.linuxquestions.org/questi...ubuntu-799421/
 
Old 04-01-2010, 02:57 PM   #8
caksin
Member
 
Registered: Jul 2008
Location: Ankara, Türkiye
Distribution: Ubuntu, Pardus
Posts: 47

Original Poster
Rep: Reputation: 16
Oops - nice one . So ff can do it but not chrome, for now, for me.
 
Old 04-01-2010, 04:26 PM   #9
pljvaldez
LQ Guru
 
Registered: Dec 2005
Location: Somewhere on the String
Distribution: Debian Wheezy (x86)
Posts: 6,094

Rep: Reputation: 281Reputation: 281Reputation: 281
http://lifehacker.com/5050497/change...r-agent-string
 
Old 04-01-2010, 05:26 PM   #10
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
Originally Posted by pljvaldez View Post
Isn't this for windows?
 
Old 04-01-2010, 05:44 PM   #11
pljvaldez
LQ Guru
 
Registered: Dec 2005
Location: Somewhere on the String
Distribution: Debian Wheezy (x86)
Posts: 6,094

Rep: Reputation: 281Reputation: 281Reputation: 281
Sorry, maybe. I guess I didn't read it very closely... I'll have to check when I get home.

EDIT: This link claims you can start it from the command line with a user agent string.

Last edited by pljvaldez; 04-01-2010 at 05:48 PM.
 
Old 04-01-2010, 06:50 PM   #12
w1k0
Senior Member
 
Registered: May 2008
Location: Poland
Distribution: Slackware (personalized Window Maker), Mint (customized MATE)
Posts: 1,309

Rep: Reputation: 234Reputation: 234Reputation: 234
Run google-chrome and type address:

Code:
about:
In result apart of other things you see User Agent string:

Code:
Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/5.0.342.1 Safari/533.2
Default string doesn’t include information about your distribution so your system is recognized as Linux.
 
Old 04-01-2010, 06:51 PM   #13
w1k0
Senior Member
 
Registered: May 2008
Location: Poland
Distribution: Slackware (personalized Window Maker), Mint (customized MATE)
Posts: 1,309

Rep: Reputation: 234Reputation: 234Reputation: 234
Now run google-chrome with such command:

Code:
google-chrome --user-agent="Mozilla/5.0 Slackware/13.0 (X11; U; Linux i686; en-US) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/5.0.342.1 Safari/533.2"
Now User Agent string includes information about your distribution (Slackware 13.0 in the example above).

To make life easier you’d prepare alias to start google-chrome:

Code:
alias chrome='google-chrome --user-agent="Mozilla/5.0 Slackware/13.0 (X11; U; Linux i686; en-US) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/5.0.342.1 Safari/533.2"'
 
1 members found this post helpful.
Old 04-02-2010, 02:16 AM   #14
caksin
Member
 
Registered: Jul 2008
Location: Ankara, Türkiye
Distribution: Ubuntu, Pardus
Posts: 47

Original Poster
Rep: Reputation: 16
Hm, thnx guys. This post is from chrome run through the command given. I wrote "Ubuntu/9.10", let's see.
Again, Thank you all.
Cheers

Edit: Roxx

Last edited by caksin; 04-02-2010 at 02:18 AM.
 
Old 04-02-2010, 02:18 AM   #15
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
indeed
 
  


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
how can I "cat" or "grep" a file to ignore lines starting with "#" ??? callagga Linux - Newbie 7 08-16-2013 06:58 AM
net working eth0 eth1 wlan0 "no connection" "no LAN" "no wi-fi" Cayitano Linux - Newbie 5 12-09-2007 07:11 PM
Standard commands give "-bash: open: command not found" even in "su -" and "su root" mibo12 Linux - General 4 11-11-2007 10:18 PM
"Xlib: extension "XFree86-DRI" missing on display ":0.0"." zaps Linux - Games 9 05-14-2007 03:07 PM
LXer: Displaying "MyComputer", "Trash", "Network Servers" Icons On A GNOME Desktop LXer Syndicated Linux News 0 04-02-2007 08:31 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:45 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