[SOLVED] DDD Newbie Setup Issue


 
Thread Tools Search this Thread
Top Forums Programming [SOLVED] DDD Newbie Setup Issue
# 8  
Old 10-01-2012
Very useful to know. Thanks for posting the solution.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Web Development

Website RTO. What monitoring can I setup and how to track issue?

Hello, I have installed a WordPress theme on Cantos and brought up a website on AWS. I have added that website on Cloudflare. While I was working on webpage development, I noticed that sometimes website is unreachable. In 8 hours, I noticed it 2-3 times and after few seconds, it would come back... (1 Reply)
Discussion started by: solaris_1977
1 Replies

2. UNIX for Advanced & Expert Users

Issue setup Transparent proxy and Gateway using Squid on CentOS 7

Hello, We are migrating our gateways from CentOS 6 to CentOS 7 and for setting up a transparent proxy using squid and Firewalld i am using below configuration. #Firewalld configurations firewall-cmd --permanent --zone=public --add-forward-port=port=80:proto=tcp:toport=3128:toaddr=LAN_IP... (4 Replies)
Discussion started by: sunnysthakur
4 Replies

3. Shell Programming and Scripting

[Solved] Issue with grep

Hi everyone I am trying to write a script to check if file systems are mounted, and also validate the permission; then do a whole bunch of other things. I am facing a problem with grep. For example, if the mountpoints are: /dev/XYZ_lv /abc/XYZ jfs2 Nov 25 20:36... (4 Replies)
Discussion started by: nimo
4 Replies

4. Solaris

Public private key setup issue in Solaris 10

Hi i am using solaris 10.I am trying to setup a public/private key but it is not working.Appreciate your repsonse on it There are two servers DB1 server and DB2 server. 1)I have generated public/private key using below step on both servers. ssh-keygen -t rsa 2)From DB1 server moved the... (6 Replies)
Discussion started by: muraliinfy04
6 Replies

5. Red Hat

[SOLVED] Wireless Network Setup

Hi, I am trying to set up a wireless internet connection on my centos OS (6). I can connect via the copper using the internal LAN but cannot get the wireless connection working. The 2 files that I have configured are: My wpa_supplicant.conf: ctrl_interface=/var/run/wpa_supplicant... (1 Reply)
Discussion started by: Duffs22
1 Replies

6. UNIX for Dummies Questions & Answers

[solved]How do I setup outgoing email in solaris?

I have a Solaris box that I need to enable outgoing email from alarm purposes. How do I do that so the command echo "test this email" | mailx test@address.com will go through? ---------- Post updated at 02:24 PM ---------- Previous update was at 02:04 PM ---------- Needed to open port 25/smtp... (1 Reply)
Discussion started by: SIFT3R
1 Replies

7. Shell Programming and Scripting

Perl newbie - regex replace all groups issue

Hello, Although I have found similar questions, I could not find advice that could help with my problem. The issue: I am trying to replace all occurrences of a regex, but I cannot make the regex groups work together. This is a simple input test file: The Vedanta Philosophy... (3 Replies)
Discussion started by: samask
3 Replies

8. Linux

[Solved] Setup Nmon on Suse Enterprise 11

Ok, so my previous query has had more views than response (yeah, thanks alot for that) I am trying to figure out how to run nmon on suse linux but the script I had googled only works on AIX. I stored the binary file on (I had downloaded it directly from Nigel's website) my-xftp0:/var/log... (4 Replies)
Discussion started by: hedkandi
4 Replies

9. Red Hat

printer setup issue

I am a linux newbie who is in over his head.... We have a 3rd party company hosting our servers and they are running RHEL 4 (actaully is is OEL, but Oracle just rebranded RH) they installed a bunch of printers on the servers there. Our application prints but the formatt is off. When we had the... (0 Replies)
Discussion started by: jayjabour
0 Replies

10. HP-UX

Issue with setup.hp file for webserver

Hi All, I have an issue in writing the shell script to install a webserver on UNIX system. My shell script look something like this. ------------------------------------------------------------ echo "start of the script" #! /bin/sh cd /home/path echo | setup.hp -is:javaconsole -console... (1 Reply)
Discussion started by: vishalm
1 Replies
Login or Register to Ask a Question
DDD(1L) 																   DDD(1L)

NAME
ddd - double-speed data dumper SYNOPSIS
ddd [option=value] ... DESCRIPTION
Ddd works almost the same way as dd(1), but it has a much better throughput, especially when used with slow i/o-devices, such as tape drives. The improvement is achieved mainly by dividing the copying process into two processes, one of which reads while the other one writes and vice versa. Also all code conversion capabilities are omitted. There is no additional overhead copying data between various conversion buffers. Ddd was inspired by the vast difference in speed between BSD4.2 and BSD4.3 dumps - in BSD4.3 dump(8) uses alternating processes to write to raw magnetic tape, thus keeping the tape continuously in motion. I wanted to get the same improvement to remote dumps, so this filter was needed. Directing all physical I/O through ddd usually increases the throughput of any pipeline of unix commands (if you have enough MIPS and RAM to handle two extra processes). OPTIONS
Ddd uses options if, of, ibs and obs exactly as dd(1). Option bs can also be used to specify ibs and obs at once. One option differs slightly in meaning: cbs can be used to specify the size of the internal buffer. Input and output processes will swap duties when cbs bytes have been transferred. Default values for all sizes are 512 bytes. As with dd(1), letters k (kilobyte), b (block) or w (word) can be appended to size values. Other options are not provided. HINTS
For best performance, block sizes should be rather large. For magnetic tape, I use obs=100b and cbs=500b or so. Large block sizes (~100b) are also effective for network connections. However, cbs should be small enough for all the data to fit in core, since page faults add overhead. AUTHOR
Tapani Lindgren <nispa@cs.hut.fi> Laboratory of Information Processing Science Helsinki University of Technology Finland SEE ALSO
dd(1), tar(1), dump(8) BUGS
Should you find one, let me know! WARNING
(Applies to U.S. residents & citizens only) Do not use this program! Get rid of it as soon as you can! It will probably corrupt all your data, break down your computer and cause severe injury to the operators. Even reading the source code may give you a headache. I warned you! I will take no responsibility what- soever! DDD(1L)