Sponsored Content
The Lounge What is on Your Mind? Does your spouse nag you while you passionately code? Post 302905738 by rbatte1 on Friday 13th of June 2014 12:23:54 PM
Old 06-13-2014
A few more thoughts:-
  • Make sure your server does not get a BAUD error
  • Dongles may fix BAUD errors when the server is idle
  • A larger disk is only as good as what you can use it for
  • Your server may have persistent memory for storing critical errors
  • When selecting a server, some have a black box as standard. Check for compatibility with peripherals
  • Incorrect access requests can lead to permanent lock-out
  • Regretting lost features of a previous version could cause the current server terminate processes
  • Security policies are like contraception - no one likes the constraints, but it's too late and very costly if you are caught out

Smilie
 

We Also Found This Discussion For You

1. Shell Programming and Scripting

Block of code replacement in Java source code through Unix script

Hi, I want to remove the following code from Source files (or replace the code with empty.) from all the source files in given directory. finally { if (null != hibernateSession && hibernateSession.isOpen()) { //hibernateSession.close(); } } It would be great if the script has... (2 Replies)
Discussion started by: hareeshram
2 Replies
Errno(3pm)						 Perl Programmers Reference Guide						Errno(3pm)

NAME
Errno - System errno constants SYNOPSIS
use Errno qw(EINTR EIO :POSIX); DESCRIPTION
"Errno" defines and conditionally exports all the error constants defined in your system "errno.h" include file. It has a single export tag, ":POSIX", which will export all POSIX defined error numbers. "Errno" also makes "%!" magic such that each element of "%!" has a non-zero value only if $! is set to that value. For example: use Errno; unless (open(FH, "/fangorn/spouse")) { if ($!{ENOENT}) { warn "Get a wife! "; } else { warn "This path is barred: $!"; } } If a specified constant "EFOO" does not exist on the system, $!{EFOO} returns "". You may use "exists $!{EFOO}" to check whether the constant is available on the system. CAVEATS
Importing a particular constant may not be very portable, because the import will fail on platforms that do not have that constant. A more portable way to set $! to a valid value is to use: if (exists &Errno::EFOO) { $! = &Errno::EFOO; } AUTHOR
Graham Barr <gbarr@pobox.com> COPYRIGHT
Copyright (c) 1997-8 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.16.2 2013-08-25 Errno(3pm)
All times are GMT -4. The time now is 10:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy