Search Results

Search: Posts Made By: s93366
Forum: Red Hat 09-18-2009
5,831
Posted By s93366
First you need to configure sendmail to route...
First you need to configure sendmail to route mails to your exchange server (SMTP)

Modify /etc/mail/sendmail.cf
modify the line starting with DS to

DSmymailserver.mydomain.com


restart...
7,579
Posted By s93366
I have worked a lot with NetApp filers and Oracle...
I have worked a lot with NetApp filers and Oracle databases on Solaris.

With NFS and a 1gbit etherenet connection you should be able to reach around 50-90MB / sec in sequential reads/writes.
...
Forum: Linux 07-03-2009
7,668
Posted By s93366
You could also replace the standard syslogd with...
You could also replace the standard syslogd with syslog-ng if you need to filter.
6,715
Posted By s93366
#!/bin/bash for i in `ls $1` do if [ `echo...
#!/bin/bash
for i in `ls $1`
do
if [ `echo -n $i|wc --char` -eq 3 ]
then
echo $i
fi
done
6,326
Posted By s93366
#!/bin/bash line1="hello1" line2="hello1" ...
#!/bin/bash

line1="hello1"
line2="hello1"

if [ "$line1" = "$line2" ]
then
echo match

else

echo not a match

fi
4,233
Posted By s93366
make sure you are in the correct directory before...
make sure you are in the correct directory before issuing the command:

rm -rf *

will remove all files and directories.

use with care!!!
Forum: Solaris 12-19-2008
7,322
Posted By s93366
try the dtrace toolkit
try the dtrace toolkit
Forum: Ubuntu 12-18-2008
46,702
Posted By s93366
a basic unix daemon does the following: fork...
a basic unix daemon does the following:

fork
close all filedescriptors (stdout,stderr, etc)
chdir /
signal handeling (sighup, sigterm etc)
while
do stuff
sleep(xx)
done

(example in C: ...
Forum: Linux 11-25-2008
16,930
Posted By s93366
it might be that linux uses free memory for...
it might be that linux uses free memory for caches (it fills up as the server runs).

example:

# free -m

total used free shared buffers cached
Mem: ...
Forum: UNIX and Linux Applications 11-19-2008
3,054
Posted By s93366
check the diff command
check the diff command
3,331
Posted By s93366
if [ "`ssh boxB 'ping 172.1.1.1'`" ]; then.... ...
if [ "`ssh boxB 'ping 172.1.1.1'`" ]; then....

The problem is that when using ` xxx ` you will substitue that with the return of the command...

so when this is executed your code will look like...
4,126
Posted By s93366
select=$1 if [ "$select" = "" ] then ...
select=$1

if [ "$select" = "" ]
then

echo "1) first option"
echo ""
echo "2) second option"
echo ""
echo "*) please enter the correct option"

read select
fi

case $select in
1)...
1,409
Posted By s93366
well im no csh expert but this will do the trick ...
well im no csh expert but this will do the trick


#!/bin/csh

if ( $#argv <= 1 ) then
echo Usage: 2 parameters are required
exit 1
endif

echo $#argv numbers were entered

set...
Forum: Gentoo 10-23-2008
11,090
Posted By s93366
If its a redhat clone you can use kickstart ...
If its a redhat clone you can use kickstart

How to Install Red Hat Linux via PXE and Kickstart (http://www.stanford.edu/~alfw/PXE-Kickstart/PXE-Kickstart.html)
2,245
Posted By s93366
why cant you change to another com port in putty....
why cant you change to another com port in putty.
connection->Serial->serial line to connect to
1,475
Posted By s93366
try type bin before you use the get command. ...
try type bin before you use the get command.

It might be that the file gets downloaded as a textfile and not a binary file

/peter
2,094
Posted By s93366
example: echo "1 2 3 4 5" |tr -d [:SPACE:] ...
example:

echo "1 2 3 4 5" |tr -d [:SPACE:]


will do the trick

/peter
2,359
Posted By s93366
it seems the -f option is not supported in the...
it seems the -f option is not supported in the Solaris time command. You could try and download the GNU version and make sure the script uses it

or you could make a uname and some if statements to...
Forum: Solaris 05-20-2008
4
3,728
Posted By s93366
on the clients you may also look at options like...
on the clients you may also look at options like rsize, wsize and directio (for certain applications) on the client side

check the man pages.

/peter
Forum: Solaris 03-17-2008
2,933
Posted By s93366
When compiling things you could run in to all...
When compiling things you could run in to all kind of problems that can take much time to solve if your not experienced with compiling things on Solaris.

Its much easier to try and download what...
Forum: Solaris 03-17-2008
8,547
Posted By s93366
It seems ok, but since this is posted in the...
It seems ok, but since this is posted in the solaris forums you could be running Solaris 10 wich uses a different method for controling inetd.

inetadm is the command to use

(check the syntax...
Forum: Solaris 02-27-2008
3,517
Posted By s93366
The book Solaris Internals is a good start.
The book Solaris Internals is a good start.
2,448
Posted By s93366
I would recommend that you install Linux...
I would recommend that you install Linux (OpenSUSE, Fedora, debian or someother well known distrubtion)
They all have lots of drivers for diffrent hardware so it shouldnt be a problem with your...
7,871
Posted By s93366
There are many UNIX operatingsystems of diferent...
There are many UNIX operatingsystems of diferent flavors, they all have diffrent hardware requirments

For example,

Solaris runs on SPARC and X86
HP-UX runs on PA-RISC and Itanium
IBM AIX runs...
Forum: Solaris 02-18-2008
4,003
Posted By s93366
Checkout the growfs command I have never...
Checkout the growfs command

I have never used it.... :)

I would recommend you to backup all your data before trying it..

/Peter
Showing results 1 to 25 of 166

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