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-28-2011, 04:51 PM   #1
shadogamon
Member
 
Registered: Mar 2011
Distribution: Debian
Posts: 42

Rep: Reputation: 1
Trying a KDE Arch Linux Installation, need some info


this weekend , I'm going to try my hand at an arch install, planning on testing out the KDE install. But there are a few essential applets, that I need :
  • Virtual Keyboard LED indicator (gnome parralel = indicator keylock/ keylock applet)
  • USB device dismounter (Indicator USB, Gnome Mount Applet, Ejector)
  • Easy method for CPU scaling
  • Knowledge of whether or not something like Notify OSD is available
Preferably available in Repos, source acceptable
Also is there a graphic method of installing packages (gdebi style) in Arch ?
Any other tips are welcome.

Installation beginning tomorrow afternoon
 
Old 04-28-2011, 04:56 PM   #2
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
well, if you want a premade KDE version of ARCH maybe try Chakra
http://chakra-project.org/news/index...-released.html

or you could use it as a reference for what you are wanting to build
 
Old 04-28-2011, 05:16 PM   #3
TheStarLion
Member
 
Registered: Nov 2009
Location: UK
Distribution: Gentoo
Posts: 472

Rep: Reputation: 41
For the LED indicator, I believe there's a plasmoid somewhere that can display the statuses of each.
Removable media is also handled for you as well, and no longer requires HAL under KDE either. There should be an applet in the KDE system tray (looks like a USB symbol in a circle) which gives you access to mounted Optical and USB media.

Not too sure on the third, but on the last there's the built in notification system. If you prefer it, you can build notify-osd from the AUR.

As to graphic package management, there are a few options such as KPackageKit, but otherwise no - it's done by the command line. However, if you're not familiar with Arch's package manager 'pacman' you may find the Pacman Rosetta page on the Arch wiki useful. Not to mention the main Pacman page itself.

Finally, if you start to find a lot of the packages you want are in the AUR, consider using an AUR-helper tool. Personally, I use yaourt because it matches Pacman's own syntax. You may want to look up more about AUR-helpers here (Also on the Arch Wiki)
 
Old 04-28-2011, 05:26 PM   #4
shadogamon
Member
 
Registered: Mar 2011
Distribution: Debian
Posts: 42

Original Poster
Rep: Reputation: 1
Cool Beans When I said graphic package management I meant like .debs or .rpms. I generally dislike using the terminal to manage files cause I never bothered to learn some of the shell basics (I'm a bit spoiled by *buntu) :X but i'm not completely opposed to using CLI
 
Old 04-28-2011, 05:45 PM   #5
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
If you don't want to use the CLI Arch is definitely not the distro for you. Just my opinion.
 
Old 04-28-2011, 05:50 PM   #6
shadogamon
Member
 
Registered: Mar 2011
Distribution: Debian
Posts: 42

Original Poster
Rep: Reputation: 1
I'm fine with CLI just not dealing with files inside it; because of the way I organize my files, they often have 5/6 path items, so its easy to loose track. I usually just use "open folder in terminal" scripts
 
Old 04-28-2011, 05:50 PM   #7
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
Chakra has a GUI package manager and it's own User Repo, very similar to true ARCH.
 
Old 04-29-2011, 08:46 AM   #8
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
@shadogamon

You should definitely learn to be comfortable in the CLI before using Arch. Unlike Ubuntu, you have to use the CLI in Arch for some things, even once you installed it.

And package management != file management. It's very different. I don't see any real need for a GUI package manager, the command line one works great. If you think that having to work in the command line is a bad thing, Arch is not for you.
 
Old 04-29-2011, 03:19 PM   #9
shadogamon
Member
 
Registered: Mar 2011
Distribution: Debian
Posts: 42

Original Poster
Rep: Reputation: 1
I've already contemplated using the CLI, am fairly proficient with it. I'm using arch as a learning experience, to learn the intricacies of linux, and to build a semi minimalist system apart from my main install (that my siblings need to use) to experiment. I have no problems using CLI in methods that don't involve File Management (that's something ive been working on). As I see it, Arch can be the distro for anybody willing to make the effort to learn and build it right. Anything wrong in arch will most likely result from error on my part, not the developers. I WILL MASTER IT no matter how long it takes. I have used the terminal for everything other than browsing for packages anyway. The long list that Apt search brought up always kinda glazed over and made it easy to miss the package I was looking for. but I have since last posting found that both the Repos and AUR (a feature any distro should have) IMO are posted on the Arch site, making such things much easier. I like the direct and simple structure that Arch so far has shown me rather than the complex web of launchpad

Last edited by shadogamon; 04-29-2011 at 03:24 PM.
 
Old 04-29-2011, 03:23 PM   #10
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
Also, could you tell me why you are so against CLI file management? It's extremely simple:

Code:
ls                         - list files
cd                         - change directory
cp source dest             - copy a file
cp source1 source2 destdir - copy files into directory (use the -R option when copying a dir)
mv source dest             - move a file
mv source1 source2 destdir - move files into a directory
ln -s target linkname      - create a symlink

Last edited by MTK358; 04-29-2011 at 03:25 PM.
 
Old 05-02-2011, 02:22 PM   #11
retrovertigo
Member
 
Registered: Jul 2007
Distribution: Arch Linux
Posts: 36

Rep: Reputation: 15
Quote:
Originally Posted by shadogamon View Post
The long list that Apt search brought up always kinda glazed over and made it easy to miss the package I was looking for.
Learn to use the grep command. It'll make things like this a lot easier.


$ pacman -Ss foo | grep bar
 
Old 05-02-2011, 02:43 PM   #12
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
Quote:
Originally Posted by retrovertigo View Post
$ pacman -Ss foo | grep bar
pacman is Arch Linux's package manager. The OP says he uses APT.
 
Old 05-03-2011, 10:33 AM   #13
retrovertigo
Member
 
Registered: Jul 2007
Distribution: Arch Linux
Posts: 36

Rep: Reputation: 15
Quote:
Originally Posted by MTK358 View Post
pacman is Arch Linux's package manager.
Wow, really? I've been using Arch for a couple years and I never figured that out!

Quote:
Originally Posted by MTK358 View Post
The OP says he uses APT.
Yeah. He also said he was going to try an Arch install.



Your pedantry bores me.
 
Old 05-03-2011, 10:34 AM   #14
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
Quote:
Originally Posted by retrovertigo View Post
Wow, really? I've been using Arch for a couple years and I never figured that out!
Since the OP mentioned APT, I thought he might get confused.
 
Old 05-03-2011, 03:17 PM   #15
shadogamon
Member
 
Registered: Mar 2011
Distribution: Debian
Posts: 42

Original Poster
Rep: Reputation: 1
I like arch so far the only thing I'm having trouble with at the moment is my wifi (thank you broadcom -_-) I'll probably figure it out eventually thanks for the pointers!
 
  


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
Very low RAM using KDE in Arch Linux ootawata Linux - Software 3 10-03-2010 03:02 PM
[SOLVED] Printer Installation trouble in Arch Linux bret381 Linux - Hardware 8 03-02-2010 11:28 AM
Considering Arch Linux installation; question about a specific package. lupusarcanus Linux - Newbie 4 01-08-2010 12:43 PM
problem with a KDE install over Arch Linux on my lappy Tmccoy89 Linux - Laptop and Netbook 1 08-13-2009 08:25 AM
Arch Linux Installation Guide axelfc Arch 6 07-24-2008 12:03 AM

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

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