LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 12-19-2008, 11:50 AM   #1
canned
LQ Newbie
 
Registered: Dec 2008
Posts: 5

Rep: Reputation: 0
Newbie without a clue......


Got myself a linux netbook and haven't got a clue.....
There's 2 things in particular i'm looking to find out and after searching on both I can find no answer that takes my ignorance into account!

1, How do I find out what I have; gnome, kde, python, debian etc.
2, I want to add some desktop shortcuts for apps I have downloaded and installed. Can someone help? Right clicking does nothing (on the desktop) and I can find nothing that makes it easy......
 
Old 12-19-2008, 11:55 AM   #2
SkinnerC
Member
 
Registered: Dec 2007
Location: New England, USA
Distribution: Ubuntu 8.04 LTS, Slackware 12.2
Posts: 138
Blog Entries: 1

Rep: Reputation: 20
First, welcome to the Linux world.

What type of netbook did you get? Did you purchase new? Is there any documentation with it?

Maybe with this info we can guide you a little better.
 
Old 12-19-2008, 11:58 AM   #3
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
How do I find out what I have; gnome, kde, python, debian etc.
in a terminal type

uname -a
for the kernel version
lsb_release -a
for the linux version


why don't you install software using the packetmanager?
 
Old 12-19-2008, 03:09 PM   #4
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
The command : python -V
will show the version of python, if installed.

startkde
will give a reply.

gnome-about : another reply.

dpkg --get-selections : will list all installed
packages, if it's a Debian system.
....
 
Old 12-19-2008, 04:41 PM   #5
canned
LQ Newbie
 
Registered: Dec 2008
Posts: 5

Original Poster
Rep: Reputation: 0
step by step....

Quote:
What type of netbook did you get? Did you purchase new? Is there any documentation with it?
it's an asus eee pc 901 - bought new. Documentation is little more than a guide through the applications on it and a "how to set up your email" style.


Quote:
uname -a
for the kernel version
for this i get: Linux asus-871585029 2.6.21.4-eeepc #6 Mon May 5 11:38:34 EDT 2008 i686 GNU/Linux

Quote:
lsb_release -a
for the linux version
for this i get: command not found


Quote:
why don't you install software using the packetmanager?
installing isn't the issue - i'm looking to customise the desktop by adding shortcuts to apps i've already installed

Quote:
The command : python -V
will show the version of python, if installed.
Python 2.4.4 [date] GCC 4.1.2 Debian
4.2.2-21
But to be honest I haven't a clue what this all means or what these different elements are used for.

Quote:
startkde
will give a reply.
command not found

Quote:
gnome-about : another reply.
command not found

Quote:
dpkg --get-selections : will list all installed
packages, if it's a Debian system.
gives a massive list of stuff and with no scroll bar i dunno how to get it to pause through the list.....


Really, my biggest thing is the desktop shortcut creation thingy
 
Old 12-19-2008, 05:24 PM   #6
schneidz
LQ Guru
 
Registered: May 2005
Location: boston, usa
Distribution: fedora-35
Posts: 5,313

Rep: Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918
i dunno about debian or what desktop you are running but in fedora using gnome i rite-clik on a file and select make link then i could copy that link to my desktop.

with what little info i have on you, the only standard way to do what you want is to open up a terminal and type
Code:
ln -s <file-to-link-to> ~/Desktop/<name-of-link>

Last edited by schneidz; 12-19-2008 at 05:28 PM.
 
Old 12-19-2008, 05:37 PM   #7
titopoquito
Senior Member
 
Registered: Jul 2004
Location: Lower Rhine region, Germany
Distribution: Slackware64 14.2 and current, SlackwareARM current
Posts: 1,644

Rep: Reputation: 145Reputation: 145
It's a somehow basic way of doing it. Open up a terminal window, change to your Desktop folder ("cd Desktop") and create a desktop file (for example "touch name-of-your-app.desktop"). Open this file in a text editor of your choice (for example "gedit name-of-your-app.desktop", I suspect you have Ubuntu installed, else try "kedit ...") and paste the following in there:

Code:
[Desktop Entry]
Categories=Utility;
Comment=Any long comment as you like
Encoding=UTF-8
Exec=binary-of-your-app
GenericName=Write here what you like
Icon=/usr/share/pixmaps/name-of-any-icon.png
Name=Name-of-your-app
Terminal=false
Type=Application
Value=1.0
StartupNotify=false
Change the lines with "Exec" and "Icon" to your needs, if you like also "Comment" and "Generic Name", but those two are not that important. There's no need to prefix your binary with /usr/lib etc. as long it is in one of the standard folders.

Then save the file with UTF-8 encoding!! Right after that you should have a new Desktop Icon.

EDIT: This would put the app under "Utilities". This can be changed, too, but for a test this should be fine.

Last edited by titopoquito; 12-19-2008 at 05:44 PM.
 
Old 12-19-2008, 05:45 PM   #8
canned
LQ Newbie
 
Registered: Dec 2008
Posts: 5

Original Poster
Rep: Reputation: 0
symbolic link

ok so in the file man2ager i've right clicked on the file and chosen "create symbolic link" and gotten this popup
http://img.photobucket.com/albums/v4.../snapshot1.png

So, I'm a bot confused here. Is this asking for an application name and whatever shortcut name I want on it? If so, that still doesn't actually get it on the desktop does it?
 
Old 12-19-2008, 05:46 PM   #9
doctorcisco
Member
 
Registered: Nov 2003
Posts: 70

Rep: Reputation: 17
A few minutes with Google, and it sounds like your eee uses a customized install of Xandros Linux with KDE desktop. You could try the command "locate kde | grep bin | less" to see if the system lists any files with "kde" in the name that are in a binary (bin) directory.

By the way, to cause pauses in the output from a cli command, do as follows:

mycommand | less

This tells bash to get the output from "mycommand" and send it into the command "less." "Less" is a little program that lets you scroll up and down through a bunch of output. Just hit q when you're done looking.

m00t
 
Old 12-19-2008, 06:33 PM   #10
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,492

Rep: Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488
Quote:
Is this asking for an application name and whatever shortcut name I want on it? If so, that still doesn't actually get it on the desktop does it?
It should if you right clicked in your file manager, selected 'create symbolid link' while you were in the /home/username/Desktop/ directory. The link to needs to be the actual path to the program, the link name can be whatever you want.
 
Old 12-19-2008, 07:38 PM   #11
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,883
Blog Entries: 28

Rep: Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533
The version of Linux on the Eee is a modified version of Xandros.

There is a ton of info at:
EeeUser.com » ASUS Eee PC 701, 900, 901, 1000 Blog Forum Wiki Community
http://www.eeeuser.com/

ASUSTeK Computer Inc.-Support-
http://support.asus.com/default.aspx?SLanguage=en-us

there is also an irc channel of irc.freenode.net #eeepc

Last edited by craigevil; 12-19-2008 at 07:40 PM.
 
Old 12-20-2008, 04:15 AM   #12
canned
LQ Newbie
 
Registered: Dec 2008
Posts: 5

Original Poster
Rep: Reputation: 0
desktop

Quote:
Originally Posted by yancek View Post
It should if you right clicked in your file manager, selected 'create symbolid link' while you were in the /home/username/Desktop/ directory. The link to needs to be the actual path to the program, the link name can be whatever you want.
Ok, ow i understand how it should work but i can't see the desktop directory....... just a file called .desktop

http://img.photobucket.com/albums/v4.../snapshot2.png


craig, thanks for the info on links - will look through those too....
 
Old 12-20-2008, 10:43 AM   #13
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,492

Rep: Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488
You should have an icon which looks like a small house on your Desktop when you boot. Open it. In the location bar it will show where you are, for example: Location: file:/home/username, you should see a directory called Desktop, click on that to open it. So what happens when you click on the "Desktop" image in that directory, blue one with pad/pencil?
 
Old 12-21-2008, 07:21 PM   #14
canned
LQ Newbie
 
Registered: Dec 2008
Posts: 5

Original Poster
Rep: Reputation: 0
desktop

Quote:
Originally Posted by yancek View Post
You should have an icon which looks like a small house on your Desktop when you boot. Open it. In the location bar it will show where you are, for example: Location: file:/home/username, you should see a directory called Desktop, click on that to open it. So what happens when you click on the "Desktop" image in that directory, blue one with pad/pencil?
It's the .desktop directory and it when opened has 2 files:
.directory
Home.desktop


To be honest i think i'll just set the thing up on XP,,,,,,
 
Old 12-22-2008, 05:32 AM   #15
titopoquito
Senior Member
 
Registered: Jul 2004
Location: Lower Rhine region, Germany
Distribution: Slackware64 14.2 and current, SlackwareARM current
Posts: 1,644

Rep: Reputation: 145Reputation: 145
As I wrote, change to your .desktop folder, create a new file in there from file manager or from a command line window, call it "name-of-my-app.desktop", edit this file with a text editor and put in the stuff I wrote above.
 
  


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
Linux newbie. I need a clue as to what to do!!! uncarock Linux - Newbie 17 07-16-2008 07:24 PM
newbie with semi clue needs help please. 0wner Slackware - Installation 2 10-25-2005 05:37 PM
newbie no clue how to install never used linux mandrakegpok Linux - Software 4 03-12-2004 06:42 PM
Newest Newbie!!! (no Clue) biggsjm Linux - Software 7 09-28-2003 10:40 PM

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

All times are GMT -5. The time now is 01:13 AM.

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