Search Results

Search: Posts Made By: indiana_tas
Forum: Red Hat 03-11-2015
1,591
Posted By indiana_tas
I figured out what was preventing TLS from...
I figured out what was preventing TLS from starting. In the access file you can also enable or disable TLS via the Srv_Features options [1]. There are four options, with the S/s being the one for...
Forum: Red Hat 03-06-2015
1,591
Posted By indiana_tas
STARTTLS not being offered
STARTTLS is not being offered by sendmail when I telnet to the local port on the localhost. STARTTLS is compiled into sendmail. I have valid certificates, pointed to in the .mc file, built to a .cf...
Forum: Red Hat 08-08-2011
8,562
Posted By indiana_tas
Yum caches consuming /var after 5.7 update
Hi. We have several hundred servers that recently received the Red Hat Enterprise Linux 5.7 update. One of the differences we noticed is that the yum caches are consuming more space than they were...
24,407
Posted By indiana_tas
Thank you.
Thank you.
3,356
Posted By indiana_tas
Personally, I would use the stat function to get...
Personally, I would use the stat function to get the file date and store it into an array. Then you should be able to evaluate the newer files against the current time.

@filedata=stat($filename);...
38,801
Posted By indiana_tas
Use the -e flag with the echo command, which I...
Use the -e flag with the echo command, which I believe means 'evaluate expressions'. So try:

echo -e $someVar
OR
echo -e "$someVar"
24,407
Posted By indiana_tas
Regular expression matching in BASH (equivalent of =~ in Perl)
In Perl I can write a condition that evaluates a match expression like this:

if ($foo =~ /^bar/) {
do blah blah blah
}

How do I write this in shell? What I need to know is what operator do...
Forum: Red Hat 03-23-2009
23,220
Posted By indiana_tas
Makes sense. Glad things worked out.
Makes sense. Glad things worked out.
Forum: Red Hat 03-18-2009
4,165
Posted By indiana_tas
You can create the .cshrc file yourself, it won't...
You can create the .cshrc file yourself, it won't be there by default (in most cases). A quick search on Google should help you customize the environment. I'm not real familiar with C shell.
Forum: Red Hat 03-18-2009
23,220
Posted By indiana_tas
My initial thought is to check the permissions?...
My initial thought is to check the permissions? Did you edit the files as root? Does root write to those files, or is it another user? This could be the problem.
Forum: Red Hat 03-18-2009
20,078
Posted By indiana_tas
If you mean you want to know how much space it is...
If you mean you want to know how much space it is occupying, then:

du -s ~

If you want to know what the quota limits are, then maybe you can use the quota command, but I'm not sure. You might...
Forum: Red Hat 03-18-2009
12,098
Posted By indiana_tas
The DNS server will translate the name to an IP....
The DNS server will translate the name to an IP. So you probably need to contact your DNS admin. Are any name lookups working? Can you even ping the DNS server? When you run nslookup <hostname>, what...
Forum: AIX 03-04-2009
6,934
Posted By indiana_tas
Typically you would edit /etc/ssh/sshd_config for...
Typically you would edit /etc/ssh/sshd_config for OpenSSH configuration. Even the OpenSSH page lists the man page for sshd_config which confirms this is the default location, Manual Pages:...
Forum: AIX 02-09-2009
47,212
Posted By indiana_tas
I think this goes back to what was said earlier....
I think this goes back to what was said earlier. UNIX identifies the user by the UID, not the name. So if root2 is operating under UID 0, then it will still be seen as 'root' by the receiving system...
Forum: AIX 01-20-2009
11,483
Posted By indiana_tas
So, the user could have edited the file as root?...
So, the user could have edited the file as root? Or would he/she have done so as him/herself? My initial thought is that you could run a find on all files modified since last week...

find...
Forum: AIX 01-07-2009
40,538
Posted By indiana_tas
Show number of SSH connections
I'm investigating an issue where rsync's to an AIX server will sometimes fail. I suspect the problem might be due to the number of simultaneous SSH connections being made to the host dropping the...
Forum: AIX 01-07-2009
33,157
Posted By indiana_tas
What you want to do is run the following command...
What you want to do is run the following command to view the /etc/security/failedlogin file:

who /etc/security/failedlogin

It may run for a while if your log file is large. I'm not sure how to...
183,559
Posted By indiana_tas
Also, someone mentioned the korn shell...
Also, someone mentioned the korn shell autocompletion tip "\" + "=" and that lists the matches to the given pattern in a numbered list. Can you recall the match by the given number?

/# ls...
183,559
Posted By indiana_tas
I have used bash the longest since it is standard...
I have used bash the longest since it is standard on RHEL and Mac OS X. I like it because it is intuitive and behaves identically on all of the systems I have used it on. But recently I stepped into...
Forum: AIX 12-22-2008
7,126
Posted By indiana_tas
For one-time job submissions, you want to use the...
For one-time job submissions, you want to use the at command. See the at man page for correct syntax, but basically...

at <time>
<command>
CTRL+D

It can be as simple as...

$ at 1100
ls...
Showing results 1 to 20 of 20

 
All times are GMT -4. The time now is 04:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy