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
for.

> 
> 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 ~ /smb/ { print $0 }'.  This will cut to the chase
and save you from having to sift through a whole bunch of other
processes.  Good luck,



Hidong

> 
> thanks
> morse
> 
> --
> To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
> as the Subject.


-- 
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.

Reply via email to