Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ST
  • Order by date
  1. ST

    SendMail Deployment Exercise

    What do want to test? Your local sendmail configuration or a central mail hub?<br> <br> The first you can do locally (in debug mode), for the second you can choose one of the machines as your central mail hub and tell him that he shall deliver all mails to a local user (as a trashcan).<br> <br>...
  2. ST

    Can't ping

    What have you already installed? All? Or only the basics? Is the firewall set up?<br> <br> Depending on that there are several possibilities:<br> e.g.<br> - the nic driver<br> - ip-adress, netmask<br> - routing, default gateway<br> - firewall rules<br> - masquerading<br> <br> As darkstar has...
  3. ST

    Urgent Stripping comments from a file (awk)

    Try this:<br> <br> awk 'BEGIN { FS = "#" }<br> { print $1 }' inputfile &gt; output file<br> <br>
  4. ST

    Tape Size in Unix

    Look at your tape or its cover. There should be an information about the capacity of the medium. The compression rate you can draw from the kind of tape drive (DAT, DLT, AIT,...) and the model.
  5. ST

    awk example - conditional print

    awk '$2 == "Date" { print " " $1,$2} <br> $2 != "Date" { print $1} ' $FILE<br> <br> or<br> <br> awk '$2 == "Date" { printf " %s %s\n",$1,$2}<br> $2 != "Date" { printf "%s\n",$1} ' $FILE
  6. ST

    Telnet as root

    Remark:<br> With telnet/rlogin your plain password will be transmitted over the network. So take ssh (secure shell)<br> <br> But to your question:<br> Depending on your distribution<br> <br> SuSE: rc.config -&gt; ROOT_LOGIN_REMOTE<br> RedHat: ?<br> <br> and eventually you have to edit in...

Part and Inventory Search

Back
Top