LinuxQuestions.org
Go Job Hunting at the LQ Job Marketplace
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices

Reply
 
LinkBack Search this Thread
Old 05-25-2007, 02:29 AM   #16
Tinkster
Moderator
 
Registered: Apr 2002
Location: in a fallen world
Distribution: slackware by choice, others too :} ... android.
Posts: 22,618
Blog Entries: 10

Rep: Reputation: 771Reputation: 771Reputation: 771Reputation: 771Reputation: 771Reputation: 771Reputation: 771

Quote:
Originally Posted by Old_Fogie
I find it amazing how it can move multiple files on a pc blazing fast. For example, if I have a kernel un-tarred and wanted to move it and there are thousands of files, it just moves them. But in konqueror, or even krusader, you wait for the file count, you get many pauses, etc. Midnight commander just rips thru that stuff. Even over the lan. I also like that you can use 'mcedit' for a quick text file, such as 'mcedit ./slack-desc' for those times you want to make a file in console. I'm not a VI guy
So does a mv on the commandline ;} (if they are on the
same file-system, that is ... but then, mc would suffer
the same problem if they weren't .... )

And pity about vi ... mcedit is quite pathetic in comparison.

Cheers,
Tink

Last edited by Tinkster; 05-25-2007 at 02:30 AM.
 
Old 05-25-2007, 02:34 AM   #17
theYinYeti
Senior Member
 
Registered: Jul 2004
Location: Nantes (France)
Distribution: Arch Linux
Posts: 1,897

Rep: Reputation: 61
screen, bash, sed, awk, uniq, sort, tar, grep, find, xargs, du, df, chroot, rm, cp, ln, rsync, ls, mkdir, echo, date, tee, vi.

And that's without compilation stuff.

Yves.
 
Old 05-25-2007, 03:17 AM   #18
slimm609
Member
 
Registered: May 2007
Location: Chas, SC
Distribution: slackware, gentoo, fedora, LFS, sidewinder G2, solaris, FreeBSD, RHEL, SUSE, Backtrack
Posts: 420

Original Poster
Rep: Reputation: 62
Ok I guess that some people did not get the right idea of this..

I am creating a secure distro created off of slackware. It has no GUI. I was looking for actual programs that are very important for system administration that are not included by default.
 
Old 05-25-2007, 07:11 AM   #19
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 4,026

Rep: Reputation: Disabled
Quote:
Originally Posted by slimm609
Ok I guess that some people did not get the right idea of this..

I am creating a secure distro created off of slackware. It has no GUI. I was looking for actual programs that are very important for system administration that are not included by default.
Then you should have told us so in your first post.
Nevertheless, the thread gave interesting results.

Eric
 
Old 05-25-2007, 07:45 AM   #20
theYinYeti
Senior Member
 
Registered: Jul 2004
Location: Nantes (France)
Distribution: Arch Linux
Posts: 1,897

Rep: Reputation: 61
Quote:
Originally Posted by slimm609
Ok I guess that some people did not get the right idea of this..

I am creating a secure distro created off of slackware. It has no GUI. I was looking for actual programs that are very important for system administration that are not included by default.
That's not in contradiction with the post I wrote.
I actually wrote the names of the tools I use and combine almost every time I work on a Linux system/rescue shell.

Those tools, while standard on big distributions, are not necessarily included on a minimalist distro, which might be the case of a "secure" distro.
For example, it happened to me to be dropped to a shell where neither ls nor cd were available!

Yves.
 
Old 05-25-2007, 10:48 AM   #21
lord-fu
Member
 
Registered: Apr 2005
Location: Ohio
Distribution: Slackware && freeBSD
Posts: 676

Rep: Reputation: 30
Quote:
yeah, but screen is included with slackware.
Oooops, right you are sir; I could have sworn I had to install it on my desktop It does show up on a full brand new install I did on my laptop a couple months ago.
 
Old 05-25-2007, 12:45 PM   #22
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 4,026

Rep: Reputation: Disabled
Quote:
Originally Posted by theYinYeti
That's not in contradiction with the post I wrote.
You must have missed this part of his original question:

tools that don't come standard with slackware

Eric
 
Old 05-25-2007, 12:54 PM   #23
H_TeXMeX_H
Guru
 
Registered: Oct 2005
Posts: 11,388
Blog Entries: 2

Rep: Reputation: 825Reputation: 825Reputation: 825Reputation: 825Reputation: 825Reputation: 825Reputation: 825
Quote:
Originally Posted by slimm609
What are your must have command line tools that don't come standard with slackware??

I would like everyones opinion on this
I believe that it was clear ...
 
Old 05-25-2007, 01:06 PM   #24
pdw_hu
Member
 
Registered: Nov 2005
Location: Budapest, Hungary
Distribution: Slackware, Gentoo
Posts: 346

Rep: Reputation: Disabled
Oh and also: rioutil (for those who have these kind of mp3 players).
 
Old 05-28-2007, 03:54 AM   #25
jets0n
Member
 
Registered: Aug 2006
Distribution: Slackware | Ubuntu | Debian | CentOS
Posts: 34

Rep: Reputation: 15
Vlock is a must have for me. Bashburn is also usefull, although i recenty started using libburn instead.
 
Old 05-28-2007, 08:49 PM   #26
arcanex
Member
 
Registered: Mar 2007
Posts: 41

Rep: Reputation: 15
xclip is very useful.

After using it, I wonder why it doesn't come standard with X.

For example, I've never been happy with xclipboard, or the X clipboard system in general. But this one-liner, which I can bind to a keystroke, makes things much easier for me (someone who likes to work using a keyboard and in a terminal)

Code:
#!/bin/sh
/usr/bin/xclip -o | xmessage -default okay -nearmouse -file - &
What this does is pop up the current clipboard content in a message window, which I can keep open to make sure I don't lose its content.

xclip, in conjunction with keynav (which I've patched to allow middle-click), gives me much quicker X clipboard access almost mouselessly.
 
Old 05-28-2007, 08:55 PM   #27
slimm609
Member
 
Registered: May 2007
Location: Chas, SC
Distribution: slackware, gentoo, fedora, LFS, sidewinder G2, solaris, FreeBSD, RHEL, SUSE, Backtrack
Posts: 420

Original Poster
Rep: Reputation: 62
Quote:
Originally Posted by arcanex
xclip is very useful.

After using it, I wonder why it doesn't come standard with X.

For example, I've never been happy with xclipboard, or the X clipboard system in general. But this one-liner, which I can bind to a keystroke, makes things much easier for me (someone who likes to work using a keyboard and in a terminal)

Code:
#!/bin/sh
/usr/bin/xclip -o | xmessage -default okay -nearmouse -file - &
What this does is pop up the current clipboard content in a message window, which I can keep open to make sure I don't lose its content.

xclip, in conjunction with keynav (which I've patched to allow middle-click), gives me much quicker X clipboard access almost mouselessly.

I am not familiar with xclip or xmessage but doesn't that require X to be installed?
 
Old 05-28-2007, 09:01 PM   #28
arcanex
Member
 
Registered: Mar 2007
Posts: 41

Rep: Reputation: 15
Quote:
Originally Posted by slimm609
I am not familiar with xclip or xmessage but doesn't that require X to be installed?
Yes it does. Oops, I guess I forgot the fact you are not using any GUI. =D

Nevertheless, xclip is a great command line tool for controlling the X clipboard (if you are using X).
 
Old 05-29-2007, 06:45 AM   #29
theYinYeti
Senior Member
 
Registered: Jul 2004
Location: Nantes (France)
Distribution: Arch Linux
Posts: 1,897

Rep: Reputation: 61
Quote:
Originally Posted by Alien Bob
Quote:
Originally Posted by theYinYeti
That's not in contradiction with the post I wrote.
You must have missed this part of his original question:
tools that don't come standard with slackware
Eric
Well, yes indeed, I skipped that part. I'm so used to skipping distribution names in posts that I do it unconsciously now... That's because I don't use/know Slackware (and many others) but I try and help nonetheless.

Thanks you Eric for pointing that out factually.
Sorry for the useless posts.

Yves.

Last edited by theYinYeti; 05-29-2007 at 06:47 AM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Command line/tools in CentOS/RHEL ? tuxuser19 Red Hat 5 10-01-2006 07:07 PM
C++ Interfacing with command line tools khermans Programming 2 04-14-2005 02:00 PM
writing gui wrappers for command line tools Genjix Programming 2 01-10-2005 09:25 AM
group command line tools m2azer Linux - General 4 10-31-2004 09:37 PM
how do I set a path for my java command line tools darkone66669 Linux - Newbie 1 04-19-2004 06:28 PM


All times are GMT -5. The time now is 09:49 AM.

Main Menu
 
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
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration