Search Results

Search: Posts Made By: pludi
12,628
Posted By pludi
It's fixed. Basically, what a consultant told us...
It's fixed. Basically, what a consultant told us was that we were lucky it did even last that long, as both the configuration for dm-multipath and the EMC storage were off. I don't know what exactly...
Forum: Linux 06-21-2012
21,581
Posted By pludi
chander: Yes, vmnet0 is already set to briged,...
chander: Yes, vmnet0 is already set to briged, but your VM isn't using vmnet0 but vmnet8. Change the settings for the virtual NIC (not for the network) and try again.
Forum: What is on Your Mind? 06-10-2012
3,638
Posted By pludi
Taken from #protolol...
Taken from #protolol (http://attrition.org/misc/ee/protolol.txt)
Forum: What is on Your Mind? 06-10-2012
1,161
Posted By pludi
Destroy All Software on strange language behaviour
I'll just leave this here (https://www.destroyallsoftware.com/talks/wat)
1,300
Posted By pludi
This should do it: #!/usr/bin/perl -w use...
This should do it:
#!/usr/bin/perl -w

use strict;
use warnings;

while ( my $line = <> ) {
chomp $line;
my ( $key, $value ) = ( $line =~ /^(.*?)=(.*)$/g );
my %hash = map { $_...
2,886
Posted By pludi
The link itkamaraj posted works. Yours doesn't...
The link itkamaraj posted works. Yours doesn't because you used the shortened version. If Youtube is blocked, here (https://www.unix.com/misc.php?do=bbcode#code)'s the description of the tag.
Forum: HP-UX 03-09-2012
2,483
Posted By pludi
Download the matching depot here...
Download the matching depot here (http://hpux.connect.org.uk/hppd/hpux/Gnu/findutils-4.4.2/)
Use sam to install.
Forum: Red Hat 03-09-2012
7,153
Posted By pludi
Oh, that's easy. dm-0 corresponds to the logical...
Oh, that's easy. dm-0 corresponds to the logical volume VolGroup00-LogVol00. Since you have only one disk, and only one VG, it's the internal disk.
Forum: AIX 03-08-2012
1,731
Posted By pludi
No. AIX only runs on PowerPC hardware. And even...
No. AIX only runs on PowerPC hardware. And even if it could run on Intel-compatible hardware you'd still need a license to run it as there's no free/student version available.
4,420
Posted By pludi
It's pretty simple with sed:$ cat test.txt Line...
It's pretty simple with sed:$ cat test.txt
Line 1
Line 2
Line 3
Line 4
Line 5
$ sed -ne '3,$p' test.txt
Line 3
Line 4
Line 5
12,922
Posted By pludi
mv *20120308* is translated by the shell (in your...
mv *20120308* is translated by the shell (in your case) to mv XXX_20120308.tar.Z XXX_20120308_COMPLETE due to shell expansion. So the .Z file is moved/renamed to XXX_20120308_COMPLETE, overwriting...
10,450
Posted By pludi
There's a neat little trick the shell allows you...
There's a neat little trick the shell allows you to use. Compare these 2 runs:
$ var=foo
$ cat << EOF
> echo $var
> EOF
echo foo
$ cat << 'EOF'
> echo $var
> EOF
echo $var
Forum: Solaris 03-06-2012
3,418
Posted By pludi
Your machine probably doesn't have a reverse DNS...
Your machine probably doesn't have a reverse DNS record, and OpenSSH by default checks for such a record. Add the lineUseDNS no anywhere in your sshd_config, reload the daemon, and it should work...
8,822
Posted By pludi
Let me guess, you just started at a new job. My...
Let me guess, you just started at a new job. My first idea as your boss would be to test how much of your resume is true, and how you handle new situations. So I'm going to ask you to do a job while...
Forum: HP-UX 11-24-2011
8,937
Posted By pludi
Because if you run any command through -exec the...
Because if you run any command through -exec the files names are passed along one by one. So you're not doing ls -lrt *.tap, but ls -lrt ./ICTCDMOZ01AGOUT0280620111102151703.tap
ls -lrt...
Forum: Linux 11-24-2011
1,380
Posted By pludi
Do not post classroom or homework problems in the...
Do not post classroom or homework problems in the main forums. Homework and coursework questions can only be posted in this forum (https://www.unix.com/homework-coursework-questions/) under special...
Forum: IP Networking 11-23-2011
1,590
Posted By pludi
Some information you might need: I'd be very...
Some information you might need:
I'd be very interested to see where exactly you saw any suggestion in my post.
I won't "reply asap" since I don't have any special motivation for that. We're...
2,362
Posted By pludi
It's a simple typo: you declare and use void...
It's a simple typo: you declare and use void Output(int,int,int);, but defined is void Ouput(int nGround, int nPower, int nDecimal)
13,823
Posted By pludi
First of all: what OS, what shell, ... Second:...
First of all: what OS, what shell, ...
Second: how about putting the line in a script?
1,694
Posted By pludi
From man crontab: Read: specifying both a...
From man crontab:

Read: specifying both a date & a day of the week means the job will run on both occasions.
Forum: Linux 11-18-2011
10,188
Posted By pludi
print really can't be found on most Linux...
print really can't be found on most Linux machines. An alternative would be rewriting that line to use printf or echo. Same with compress, the replacement would be gzip or bzip2.

And that you...
Forum: Linux 11-02-2011
3,390
Posted By pludi
Well, there's your problem. Your network isn't...
Well, there's your problem. Your network isn't defined, so the machine can't connect to anywhere. And even if it could, your resolv.conf is empty, so it wouldn't know about any DNS servers for name...
Forum: IP Networking 10-13-2011
3,562
Posted By pludi
As always: it depends. If your clients get their...
As always: it depends. If your clients get their network information (IP address, routes, nameservers) through DHCP it's a setting that has to be changed on the DHCP server, and will become active as...
1,287
Posted By pludi
Funny you should ask, given that there's a Wiki...
Funny you should ask, given that there's a Wiki entry at samba.org (http://wiki.samba.org/index.php/Samba_&_Active_Directory) describing AD integration.
6,450
Posted By pludi
I think he means "compare to remote, but don't...
I think he means "compare to remote, but don't copy the files over". In that case, use the --only-write-batch option of rsync, in addition to any other options. It will create 2 files, a shell script...
Showing results 1 to 25 of 291

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