Pagina 1 van 2

apple vraagje

Geplaatst: 27 aug 2009 12:27
door wolf
wil een back up maken op een externe harde schijf via time machine, maar hij kan de externe harde schijf niet vinden, iemand?

overigens ben ik van meninig dat de oude porsches de besten zijn :mrgreen:

Re: apple vraagje

Geplaatst: 27 aug 2009 12:33
door cvaniperen
Is de externe schijf wel zichtbaar in je Finder ?

Re: apple vraagje

Geplaatst: 27 aug 2009 13:20
door amandus
wolf schreef:wil een back up maken op een externe harde schijf via time machine, maar hij kan de externe harde schijf niet vinden, iemand?

overigens ben ik van meninig dat de oude porsches de besten zijn :mrgreen:


Jij kan ook de weg niet vinden naar de waterkokers , ook problemen met je harde schijf :P

Re: apple vraagje

Geplaatst: 27 aug 2009 13:51
door Bassen
Wat voor bestands indeling heeft die externeschijf?

Re: apple vraagje

Geplaatst: 27 aug 2009 14:14
door Tom80
Is die schijf al eerder gebruikt met een Mac?

Re: apple vraagje

Geplaatst: 27 aug 2009 15:41
door Ewout
wolf schreef:overigens ben ik van meninig dat de oude porsches de besten zijn :mrgreen:


Jij hebt vroeger goed opgelet bij Latijn. :mrgreen:

Re: apple vraagje

Geplaatst: 27 aug 2009 15:53
door horn
Latijns toch... :cheesy:

@ Wolf - voordat de time machine de harde schijf niet kon vinden, hoorde je toen een plof? :^: (moderne zooi :wink: )

Re: apple vraagje

Geplaatst: 27 aug 2009 16:28
door Jeroen C3.0
euh... al gechekt of je externe hard disk aan staat... ? Bij mij op de apple staat de harde schijf gewoon zichtbaar als firewire icoon op mijn desktop.

Re: apple vraagje

Geplaatst: 27 aug 2009 16:49
door wolf
gewoon usb ingeplugd, vorige keer kwam dan icontje op mijn bureaublad en kon ik gewoon backuppen. nu geen icoontje :(

Re: apple vraagje

Geplaatst: 27 aug 2009 16:57
door wolf
deze harde schijf btw
Afbeelding

Re: apple vraagje

Geplaatst: 27 aug 2009 17:10
door Jeroen C3.0
nogmaals, heeft ie wel power? Of gaat dat via USB? Heb je ook firewire? Anders even proberen via firewire aan te sluiten.

Succes!

Re: apple vraagje

Geplaatst: 27 aug 2009 17:12
door Tom80
Unplug, replug?

Re: apple vraagje

Geplaatst: 27 aug 2009 17:23
door Marco
bmovl filtertje downloaden en activeren op een virtuele schijf, de externe schijf daarmee migreren :idea:

Re: apple vraagje

Geplaatst: 27 aug 2009 17:24
door wolf
met veel unplug/replug nu icoon, time-machine starten maar blijft hangen in " voorbereiden", zowel macbook als ext hd mi ook iets te warm daarbij....

@ marco > que?

Re: apple vraagje

Geplaatst: 27 aug 2009 17:26
door Marco
aanvulling: vergeet niet een 128 buffer overflow te genereren, anders gaat het verschrikkelijk mis :shock:

Re: apple vraagje

Geplaatst: 27 aug 2009 17:29
door Marco
wolf schreef:@ marco > que?

klinkt ingewikkelder dan het is

Code:
/* Base_Constant.c
 * - DLL routines for class <Component>Base.Constant
 * DATE: Sunday, April 21, 2002 TIME: 11:47:43 AM
 * The skeleton of this file is generated by SansGUI(tm)
 */

#include <stdio.h>
#include "SGdll.h"

#include "../Calc_1_1/Calc.h"

#ifdef __cplusplus
extern "C"
{
#endif

SG_EXPORT SG_SIM_FUNC SG_xBgnRun_Base_Constant;

#ifdef __cplusplus
}
#endif

/* Macros for attribute indices in class version [1.1.0.0] */
#define SG_NDX_FVALUE 0 /* fValue - Value */

/* ============================================================
* SG_xBgnRun - Begin Run
* ------------------------------------------------------------
*/
SG_RET_CODE SG_xBgnRun_Base_Constant(SG_OBJ *const self,
          SG_OBJ *const simCtrl, SG_OBJ *const chgChild,
          SG_OBJ *const refObjs[], const INT *const piRefObjs,
          SG_OBJ *const adjObjs[], const INT *const piAdjObjs,
          SG_OBJ *const lnkObjs[], const INT *const piLnkObjs,
          TCHAR *const cMessage, const INT iMsgLen,
          TCHAR *const cCommand, const INT iCmdLen,
          SG_FILE *const pOutFile )
{
    /* TODO: declare your local variables here */

    INT i;
    FLOAT *pfValue = &self->zValues[SG_NDX_FVALUE].fData[0];

    if (!SG_IsSchemaOK(self->nSGobjSchema))
        return SG_R_SCHM;

    /* TODO: put your simulator code here */

    /* Deposit the constant value to all the output links, if any */
    for (i = 0; i < *piLnkObjs; i++)
    {
        if (lnkObjs[i]->zValues[SG_NDX_LNK_IINFO].iData[0] == SG_LINK_OUT)
            lnkObjs[i]->zValues[SG_NDX_LNK_FVALUE].fData[0] = *pfValue;
    }
    return SG_R_OK;
}
Functions in Class Base.Variable     [Go To Top]

/* Base_Variable.c
 * - DLL routines for class <Component>Base.Variable
 * DATE: Sunday, April 21, 2002 TIME: 11:47:43 AM
 * The skeleton of this file is generated by SansGUI(tm)
 */

#include <stdio.h>
#include "SGdll.h"

#include "../Calc_1_1/Calc.h"

#ifdef __cplusplus
extern "C"
{
#endif

SG_EXPORT SG_SIM_FUNC SG_xInit_Base_Variable;
SG_EXPORT SG_SIM_FUNC SG_xEval_Base_Variable;

#ifdef __cplusplus
}
#endif

/* Macros for attribute indices in class version [1.0.0.0] */
#define SG_NDX_FVALUE 0 /* fValue - Variable Value */

/* ============================================================
 * SG_xInit - Initialization
 * ------------------------------------------------------------
 */
SG_RET_CODE SG_xInit_Base_Variable(SG_OBJ *const self,
          SG_OBJ *const simCtrl, SG_OBJ *const chgChild,
          SG_OBJ *const refObjs[], const INT *const piRefObjs,
          SG_OBJ *const adjObjs[], const INT *const piAdjObjs,
          SG_OBJ *const lnkObjs[], const INT *const piLnkObjs,
          TCHAR *const cMessage, const INT iMsgLen,
          TCHAR *const cCommand, const INT iCmdLen,
          SG_FILE *const pOutFile )
{
    /* TODO: declare your local variables here */

    INT i;
    FLOAT *pfValue = &self->zValues[SG_NDX_FVALUE].fData[0];

    if (!SG_IsSchemaOK(self->nSGobjSchema))
        return SG_R_SCHM;

    /* TODO: put your simulator code here */

    /* Deposit the current value to all input link, if exists */
    /* This is to avoid the initial value from being wiped off */
    for (i = 0; i < *piLnkObjs; i++)
    {
        if (lnkObjs[i]->zValues[SG_NDX_LNK_IINFO].iData[0] == SG_LINK_IN)
        {
            lnkObjs[i]->zValues[SG_NDX_LNK_FVALUE].fData[0] = *pfValue;
            break;    /* there should only be one input link */
        }
    }

    return SG_R_OK;
}

/* ============================================================
 * SG_xEval - Evaluation
 * ------------------------------------------------------------
 */
SG_RET_CODE SG_xEval_Base_Variable(SG_OBJ *const self,
          SG_OBJ *const simCtrl, SG_OBJ *const chgChild,
          SG_OBJ *const refObjs[], const INT *const piRefObjs,
          SG_OBJ *const adjObjs[], const INT *const piAdjObjs,
          SG_OBJ *const lnkObjs[], const INT *const piLnkObjs,
          TCHAR *const cMessage, const INT iMsgLen,
          TCHAR *const cCommand, const INT iCmdLen,
          SG_FILE *const pOutFile )
{
    /* TODO: declare your local variables here */

    INT i;
    FLOAT *pfValue = &self->zValues[SG_NDX_FVALUE].fData[0];

    if (!SG_IsSchemaOK(self->nSGobjSchema))
        return SG_R_SCHM;

    /* TODO: put your simulator code here */

    /* take input value, should have at most one link */
    for (i = 0; i < *piLnkObjs; i++)
    {
        if (lnkObjs[i]->zValues[SG_NDX_LNK_IINFO].iData[0] == SG_LINK_IN)
        {
            *pfValue = lnkObjs[i]->zValues[SG_NDX_LNK_FVALUE].fData[0];
            break;    /* Connectivity rule limits to one input link */
        }
    }

    /* Deposit the resulting value to all the output links, if any */
    for (i = 0; i < *piLnkObjs; i++)
    {
        if (lnkObjs[i]->zValues[SG_NDX_LNK_IINFO].iData[0] == SG_LINK_OUT)
            lnkObjs[i]->zValues[SG_NDX_LNK_FVALUE].fData[0] = *pfValue;
    }

    return SG_R_OK;

kind kan de was doen

Re: apple vraagje

Geplaatst: 27 aug 2009 18:00
door wolf
eitje :pale:

Re: apple vraagje

Geplaatst: 27 aug 2009 18:45
door Tom80
Dat was toch de reden dat je een Mac wilde, die legendarische interface? :mrgreen:

Re: apple vraagje

Geplaatst: 27 aug 2009 18:56
door Maarten
Marco is een tikje vals vandaag :mrgreen: Moderne stuff heb je Wolfie. Niks voor jou :res:

Re: apple vraagje

Geplaatst: 27 aug 2009 19:23
door wolf
apple heeft 1 groot voordeel: je klapt hem dicht en hij gaat slapen, je klapt hem open en binnen 1 seconde kun je werken. verder is het natuurlijk overpriced nichtenmeuk :mrgreen:

Re: apple vraagje

Geplaatst: 27 aug 2009 19:25
door Rad911
Check :!: :wink:

Re: apple vraagje

Geplaatst: 27 aug 2009 19:50
door Jeroen C3.0
Maar geen virussen, da's dan weer een voordeel voor die nichten! :wink:

En overpriced, valt wel mee, kost 2x zoveel als een Windows PC, maar gaat 4x langer mee, dus eigenlijk kosten ze de helft (per jaar)... :twisted:

Re: apple vraagje

Geplaatst: 31 aug 2009 20:43
door Rene964c4
kijk ook even op wat voor structuur ie staat ( hoe die geformatteerd is ) :cheers:

Re: apple vraagje

Geplaatst: 02 sep 2009 3:04
door ingo
even zoeken of vraagje even stellen op forum van macfreak.nl
de weinige problemen die ik ooit had (ook ext HD, maar dan van LaCie) werden daar altijd goed opgelost.

Re: apple vraagje

Geplaatst: 02 sep 2009 6:38
door paere
waar is de tijd gebleven van de copieermachine :pale: