LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 08-17-2006, 03:57 AM   #1
win2suse
Member
 
Registered: Jul 2006
Posts: 84

Rep: Reputation: 15
6 critical questions from KDE newbie


Hallo all,
I'm absolute newbie in linux community. Yesterday I installed Bebian on my old Toshiba Tecra8000, and encountered many questions, and listed the critical ones below:

confused: 1. the KDE desktop window is not properly driven by the system. I guess it's due to the fact that I did not offer any info on the graphic card id and some related bus info for I have no idea how these infos could be found in bebian.

confused: 2. the cd-rom works weird, I could insert it once, but failed to take it out. why? Which command I could issue to see what's in the cd in a shell console? I tried with mount /cd, but nothing happens.

confused: 3. at startup, usb seems sucessfully mounted, but in KDE konqueror there is no such a folder. should I reconfigure somewhere?

confused: 4. normally under which directory is it recommended to install user program? after installation, how could I inform KDE in oder to include the newcomer as a normal application?

confused: 5. Is there any tool like Bebian aptitude that get the desired file and install it automatically?

confused: 6. How could I install some plug-ins, e.g. flash player, for the firefox in KDE?

That's all for today. wish any experts could give me a hand for them. Regards, win2s
 
Old 08-17-2006, 04:09 AM   #2
salparadise
Senior Member
 
Registered: Nov 2002
Location: Birmingham UK
Distribution: Various
Posts: 1,736

Rep: Reputation: 146Reputation: 146
confused: 1. the KDE desktop window is not properly driven by the system. I guess it's due to the fact that I did not offer any info on the graphic card id and some related bus info for I have no idea how these infos could be found in bebian.

The command you want is "dpkg-reconfigure xserver-xorg".
Additional bus info etc can be found by typing "lspci".

confused: 2. the cd-rom works weird, I could insert it once, but failed to take it out. why? Which command I could issue to see what's in the cd in a shell console? I tried with mount /cd, but nothing happens.

mount /mnt/cdrom or mount /media/cdrom. Also, try right clicking on the cd icon on the desktop and choosing "eject".

confused: 3. at startup, usb seems sucessfully mounted, but in KDE konqueror there is no such a folder. should I reconfigure somewhere?

Look in Storage Media. It might appear there. If you're using a standard IDE system then it's probably mounted at /dev/sda1.

confused: 4. normally under which directory is it recommended to install user program? after installation, how could I inform KDE in oder to include the newcomer as a normal application?

If you're installing .deb apps as root then they should install to /usr/lib (or maybe /opt/kde/ if you're talking about KDE stuff) and the executable is linked to /usr/bin.

confused: 5. Is there any tool like Bebian aptitude that get the desired file and install it automatically?

Yes, it's called synaptic.

confused: 6. How could I install some plug-ins, e.g. flash player, for the firefox in KDE?

Use synaptic. You might need to go to the Konqueror Tools menu and then to Configure Konqueror and scroll down the list in the left of the window till you find "Plugins".

And it's Debian not Bebian. Unless there's some new distro I haven't heard of.
 
Old 08-17-2006, 04:33 AM   #3
bulliver
Senior Member
 
Registered: Nov 2002
Location: Edmonton AB, Canada
Distribution: Gentoo x86_64; Gentoo PPC; FreeBSD; OS X 10.9.4
Posts: 3,760
Blog Entries: 4

Rep: Reputation: 78
Quote:
And it's Debian not Bebian. Unless there's some new distro I haven't heard of.
Jeez, I was starting to wonder myself...a google search for 'bebian' returns over 500 hits, though they all seem to be typos on a mailing list
 
Old 08-17-2006, 05:13 AM   #4
win2suse
Member
 
Registered: Jul 2006
Posts: 84

Original Poster
Rep: Reputation: 15
Thumbs up

Hallo salparadise, thank you for your answers.
Quote:
If you're installing .deb apps as root then they should install to /usr/lib (or maybe /opt/kde/ if you're talking about KDE stuff) and the executable is linked to /usr/bin.
is the ending of executables in linux also .exe?
how could such link be realized? should I make any scripts or add a statement in certain config file?

Thanx in advance, win2s
 
Old 08-17-2006, 05:19 AM   #5
w3bd3vil
Senior Member
 
Registered: Jun 2006
Location: Hyderabad, India
Distribution: Fedora
Posts: 1,191

Rep: Reputation: 49
lets take an example here. Suppose if you have firefox.deb, you install it. it will automatically get linked to places it should be. so generally you dont need to worry about where it gets linked. Just install it and type "firefox" in terminal and it should start.
No, the executables in linux dont end with a .exe, they files in /usr/bin dont have an extension. .deb are debian packages, which are made for easy installation.
 
Old 08-17-2006, 07:38 AM   #6
win2suse
Member
 
Registered: Jul 2006
Posts: 84

Original Poster
Rep: Reputation: 15
Quote:
lets take an example here. Suppose if you have firefox.deb, you install it.
Do you mean man install it using Synaptic?

In case I download one from
http://www.firefox-browser.de/linux.php
the file with extension *.tar.gz, it is not dedicated for deb. How could I install it?
 
Old 08-17-2006, 07:43 AM   #7
w3bd3vil
Senior Member
 
Registered: Jun 2006
Location: Hyderabad, India
Distribution: Fedora
Posts: 1,191

Rep: Reputation: 49
if you want to install the easy way, just do
apt-get install firefox

from a .tar.gz
you would extract the file first. read the INSTALL file. there might be different methods to install
this is one possible way
tar -xvzf *.tar.gz
./configure
make
make install

you might search for a .deb package on your debian dvd instead of downloading .tar.gz file from the net.
 
Old 08-17-2006, 07:52 AM   #8
win2suse
Member
 
Registered: Jul 2006
Posts: 84

Original Poster
Rep: Reputation: 15
Thanx a lot. for now its quite clear.
How about uninstall, is there any command to remove the executables? or has man to issue rm rmdir?
 
Old 08-17-2006, 07:55 AM   #9
w3bd3vil
Senior Member
 
Registered: Jun 2006
Location: Hyderabad, India
Distribution: Fedora
Posts: 1,191

Rep: Reputation: 49
apt-get uninstall firefox
but I dont know a way to uninstall, if you have built through the source.
 
Old 08-17-2006, 07:58 AM   #10
ethics
Senior Member
 
Registered: Apr 2005
Location: London
Distribution: Arch - Latest
Posts: 1,522

Rep: Reputation: 45
if it was installed by apt get, then
Code:
apt-get remove <package>
will work.

Code:
man apt-get
will tell you alot about apt-get (you can also use the synaptic GUI but i have noexperience with it)
 
Old 08-17-2006, 08:06 AM   #11
win2suse
Member
 
Registered: Jul 2006
Posts: 84

Original Poster
Rep: Reputation: 15
Thank all
 
Old 08-17-2006, 04:20 PM   #12
salparadise
Senior Member
 
Registered: Nov 2002
Location: Birmingham UK
Distribution: Various
Posts: 1,736

Rep: Reputation: 146Reputation: 146
It's a pleasure to help.
 
  


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
LXer: Red Hat, SUSE patch critical KDE security hole LXer Syndicated Linux News 0 01-23-2006 01:01 PM
Newbie questions, Mandrakelinux10, KDE desktop Jay Smith Linux - Newbie 21 09-29-2004 10:43 AM
Two newbie questions - Custom Fonts, and KDE Makaelin Slackware 5 09-01-2004 01:54 AM
Newbie Questions chaswp54 Linux - General 2 10-19-2001 01:29 PM

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

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