/etc/fstab shows the partitions that are mounted at boot
Another way of querying partitions is to issue a df command...
# df -a
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/hdb2 12096756 8790924 2691348 77% /
none 0 0...
From 'The Camel'...
$@ is the error message from the last eval command.
$< is the real user id of the process that is the perl script that contains it.
$* is an old (deprecated) switch that tells perl whether or not to assume a string is a single line.
I'm not what $** could possibly mean...
You should be able to put the files wherever you want and then add the directory to your search path using 'use lib'
e.g.
#!/usr/bin/perl -w
use strict;
use lib('/path/to/modules');
use module;
...
HTH
:)
I'm not a Python programmer but it looks to me like that permission was denied to write. Check the permissions on the directory where the temporary file is being created.
HTH
:)
Have you looked into VNC? I think that should do what you want...
There are loads of implementations out there (do a search for vnc on freshmeat) but I use the default one shipped with RH and it works a treat.
Good Luck
-Scott
Hi,
A sanity check: Have you made sure the second HD is configured as a slave (probably jumpers)?
I know this is obvious but it's something I've forgotten to do b4 :o)
Good Luck
--
Scott
In the line of your script that issues the command to pgpe i think the syntax is wrong, you need the -r flag before the recipient...I think it should be:
$pid = open2(\*Reader, \*Writer, "/usr/local/bin/pgpe -ar $encryptedRecipient");
Good Luck
--
Scott
In answer to your first question, the following should do the trick (untested)...
<xsl:for-each select="Messages/Message">
<tr>
<xsl:attribute name="color">
<xsl:choose>
<xsl:when test="text/text()='private'">
red
</xsl:when>...
Hi Folks,
I'm finally getting myself a second machine :oD and would like to setup a home network with 2 machines.
Here's the general outline of what I've got planned: My new machine will be my workhorse, it'll be running Linux (probably RH7.1), I'm a web-developer/programmer by trade (java...
In addition to the above you should also consider jsp's if you need something that's a bit more powerful although the learning curve is a bit steeper.
-Scott
First off PGP can lull you into a false sense of security if you do not completely understand the principles involved so I'd advise reading the pdf docs that came with your PGP freeware (they are a bit long-winded I know)...
* Must my dad have PGP installed to receive encrypted email?
Yes most...
In answer to Q1...
I'ts not usually neccessary to install X on a dedicated server mainly because it's a bit of a resource hog and you can do everything you need to without it. Although the set-up you mentioned would be more than adeqaute to handle it.
If you are remotely administering the...
The easiest way to do this is use the CPAN module. I'm not sure if there are any differences using windows but for Linux type:
perl -MCPAN -e shell
and then at the new prompt...
install Bundle::LWP
and then...
quit
...when it's done. It should sort out all the dependancies and install all...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.