Re: Command free

2003-08-21 Thread Ben Russo
Mohamed Patricio wrote: hello people, total used free sharedbuffers cached Mem:513488 510424 3064668 8144 344916 -/+ buffers/cache: 157364 356124 Swap: 1228964 184281210536 Is correct I say , this: my ma

Re: Command free

2003-08-21 Thread Rick Warner
On Thu, 2003-08-21 at 10:31, Mohamed Patricio wrote: > hello people, > > total used free sharedbuffers cached > Mem:513488 510424 3064668 8144 344916 > -/+ buffers/cache: 157364 356124 > Swap: 1228964 18428

Re: Command Line for Searching for Files Containing "Text"?

2003-07-30 Thread Lorenzo Prince
Samuel Flory staggered into view and mumbled: > Lorenzo Prince wrote: > > >Hmm. Try the following if you want to search within a specific directory: > > > >for f in /directory/*; do grep "text" $f; done > > > >or you can omit /directory/ if you want to search the current directory, > >so the com

Re: Command Line for Searching for Files Containing "Text"?

2003-07-30 Thread Dave Ihnat
On Wed, Jul 30, 2003 at 12:51:02PM -0700, Samuel Flory wrote: > That's a little complex why not grep "some text" /directory/* > > Or grep -r "some text" /directory if you want to search all of the files > in any directorys within a directory. Sorry, late to pay attention to this--assuming it has

Re: Command Line for Searching for Files Containing "Text"?

2003-07-30 Thread Samuel Flory
Lorenzo Prince wrote: Hmm. Try the following if you want to search within a specific directory: for f in /directory/*; do grep "text" $f; done or you can omit /directory/ if you want to search the current directory, so the command would look something like this: for f in *; do grep "text" $f;

Re: Command Line for Searching for Files Containing "Text"?

2003-07-29 Thread Jason Dixon
On Tue, 2003-07-29 at 21:33, Lorenzo Prince wrote: > Hmm. Try the following if you want to search within a specific directory: > > for f in /directory/*; do grep "text" $f; done > > or you can omit /directory/ if you want to search the current directory, so the > command would look something li

Re: Command Line for Searching for Files Containing "Text"?

2003-07-29 Thread Lorenzo Prince
Hmm. Try the following if you want to search within a specific directory: for f in /directory/*; do grep "text" $f; done or you can omit /directory/ if you want to search the current directory, so the command would look something like this: for f in *; do grep "text" $f; done I think this wil

Re: command line sms-> ICQ network

2003-06-24 Thread Callan K L Tham
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tuesday 24 June 2003 11:53, Didier Casse wrote: > Does anybody have a PERL program or any command line program that can send > sms messages to mobile phones by using the ICQ network? Try centericq. It works for me. http://konst.org.ua/centericq/

Re: command to change KDE background from console

2003-06-09 Thread Mark Bruen
I finally figured out for myself on gnome (hopefully it'll work on KDE): gconftool-1 -t string -s /desktop/gnome/background/picture_filename Run as the user you're logged in as on the desktop. Reuben D. Budiardja wrote: Hello, is there a command line version to change the background picture of

Re: command line history

2002-12-26 Thread Matthew Boeckman
this can also be set with the environment variable HISTFILE. whatever file you set HISTFILE to use must be writable by the user invoking the shell. try 'man bash' for more info Mike Burger wrote: Set the user shell to bash, which stores the command history in ~/.bash_history On 26 Dec 2002,

Re: command line history

2002-12-25 Thread Mike Burger
Set the user shell to bash, which stores the command history in ~/.bash_history On 26 Dec 2002, shawn wrote: > when I work as root I get a nice history of the commands I've done on > the command line. > > that dissappears when I am just a user. I don't need the root history > but just that for

Re: command line mail with attachment

2002-10-30 Thread Paul Campbell
At 07:42 PM 10/30/02 +0100, you wrote: >On Wed, Oct 30, 2002 at 01:10:21PM -0500, Reuben D. Budiardja wrote: >> >> Is there anyway to send e-mail with attachment from command line? the command >> "mail" doesn't seem to have attachment capability. mail [EMAIL PROTECTED] -s "some stuff" < attach_fi

Re: command line mail with attachment

2002-10-30 Thread Chuck Mead
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 30 Oct 2002, Reuben D. Budiardja posted the following: RDB> RDB>Hi, RDB>Is there anyway to send e-mail with attachment from command line? the command RDB>"mail" doesn't seem to have attachment capability. If you have mutt installed mutt can

Re: command line mail with attachment

2002-10-30 Thread Emmanuel Seyman
On Wed, Oct 30, 2002 at 01:10:21PM -0500, Reuben D. Budiardja wrote: > > Is there anyway to send e-mail with attachment from command line? the command > "mail" doesn't seem to have attachment capability. The command "mutt" does. echo "text in the body of the mail" | mutt -a filename.txt [EMAIL P

Re: command line mail with attachment

2002-10-30 Thread Juan Nin
From: "Reuben D. Budiardja" <[EMAIL PROTECTED]> > Is there anyway to send e-mail with attachment from command line? the command > "mail" doesn't seem to have attachment capability. you can use mutt # cat yourMessageBody.txt | mutt -a /path/to/attachment -s "your subject" [EMAIL PROTECTED] rega

Re: command line config tool

2002-10-26 Thread Michael Fratoni
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Saturday 26 October 2002 11:04 am, [EMAIL PROTECTED] wrote: > On Sat, Oct 26, 2002 at 10:35:46AM -0400, Michael Fratoni wrote: > > For Red Hat 8.0: > > $ which redhat-config-printer-tui | xargs rpm -qf > > redhat-config-printer-0.4.24-1 > > > > On a

Re: command line config tool

2002-10-26 Thread pd3
On Sat, Oct 26, 2002 at 10:35:46AM -0400, Michael Fratoni wrote: > For Red Hat 8.0: > $ which redhat-config-printer-tui | xargs rpm -qf > redhat-config-printer-0.4.24-1 > > On a 7.2 machine: > which printconf-tui | xargs rpm -qf > printconf-0.3.61-4.1 Hello Should have said that I'm using 7.0.

Re: command line config tool

2002-10-26 Thread Michael Fratoni
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Saturday 26 October 2002 10:08 am, [EMAIL PROTECTED] wrote: > I have searched the redhat ftp site and one finnish mirror site. > Still can't find redhat-config-print-tui :o( > > Would you be so kind (if you know) as to say which RPM contains > the

Re: command line config tool

2002-10-26 Thread pd3
On Fri, Oct 25, 2002 at 04:26:38PM +0200, Dumas Patrice wrote: > Hi, > > You can use in text mode redhat-config-print-tui, but for a real comand > line I don't know. Hello I have searched the redhat ftp site and one finnish mirror site. Still can't find redhat-config-print-tui :o( Would you be

Re: command line config tool

2002-10-25 Thread hanfamily
You can still edit printcap to make changes it also has a printcap.local that it appends to the printcap after it generates it when you start lpd however this doesn't help if you want the entry you are doing manually to be the default printer. I have found that if you change etc/printcap the change

Re: command line config tool

2002-10-25 Thread Dumas Patrice
Hi, You can use in text mode redhat-config-print-tui, but for a real comand line I don't know. > Hello > > Just wondering if RH has any tools that configure LPRng > from the commandline or would someone who has forgone > the pleasures of the GUI's just have to get his hands > dirty and dig into

Re: command stty

2002-08-13 Thread Keith Morse
On Mon, 12 Aug 2002 [EMAIL PROTECTED] wrote: > How do I alter the speed of the serials port (ttyS0)??? > I need to do this in the cyclades port (ttyC0). > Is it possible, without getty??? > > Tks > > Marcelo One method would be to use "setserial". For details, please reference: http://www.

Re: command

2002-01-24 Thread Rodolfo J. Paiz
At 1/24/2002 12:19 PM -0800, you wrote: > >Note that "less" does the same thing as "more", so you don't need to use > >both. Pick one of the two; less does a little extra, but more is easier to > >learn for newbies. > >Ok, let me see if I understand this. less is more, but more is >better? Less

Re: command

2002-01-24 Thread ABrady
On Thu, 24 Jan 2002 12:19:56 -0800 (PST) David Talkington <[EMAIL PROTECTED]> implied: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Rodolfo J. Paiz wrote: > > >Note that "less" does the same thing as "more", so you don't need to > >use both. Pick one of the two; less does a little extr

Re: command

2002-01-24 Thread Nicole Kok
Dear Rodolfo J. Paiz I have another queston? I would like to display because It takes too long to read the latest when our messages is very big > Jan 24 09:09:26 syslogd 1.4-0: restart. > Jan 24 08:09:24 syslog: syslogd startup succeeded > Jan 24 07:09:24 syslog: klogd startup succeeded no

Re: command

2002-01-24 Thread David Talkington
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Rodolfo J. Paiz wrote: >Note that "less" does the same thing as "more", so you don't need to use >both. Pick one of the two; less does a little extra, but more is easier to >learn for newbies. Ok, let me see if I understand this. less is more, bu

Re: command

2002-01-24 Thread Rodolfo J. Paiz
At 1/24/2002 02:08 PM -0500, you wrote: >But why two commands take different results >and last one doesn't apply it? Because I made a mistake. :) The second should be: # grep "`date +'%b %e'`" /var/log/messages | less >Second: doesn't work, start from Jan 20 >[root@ log]# grep `date +"%b %e"`

Re: command

2002-01-24 Thread Juan Martinez
24 Jan 2002, Nicole Kok wrote: > Date: Thu, 24 Jan 2002 14:08:39 -0500 (EST) > From: Nicole Kok <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Re: command > > Dear Rodolfo > > Thank you > > But

Re: command

2002-01-24 Thread Nicole Kok
Dear Rodolfo Thank you But why two commands take different results and last one doesn't apply it? first one: work, start from Jan 24 Jan 24 07:09:24 syslogd 1.4-0: restart. Jan 24 07:09:24 syslog: syslogd startup succeeded Jan 24 07:09:24 syslog: klogd startup succeeded Second: doesn't wor

Re: command

2002-01-24 Thread Rodolfo J. Paiz
At 1/24/2002 12:29 PM -0500, you wrote: >Which command I can start to read /var/log/messages >from the latest date? Simple: # grep "Jan 24" /var/log/messages | less Remember that the day-of-the-month is *always* in two digits. Hence for Feb/1 you'd use "Feb 1" (note two spaces instead of one)

Re: command completion / spelling errors

2002-01-23 Thread Manuel A. Camacho Q.
David Talkington wrote: > consistently transposes the last two letters in /usr/locla. > In which case it would be safer to create an alias... ;) -Manuel. ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/r

Re: command completion / spelling errors

2002-01-23 Thread David Talkington
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ashley M. Kirchner wrote: >JW wrote: > >> [localhost:~] root# em tmpfile >> >> OK? rm tmpfile? > >I'm not sure about it matching commands (I've only ever seen it >match what's in PWD). However, as far as having a command such as >'rm' ask for ve

Re: command completion / spelling errors

2002-01-23 Thread David Talkington
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 JW wrote: >Hey, in addition to this.. in Darwin (i.e. Mac OS X) which uses tcsh >as the default, it will ask you for confirmation rather then just >taking off without you. for example: > >[localhost:~] root# em tmpfile > >OK? rm tmpfile? I did not

Re: command completion / spelling errors

2002-01-23 Thread Ashley M. Kirchner
JW wrote: > [localhost:~] root# em tmpfile > > OK? rm tmpfile? I'm not sure about it matching commands (I've only ever seen it match what's in PWD). However, as far as having a command such as 'rm' ask for verification, that's a matter of aliasing it to 'rm -i'... -- H | "Life is the ar

Re: command completion / spelling errors

2002-01-23 Thread JW
At 07:10 PM 1/23/2002 -0800, you wrote: >-BEGIN PGP SIGNED MESSAGE- >In bash: > >shopt -s cdspell > >But I can't step away from this without being just a bit pedantic ... >I strongly advise against using that option as root, where a typo can >mean disaster, and you don't want the system

Re: [RH List] Re: command completion / spelling errors

2002-01-23 Thread Ashley M. Kirchner
David Talkington wrote: > Or for a geek like me, who > consistently transposes the last two letters in /usr/locla. Why'd you think I ask. :) AMK4 -- H | "Life is the art of drawing without an eraser." - John Gardner +---

Re: command completion / spelling errors

2002-01-23 Thread David Talkington
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ashley M. Kirchner wrote: > >When one starts typing in a filename/directory name on a bash >prompt, you can hit TAB and it auto-completes it. In bash: shopt -s cdspell But I can't step away from this without being just a bit pedantic ... I

Re: command completion / spelling errors

2002-01-23 Thread Hal Burgiss
On Wed, Jan 23, 2002 at 07:54:28PM -0700, Ashley M. Kirchner wrote: > I _think_ this is something set in bash since those machines are > also using bash. The question is, _what_? Does anyone know? shopt -s cdspell -- Hal Burgiss ___ Redhat-list

Re: Command Line audio player

2001-12-20 Thread David Talkington
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Reuben D Budiardja wrote: >> adjust my >> volume from a command line. :) ~ > >How do you do that? adjust vol from command line? $ man play will explain. ;-) - -d - -- David Talkington PGP key: http://www.prairienet.org/~dtalk/0xCA4C11AD.pgp

Re: Command Line audio player

2001-12-20 Thread Reuben D Budiardja
> adjust my > volume from a command line. :) ~ How do you do that? adjust vol from command line? rdb -- Reuben D. Budiardja [EMAIL PROTECTED] ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Command Line audio player

2001-12-20 Thread Statux
sox does .wav, etc. Use sox with the play command: # play sound.wav mpg123 is the most widely used mp3 player for Linux, I'd have to say. In fact, XMMS, for instance, uses mpg123 for its backend processing of MP3s. XMMS is mostly just a front end, FYI. On Thu, 20 Dec 2001, Mike Watson wrote:

Re: Command Line audio player

2001-12-20 Thread David Talkington
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chuck Mead wrote: >ogg123 for command line ogg. And mpg123, which also ships with Red Hat. I love the look on a Winbie's face when I play music or adjust my volume from a command line. :) ~ - -- David Talkington PGP key: http://www.prairienet.o

Re: Command Line audio player

2001-12-20 Thread Chuck Mead
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 ogg123 for command line ogg. On Thu, 20 Dec 2001, Reuben D Budiardja posted the following: RDB>plaympeg for mp3, mpg format RDB>play for wav format. RDB> RDB>Rdb RDB> RDB>On Thursday 20 December 2001 01:51 pm, you wrote: RDB>> Can someone direct me

Re: Command Line audio player

2001-12-20 Thread Reuben D Budiardja
plaympeg for mp3, mpg format play for wav format. Rdb On Thursday 20 December 2001 01:51 pm, you wrote: > Can someone direct me to a command-line audio player. I have some .WAV, > .MP3 files that I'd like to play while not in X-windows. > > Thanks, > Mike W > > > > _

RE: Command Line audio player

2001-12-20 Thread Amanda Smith
Check out www.freshmeat.net for a wide variety of programs. mpg123 should work fine. > -Original Message- > From: Mike Watson [mailto:[EMAIL PROTECTED]] > Can someone direct me to a command-line audio player. I have > some .WAV, .MP3 > files that I'd like to play while not in X-window

Re: command to modify words?

2001-12-12 Thread Edward C. Bailey
>Hi, >What is the command to modify words >This is what I am trying to do >delete everything after the "@" from a file of one line email addresses. > >BEFORE > >[EMAIL PROTECTED] >[EMAIL PROTECTED] >[EMAIL PROTECTED] >[EMAIL PROTECTED] > >AFTER > >mark >ian >jane >Trevor Emacs? /me runs! :

RE: command

2001-12-12 Thread Carter, Shaun G
ECTED]] Sent: Wednesday, December 12, 2001 12:44 PM To: '[EMAIL PROTECTED]' Subject: RE: command Honestly, was it necessary to post that? You could have said something like "read the man page" or RTFM. That was wasteful. Sorry.. just stating it

RE: command

2001-12-12 Thread Statux
Honestly, was it necessary to post that? You could have said something like "read the man page" or RTFM. That was wasteful. Sorry.. just stating it before someone else does :) ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.co

RE: command

2001-12-12 Thread Carter, Shaun G
The mknod command creates device special files, or fifos.  Normally the shell script /dev/MAKEDEV is used to create special files for commonly known devices; it executes mknod with the appropriate arguments and can make all the files required for the device. To make nodes ma

Re: command

2001-12-12 Thread Jeremy C. Reed
On Wed, 12 Dec 2001, P K wrote: > What is the maining of the following command? > > mknod /dev/hdb1 b 22, 1 Your Linux box should come with some documentation called manual pages. You can find out about this "mknod" command with: man mknod Basically, what your command means is: make a speci

Re: command to modify words?

2001-12-11 Thread srikrishnan
dear friend,     if u have [EMAIL PROTECTED] or any thing else .. u can use the following command .. { [EMAIL PROTECTED]  | cut -d "@" -f1 } which 'll give u the first field before the delimiter "@". Hope this helps. bye, Srikrishnan   Stuart Clark wrote: Hi, What is the command to mo

Re: command to modify words?

2001-12-11 Thread Cameron Simpson
On Tue, Dec 11, 2001 at 11:16:18AM -0800, Jeremy C. Reed <[EMAIL PROTECTED]> wrote: | On Thu, 6 Dec 2001, Stuart Clark wrote: | | I have no clue why I received this old "Dec. 6" message. (And I didn't | check the archive to see if it was already answered.) | | > delete everything after the "@" f

Re: command to modify words?

2001-12-11 Thread Jeremy C. Reed
On Thu, 6 Dec 2001, Stuart Clark wrote: I have no clue why I received this old "Dec. 6" message. (And I didn't check the archive to see if it was already answered.) > delete everything after the "@" from a file of one line email addresses. (And delete the "@" sign also.) cut -d '@' -f 1 Je

RE: Command-line mail syntax for bash script

2001-12-05 Thread Vinny Valdez
er 04, 2001 6:38 PM > To: [EMAIL PROTECTED] > Subject: Re: Command-line mail syntax for bash script > > > On Tue, Dec 04, 2001 at 12:47:20PM -0600, Vinny Valdez > <[EMAIL PROTECTED]> wrote: > | I have a quick question, I'm sure the answer is simple. > | > | I

Re: Command-line mail syntax for bash script

2001-12-04 Thread Cameron Simpson
On Tue, Dec 04, 2001 at 12:47:20PM -0600, Vinny Valdez <[EMAIL PROTECTED]> wrote: | I have a quick question, I'm sure the answer is simple. | | I want to do the following: | | 1. send an email to a list through a bash script (no interaction) | 2. hide the recepients (bcc) | 3. be able to alter

Re: Command Needed

2001-04-28 Thread Alejandro González Hernández
"Mark Lo (3)" wrote: > > Hi, > > I would like to know what is the command to find out how many disk > spaces is table for a particular directory. du -ks man du ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailma

Re: Command Needed

2001-04-28 Thread Vidiot
> I would like to know what is the command to find out how many disk >spaces is table for a particular directory. >Mark I'm not sure what you are asking for. Please restate the question. MB -- e-mail: [EMAIL PROTECTED] Bart: Hey, why is it destroying other toys? Lisa: They must have

Re: command line mail agent

2001-03-20 Thread hanfam
Hi, I use pine, the people on the list were a lot of help getting it set up. Linda hanigan On Tue, 20 Mar 2001, Thierry ITTY wrote: > howdy > > i want to send mail from an rh linux box, without installing nor > configuring an MTA like sendmail, qmail or postfix. > so i need a tool whi

Re: command line mail agent

2001-03-20 Thread Anthony E . Greene
On Tue, 20 Mar 2001 05:37:06 Thierry ITTY wrote: >i want to send mail from an rh linux box, without installing nor >configuring an MTA like sendmail, qmail or postfix. >so i need a tool which i can tell "send this file to this address using >this smtp server" >the configuration could occur either

Re: Command to check RAM configuration

2001-01-02 Thread John Aldrich
On Tue, 02 Jan 2001, Chuck Carson wrote: > Is their a command in Linux to check the RAM configuration (ie which banks > are used, what size is in each bank, ie) Not AFAIK. > > Also, can you check the temperature of the CPU's, max, > min, etc.. Basically > I am ooking for the functionality > of the

Re: Command to check RAM configuration

2001-01-02 Thread Samuel Flory
Chuck Carson wrote: > > Is their a command in Linux to check the RAM configuration (ie which banks > are used, what size is in each bank, ie) > Also, can you check the temperature of the CPU's, max, min, etc.. Basically > I am ooking for the functionality of the 'prtdiag' command under Solaris >

Re: command to find out my ipaddress?

2000-12-18 Thread John Aldrich
On Wed, 20 Dec 2000, christopher j bottaro wrote: > is there a command to find out my ipaddress? > > thanks...=) > Look into the "ifconfig" command. :-) Just typing "ifconfig " at a command prompt *should* give you the IP address of that interface. However, if you're doing like I do at home, and

RE: command to find out my ipaddress?

2000-12-18 Thread Paul Anderson
ifconfig -a will show you all the interfaces with the IP address. You can get your routing table from netstat -r. Paul Anderson -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of christopher j bottaro Sent: Wednesday, December 20, 2000 2:24 AM To: [EMAIL P

Re: command to find out my ipaddress?

2000-12-18 Thread Bret Hughes
christopher j bottaro wrote: > is there a command to find out my ipaddress? > > thanks...=) > > ___ > Redhat-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/redhat-list /sbin/ifconfig should do it. HTH Bret

Re: command to find out my ipaddress?

2000-12-18 Thread Steven W. Orr
ifconfig -- -Time flies like the wind. Fruit flies like a banana. Stranger things have - -happened but none stranger than this. Does your driver's license say Organ -Donor?Black holes are where God divided by zero. Listen to me! We are all- -individuals! What if this weren't a hypothetical ques

Re: command to find out my ipaddress?

2000-12-18 Thread Steve Kieu
Just type ifconfig is Okay to find --- christopher j bottaro <[EMAIL PROTECTED]> wrote: > is there a command to find out my ipaddress? > > thanks...=) > > > > ___ > Redhat-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/l

Re: command line attachment emailer

2000-08-03 Thread Johnie Stafford
>>> On Thu, 3 Aug 2000 18:00:43 -0400 , Steve Thornhill <[EMAIL PROTECTED]> said: st> I need to email a file as an attachment using a just a st> command line. Does anyone know of a simple smtp mailer st> that can be used from a script? metasend, part of the metamail package, does this.

Re: Command / syntax to be used for installation (OT)

2000-07-25 Thread Stephen Liu
in advance. Stephen - Original Message - From: "Jake McHenry" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 26, 2000 8:03 AM Subject: Re: Command / syntax to be used for installation (OT) > > Get into the same directory as the files, or on the

Re: Command / syntax to be used for installation (OT)

2000-07-25 Thread Steve Arnold
Jake McHenry wrote: > > Get into the same directory as the files, or on the medai, floppy, cdrom, etc.. > > rpm -i gcc-2.95.2-li.src.rpm > rpm -i libstde++-2.10.0-1i.ppc.rpm > > jake > > On Wed, 26 Jul 2000, Stephen Liu wrote: > -- > --Please advise the correct command/syntax for the install

Re: Command / syntax to be used for installation (OT)

2000-07-25 Thread Jake McHenry
Get into the same directory as the files, or on the medai, floppy, cdrom, etc.. rpm -i gcc-2.95.2-li.src.rpm rpm -i libstde++-2.10.0-1i.ppc.rpm jake On Wed, 26 Jul 2000, Stephen Liu wrote: --Hi all people, -- --( Should this posting is " OT " kindly accept my apology first and advise --the

RE: Command line history

2000-06-05 Thread Uncle Meat
On 05-Jun-2000 Ragnar Wiencke opined: > Hi there. > > Is there any way to clear the command line history? And if, has it to be > done for each terminal or user? ~/.bash_history Needs to be erased for each user. Sometimes some errant files end up at the top (/) and contain history created by r

Re: command to keep job running after logout?

2000-05-20 Thread Mikkel L. Ellertson
On Wed, 17 May 2000, John Aldrich wrote: > Folks: > I *think* we've hashed this one out such that there aren't > even any bones left on this dead horse! Can we move on to > other topics, please? > I should think that either the original poster has gotten > this working by now or likely never wil

Re: command to keep job running after logout?

2000-05-19 Thread John Aldrich
Folks: I *think* we've hashed this one out such that there aren't even any bones left on this dead horse! Can we move on to other topics, please? I should think that either the original poster has gotten this working by now or likely never will. Why continue to beat this dead horse? Can't we turn

Re: command to keep job running after logout?

2000-05-18 Thread Nitebirdz
On Tue, 9 May 2000 [EMAIL PROTECTED] wrote: > On Tue, 9 May 2000, Barton Hodges wrote: > > I seem to have forgotten what the command was to keep a job running > > even after I log out of the console... can anyone help? > > >From the bash man page, the format is: > command & > Actually, a

RE: command to keep job running after logout?

2000-05-17 Thread Jon Nichols
I didnt see anyone else answer, so I'll give it a go. nohup (your command here) HTH jon -Original Message- From: Barton Hodges [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, May 09, 2000 9:28 AM To: [EMAIL PROTECTED] Subject:command to keep job running after logout? I seem to

Re: command to keep job running after logout?

2000-05-17 Thread Steve Feehan
On Tue, 9 May 2000, Barton Hodges wrote: > I seem to have forgotten what the command > was to keep a job running even after I log > out of the console... can anyone help? > > Thanks. > See the info page for nohup or at. I generally use at. -- Steve Feehan Phone: 785-53

Re: command to keep job running after logout?

2000-05-17 Thread Anthony E. Greene
Barton Hodges wrote: > > I seem to have forgotten what the command > was to keep a job running even after I log > out of the console... can anyone help? man nohup -- Anthony E. Greene <[EMAIL PROTECTED]> Homepage & PGP Key Linux: The choice of a GNU Generati

Re: command to keep job running after logout?

2000-05-17 Thread Edward Marczak
on 9/5/00 12:28 PM, Barton Hodges shot down the bitstream: > I seem to have forgotten what the command > was to keep a job running even after I log > out of the console... can anyone help? If you put it in the background, it'll keep going. You could also use 'nohup'. I also like to use 'screen

Re: command to keep job running after logout?

2000-05-16 Thread Charles Galpin
try nohup your_command& hth charles On Tue, 9 May 2000, Barton Hodges wrote: > I seem to have forgotten what the command > was to keep a job running even after I log > out of the console... can anyone help? > > Thanks. > > > -- > To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" >

Re: command to keep job running after logout?

2000-05-16 Thread Bret Hughes
I use nohup command & I believe that nohup means don't send hangup signal when logged off and the & sends it to the background so you can do other things while the job runs. You can see the background jobs using the jobs command iirc. Bret Barton Hodges wrote: > I seem to have forgotten what

Re: command to keep job running after logout?

2000-05-16 Thread Brian Schneider
nohup should be the command, I recall using it on more than once. On Tue, 9 May 2000, Barton Hodges wrote: > I seem to have forgotten what the command > was to keep a job running even after I log > out of the console... can anyone help? > > Thanks. > > > -- --

Re: command to keep job running after logout?

2000-05-16 Thread Hidong Kim
'nohup' I launch a job like this to keep it going after logging out: nohup appname < input.file > output.file & Good luck, Hidong Barton Hodges wrote: > > I seem to have forgotten what the command > was to keep a job running even after I log > out of the console... can anyone help? > >

Re: command to keep job running after logout?

2000-05-16 Thread Eric Cifreo
> I seem to have forgotten what the command > was to keep a job running even after I log > out of the console... can anyone help? > > Thanks. > Is 'nohup' what you seek? It's got a man page. Eric Cifreo Austin, TX -- To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Su

Re: command to keep job running after logout?

2000-05-16 Thread Sam Bayne
nohup Barton Hodges wrote: > > I seem to have forgotten what the command > was to keep a job running even after I log > out of the console... can anyone help? > > Thanks. > > -- > To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" > as the Subject. -- -

RE: command to keep job running after logout?

2000-05-15 Thread Burke, Thomas G.
You can always run it in the background by putting an ampersand (&) after it... ie: foo -bar & > -Original Message- > From: Barton Hodges [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, May 09, 2000 12:28 PM > To: [EMAIL PROTECTED] > Subject: command to keep job running after logout?

RE: command to keep job running after logout?

2000-05-15 Thread Mike McNally
You can spin it off with nohup yourcommand & I personally always keep handy a little "detach" program that effectively does the same thing, while also severing your standard IO connections and dropping your control TTY. Here's the source: #include #include #include #include main(int

Re: command to keep job running after logout?

2000-05-15 Thread Ahbaid Gaffoor
Hi Barton, try: nohup your_command_or_script & regards, Ahbaid. Barton Hodges wrote: > I seem to have forgotten what the command > was to keep a job running even after I log > out of the console... can anyone help? > > Thanks. > > -- > To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe

Re: command to keep job running after logout?

2000-05-14 Thread Pete Peterson
Are you thinking of "nohup"? Try "man nohup" for brief explanation or "info nohup" for slightly more elaboration. Basically, you incant: nohup COMMAND ARGS & and any tty output goes to 'nohup.out'. pete > Date: Tue, 09 May 2000 11:28:00 -0500 > From: Barton Hodges <[EMAIL PROTECTE

Re: command to keep job running after logout?

2000-05-13 Thread Tom Gilbert
* Barton Hodges ([EMAIL PROTECTED]) wrote: > I seem to have forgotten what the command > was to keep a job running even after I log > out of the console... can anyone help? man nohup Tom. -- .--. .^. | Tom Gilbert, England

Re: command to keep job running after logout?

2000-05-13 Thread rpjday
On Tue, 9 May 2000, Barton Hodges wrote: > I seem to have forgotten what the command > was to keep a job running even after I log > out of the console... can anyone help? > nohup. rday -- To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Subject.

Re: command to keep job running after logout?

2000-05-13 Thread fred smith
On Tue, May 09, 2000 at 11:28:00AM -0500, Barton Hodges wrote: > I seem to have forgotten what the command > was to keep a job running even after I log > out of the console... can anyone help? > > Thanks. nohup And if for some reason that won't work for you (I've seen occasional cases w

Re: command to keep job running after logout?

2000-05-12 Thread Bill Carlson
On Tue, 9 May 2000, Barton Hodges wrote: > I seem to have forgotten what the command > was to keep a job running even after I log > out of the console... can anyone help? > > Thanks. > > > -- > To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" > as the Subject. > nohup is the command

Re: Command line questions

2000-04-21 Thread Danny
To test whether is running type ps -gax |grep smbd On Fri, 21 Apr 2000, Morse wrote: > While in X the command window remembers commands from one session to the > next...in DOS this is called doskey but what is it called in Linux? > Is there a way to output all stored commands to a text file

Re: Command line questions

2000-04-21 Thread Anthony E. Greene
At 01:04 2000-04-21 -0700, Morse wrote: >While in X the command window remembers commands from one session to the >next...in DOS this is called doskey but what is it called in Linux? readline >Is there a way to output all stored commands to a text file ? By default, they're stored in ~/.bash_h

Re: Command line questions

2000-04-21 Thread Charles Galpin
or you can do /etc/rc.d/init.d/smb status charles On Fri, 21 Apr 2000, Hidong Kim wrote: > > > > I know how to test a smb.cnf file = testparm > > but how do I check to see if samba is running ? > > You can do 'ps aux' to see if the smbd process is running. Or you can > do: ps aux | awk '$11

Re: Command line questions

2000-04-21 Thread Hidong Kim
Morse wrote: > > While in X the command window remembers commands from one session to the > next...in DOS this is called doskey but what is it called in Linux? > Is there a way to output all stored commands to a text file ? The .bash_history in your home directory might be what you're looking fo

Re: command line email command

1999-11-09 Thread sparsi
man mail" for more info Benjamin Jackson <[EMAIL PROTECTED]> on 11/09/99 12:02:45 PM Please respond to [EMAIL PROTECTED] To: Jason Wilson <[EMAIL PROTECTED]> cc: [EMAIL PROTECTED] Subject: Re: command line email command Try: echo '' | mail like echo &

Re: command line email command

1999-11-09 Thread Steven Hildreth
If you are wanting to include a text file inline then use this command   'cat {filename} | mail -s "Subject" [EMAIL PROTECTED]'   If you are wanting to attach a file, say something that is not text then use this command:   'uuencode {original_filename} {uuencoded_filename} | mail -s "Subject"

Re: command line email command

1999-11-09 Thread Brad 'GreyBear' Davis
From: Michael J. McGillick <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 09, 1999 1:57 PM Subject: Re: command line email command > Jason: > > Try: > >cat | mail [EMAIL PROTECTED] > > - Mike > > On Tue, 9 Nov 1999, Jason Wilson wr

Re: command line email command

1999-11-09 Thread Benjamin Jackson
Try: echo '' | mail like echo 'Hi Ben' | mail [EMAIL PROTECTED] ah... pipe... a SysAdmins true friend Ben Jackson - [EMAIL PROTECTED] - http://www.esgeroth.org/~zaphod -BEGIN GEEK CODE BLOCK- Version 3.12 GAT d- s+:++ a19 C$ UL P++ L++$ E-- W+++ N++ o+ K++ w+

  1   2   >