Results 1 to 40 of 68

Thread: How to get started

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    So you guys need a little help in OGR and DPAD hasn't been making people happy lately so I might as well put a little power toward. It has been ages since I have run the DNET client but it used to be good at no-net.

    For OGR, what is the best way to run no-net, set up the client on an Internet machine and set it to download a lot of WUs and then copy everything to the no-net machine or are there only certain files I need to copy back and forth?

  2. #2
    Dungeon Master alpha's Avatar
    Join Date
    Mar 2002
    Location
    Norfolk, UK
    Posts
    1,700
    buff-in.ogf should be all you need.

    Since stub size is mostly unknown, you need to over-estimate your cache to avoid wasted cycles. I wouldn't risk less than 300-500 stubs per day on any dual core CPU.

  3. #3
    Minister of Propaganda Fozzie's Avatar
    Join Date
    Jul 2003
    Location
    Bristol,UK
    Posts
    3,609

    The way I do it

    is change the line in dnetc.ini under networking to disabled=yes and frequent-threshhold-cehcks=0 after pulling down 1000 wus which seems to be the max.

    What you can do if you need to leave it for longer is to move the buff-in.ogf to a sub folder and then use dnetc.exe -import to increase the buffer size after pulling down a second set of 1000 wus.

    2000 should last a week then produce a nice
    Alas poor Borg, I knew it Horatio



    http://www.butlersurvey.com/

  4. #4
    =>Team Joker<= LAURENU2's Avatar
    Join Date
    Dec 2004
    Location
    Chicago IL USA
    Posts
    5,478
    Blog Entries
    1
    1St dumb Q
    IB I tried running RSCC It looked up all of my Nodes just fine
    But it says No Service is running on them,how do I stat a Service on the remotes
    Will this give me access to them like VNC does?

  5. #5
    Free-DC's Prime Search
    Join Date
    Apr 2004
    Posts
    2,518
    Running the client as a Win9x/WinNT/2000/XP Service

    A Win9x/WinNT/2000/XP service is a process that starts running when the computer is powered up, and does not stop until the computer is powered down. Unlike normal processes, services will continue to run even when a user logs out.

    Obviously, a service does not have access to remote file and disk resources that require a user to log in first. (This restriction can be nullified on NT - see FAQ below)

    To install the client as a service, run the client with the -install switch. This will cause it to register itself with the service handler, which will in turn automatically start the client the next time the computer is powered up. To deinstall a client previously installed as a service, start it with the -uninstall switch.

    FAQ

    Q: When installed as a service, the client cannot access files on remote drives (network shares). How come?
    A: When installed as a service, the client is (on NT, by default) not running in a user's context (there isn't a user logged in). Under Win9x, where security is virtually non-existant, the client *could* theoretically access network shares /once/ a user has logged in, but that is obviously not a good idea . On NT, the service can be configured from the service manager to start in a context other than the default "Local System": Control Panel -> services -> properties on service. there's a radio button to change between local system and another account. Also if the machine is a backup domain controller, all control panel choices for service userids/passwords, other than localuser, are grayed out whenever the machine doesn't have a connection to the primary domain controller.

    Q: On NT, trying to -install as service from 'AT' fails, but works fine otherwise. Whats up with that?
    A: AT runs by default in a non-desktop context, and the client's "have a valid shell" check fails. The solution is to check 'interact with desktop' in the scheduler config and install the service with "-quiet -install".

  6. #6
    =>Team Joker<= LAURENU2's Avatar
    Join Date
    Dec 2004
    Location
    Chicago IL USA
    Posts
    5,478
    Blog Entries
    1
    OK let see if I understand : So for me to use the RSCC program I must first install a DNET client as a service ?
    Then I can control them turn on or off from the program console
    Ouch I have a headache

  7. #7
    Target Butt IronBits's Avatar
    Join Date
    Dec 2001
    Location
    Morrisville, NC
    Posts
    8,619
    Quote Originally Posted by LAURENU2 View Post
    1St dumb Q
    IB I tried running RSCC It looked up all of my Nodes just fine
    But it says No Service is running on them,how do I stat a Service on the remotes
    Will this give me access to them like VNC does?:looney:
    I don't know what RSCC is ...

    Edit dnetc.ini for your site.

    Copy the two files dnetc.exe and dnetc.ini to a folder on the remote computer. like c:\dcprojects\dnetc
    You should share c:\dcprojects as dcprojects on every computer to make this easy.
    Then VNC to that computer and start dnetc.exe

    Done.
    Now, if you have dcprojects shared on every computer, you can use a batch file to do the hard work.
    if not exist \\remotecomputername\dcprojects\dnetc mkdir dnetc
    copy dnetc.exe \\remotecomputername\dcprojects\dnetc
    copy dnetc.ini \\remotecomputername\dcprojects\dnetc

    CN = computernames
    @echo off
    for %%i in (CN1, CN2, CN3, CN4, CN5 CN6 CN7 CN8 CN9 CN10 CN11) do goto :DOIT %%i

    goto :END

    :DOIT
    echo Processing %1, please wait...
    if not exist \\%1\dcprojects echo Could not find %1\dcprojects & goto :EOF
    if not exist \\%1\dcprojects\dnetc mkdir \\%1\dcprojects\dnetc
    if not exist \\%1\dcprojects\dnetc echo Could not create dnetc on %1\dcprojects & goto :EOF

    copy dnetc.exe \\%1\dcprojects\dnetc
    copy dnetc.ini \\%1\dcprojects\dnetc
    goto :EOF


    :END
    echo Done!

    :EOF

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •