Grokbase
Topics Posts Groups | in
x
[ help ]

Bill Campbell (c...@celestial.com)

Profile | Posts (19)

User Information

Display Name:Bill Campbell
Partial Email Address:c...@celestial.com
Posts:
19 total
19 in CentOS

5 Most Recent

All Posts
1) Bill Campbell Re: [CentOS] Terminal emulation scripting
| +1 vote
Many systems don't allow telnet connections because of security issues, using ssh (secure shell...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
On Wed, Nov 12, 2008, Frank M. Ramaekers wrote:
>I need to write a script that will contact a remote system using TELNET
>with VT52/1xx/2xx/320 and perform some operations. I am familiar with
>TELNET but it appears that it won't work for my purposes.

Many systems don't allow telnet connections because of security
issues, using ssh (secure shell instead).

If the issue is dealing with programs on the remote system that
are designed for interactive use, this is difficult to do
reliably although not impossible using ``expect'' via some kind of
remote connection, ssh, telnet, etc. (I was running Tandy's Xenix
accounting applications on a Tandy Model 16 24 years ago using
nothing but input and output redirection from the shell, but that
was not pretty :-).

The ``expect'' program is built around ``tcl'' scripting, but
there are perl and python modules that work reasonably well too.

Bill
--
INTERNET: [email protected: b...@celestial.com] Bill Campbell; Celestial Software LLC
URL: http://www.celestial.com/ PO Box 820; 6641 E. Mercer Way
Voice:          (206) 236-1676  Mercer Island, WA 98040-0820
Fax:            (206) 232-9186

Many citizens because of their respect for what only appears to be a law
are cunningly coerced into waiving their rights due to ignorance.
    -- U.S. v. Minker
_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
2) Bill Campbell Re: [CentOS] Delete all mail users data (mail server)
| +1 vote
A somewhat more sophisticated approach might be to clean out old files using find. This would...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
On Mon, Oct 20, 2008, mouss wrote:
>Roberto Pereyra a écrit :
>> Hi
>>
>> Please I would like to delete all users date mail (not accounts) in my
>> mail server box.
>>
>> I using Centos 5 and Virtualmin with postifx (maildir) and dovecot and
>> sasl auth.
>>
>> Once I erased simply the files in the maildir folders and broke the
>> dovecot setup (dovecot cache or index).
>>
>> Which is the correct way of doing it?
>>
>
>
>delete files from cur/ and new/ subdirs is enough. deleting index files
>is good but dovecot will regenerate them anyway.

A somewhat more sophisticated approach might be to clean out old
files using find.  This would remove everything over 30 days old
from username's Maildir.

find ~usrname/Maildir/ -type f -mtime +30 | xargs rm

Bill
--
INTERNET: [email protected: b...@celestial.com] Bill Campbell; Celestial Software LLC
URL: http://www.celestial.com/ PO Box 820; 6641 E. Mercer Way
Voice:          (206) 236-1676  Mercer Island, WA 98040-0820
Fax:            (206) 232-9186

The pinnacle of open systems is: when moving from vendor to vendor, the
design flaws stay the same.
_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
3) Bill Campbell Re: [CentOS] -bash: /bin/grep: cannot execute binary file
| +1 vote
This could well mean that your system has been cracked. These programs are frequently changed in...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
On Sat, Oct 18, 2008, Semih Gokalp wrote:
>
>   Hi all,I have problem on CentOS 5.2
> while everything is working great,suddenly i have this error when i
>   login my server,

This could well mean that your system has been cracked.  These
programs are frequently changed in common root exploits.  You can
run ``rpm -V packagename'' to check for package corruption:

The command ``rpm -qf /bin/egrep'' will show the package name to
which /bin/egrep belongs.  A lazy way to handle this is:

rpm -V `rpm -qf /bin/egrep`
rpm -V `rpm -qf /bin/hostname`

The most common reason these programs don't run after a root
exploit is that the cracker has replaced them with binaries from
another distribution and the binaries are looking for shared
libraries that are not on the cracked system.

Bill
--
INTERNET: [email protected: b...@celestial.com] Bill Campbell; Celestial Software LLC
URL: http://www.celestial.com/ PO Box 820; 6641 E. Mercer Way
Voice:          (206) 236-1676  Mercer Island, WA 98040-0820
Fax:            (206) 232-9186

"I do not feel obliged to believe that the same God who has endowed us
with sense, reason, and intellect has intended us to forego their use."
    -- Galileo Galilei
_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
4) Bill Campbell Re: [CentOS] new list proposal
| +1 vote
I am against splitting, and support a fairly large number of machines here, and at our customer...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
On Fri, Oct 17, 2008, Spiro Harvey wrote:
>> > Given the overall poor reception of the idea, I'd just put it on
>> > the back burner for now...
>> yes, thats sounding like a good idea for the time being.
>
>I don't think it is a good idea. I think that we need two separate
>lists. One for general users, one for server sysadmins.
>
>What we don't know from all the people against splitting the
>list is in what capacity they are using CentOS. Are they desktop users?
>Are they running their own home network? Are they small-time sysadmins?
>Are they managing a Tier 1 ISP?

I am against splitting, and support a fairly large number of machines here,
and at our customer sites.  Our customers range from small businesses with
fewer than a single Linux box and fewer than a dozen users to regional ISPs
with thousands of clients.

I subscribe to about 30 Mailman lists based on the number of monthly
reminder notices sitting in my postmaster mail folder here, and we host a
small number of Mailman lists as well.

I answer more questions on lists like this than I ask, and have been doing
similar e-mail and usenet stuff since the mid '80s when I was a
co-moderator on several COMPUSERVE *nix related lists.

FWIW, I have been supporting, integrating, and adminstering *nix systems
for 26 years, and Linux systems since 1995 or so starting with Caldera,
then SuSE, and now CentOS with a smattering of other Linux systems,
FreeBSD, etc. just to make life interesting.

As I said before, I scan the subjects of new threaded messages looking for
things that look interesting, deleting far more than I read (hint to
newbies -- make subjects meaninful, not just ``help'').

Bill
--
INTERNET: [email protected: b...@celestial.com] Bill Campbell; Celestial Software LLC
URL: http://www.celestial.com/ PO Box 820; 6641 E. Mercer Way
Voice:          (206) 236-1676  Mercer Island, WA 98040-0820
Fax:            (206) 232-9186

A fake fortuneteller can be tolerated.  But an authentic soothsayer should
be shot on sight.  Cassandra did not get half the kicking around she deserved.
    -- R.A. Heinlein
_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos
5) Bill Campbell Re: [CentOS] new list proposal
| +1 vote
Personally I prefer the more general lists rather than splitting off into a bunch of more specific...
CentOS
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
On Wed, Oct 15, 2008, Frank Cox wrote:
>On Wed, 15 Oct 2008 22:52:44 +0100
>Karanbir Singh <mail-lists@karan.org> wrote:
>
>> And to better cater to these conversations, as well as further encourage
>> such content, we'd like to propose creating a 'centos-tech' list.
>
>Sounds like a whale of a plan.

Personally I prefer the more general lists rather than splitting
off into a bunch of more specific ones.  I often learn things by
reading messages that I would see on more targeted lists.  The
more general lists also seem more likely to engender a feeling of
community (the linux-sxs.org nee Caldera list is a case in point).

Perhaps my viewpoint is a bit skewed since I use an e-mail
program, mutt, that makes it very easy to see articles by thread,
and to delete everything in a thread with a single ctrl-D.  I
use Thunderbird on occassion to read messages where I know they
are likely to be HTML and have long links to click, but GUIs are
far too slow and cumbersome to deal with hundreds of messages a
day, particularly in my postmaster and security folders which may
go to thousands of messages in the morning.

Bill
--
INTERNET: [email protected: b...@celestial.com] Bill Campbell; Celestial Software LLC
URL: http://www.celestial.com/ PO Box 820; 6641 E. Mercer Way
Voice:          (206) 236-1676  Mercer Island, WA 98040-0820
Fax:            (206) 232-9186

A fake fortuneteller can be tolerated.  But an authentic soothsayer should
be shot on sight.  Cassandra did not get half the kicking around she deserved.
    -- R.A. Heinlein
_______________________________________________
CentOS mailing list
[email protected: C...@centos.org]
http://lists.centos.org/mailman/listinfo/centos

spacer
Profile | Posts (19)
Home > People > Bill Campbell