Distributed


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Distributed
# 1  
Old 10-30-2000
Question



I've downloaded distributed latest build for dnetc, and I think i installed it. Not sure where the excicuteable would be. Any help? i realize this is a little ambigious, so I can allways reintstall it if i know how to put it in a specific directory..


does anyone know if VNC works for the Intel Build of Solaris?

# 2  
Old 11-01-2000
If the name of the file you are looking for is 'foo' (for example) you could find it by trying this command:

find / -exec grep foo {} \;

There are other ways to check for the location of files in the filesystem which are not in your path environmental variables. The example above is just one way.
# 3  
Old 11-04-2000
The distributed.net binaries usually unpack into your current working directory. So, you might, for example, do something like this:

mkdir dnet
cd dnet
<download distribution and save it here>
gunzip dnet*
tar -xvf dnet*
./dnetc -config





[Edited by PxT on 11-06-2000 at 03:38 PM]
# 4  
Old 11-06-2000
thanks

i'll give that a shot when I get back to my office.


 
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

distributed filesystem over internet/VPN

On this forum was already posted similar question, but it was 4 years ago and didn't give me answers. I have two groups of engineers that works in far locations connected via VPN. Physically, the connection is a DSL. Currently we have a linux server in one location that provide files over... (4 Replies)
Discussion started by: Domino
4 Replies

2. Programming

Distributed Automation kill()

Ok, so Ive been stumped by this problem for the last 3 days, and my exploration is reaching its limitations... The key idea is that at any moment in time, the automation controller could theoretically have any number of threads open to any number of node machines running any number of... (2 Replies)
Discussion started by: jjinno
2 Replies

3. High Performance Computing

Grid vs. Parallel vs. Distributed

Hello all, I was wondering if someone could either explain or maybe point me to another article somewhere that explains the difference between: distributed computing grid computing parallel computing I see these terms thrown around a lot in server and cluster environments, but I'd like a... (2 Replies)
Discussion started by: Heathe_Kyle
2 Replies

4. Programming

Creating a Unique ID on distributed systems

Hi, How do you actually create a unique ID on a distributed system. I looked at gethostid but the man page says that its not guaranteed to be unique. Also using the IP address does not seem to be a feasible solution. Is there a function call or mechanism by which this is possible when even the... (4 Replies)
Discussion started by: pic
4 Replies
Login or Register to Ask a Question