Ho cercato di ottenere una seconda istanza di Google Drive da eseguire con un altro utente sul mio MBP con Mavericks.
Ho seguito le istruzioni qui link .
Ogni volta che provo a eseguire la nuova istanza usando sudo su user -c "/Applications/Google\ Drive.app/Contents/MacOS/Google\ Drive"
ottengo i seguenti erori:
/Applications/Google Drive.app/Contents/Resources/lib/python2.7/lib-dynload
2014-05-09 14:30:15.593 Google Drive[97308:c07] GsyncAppDeletegate.py : Finder debug level logs : False
2014-05-09 14:30:15.876 Google Drive[97308:c07] CoreText performance note: Client called CTFontCreateWithName() using name ".Lucida Grande UI" and got font with PostScript name ".LucidaGrandeUI". For best performance, only use PostScript names when calling this API.
2014-05-09 14:30:15.877 Google Drive[97308:c07] CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
2014-05-09 14:30:15.973 Google Drive[97308:c07] CoreText performance note: Client called CTFontCreateWithName() using name "Open Sans" and got font with PostScript name "OpenSans-Light". For best performance, only use PostScript names when calling this API.
Eseguo una versione Python basata su MacPorts:
which python
/opt/local/bin/python
e la versione è
python --version
Python 2.7.6
Installare MacPorts Python 3.4 e selezionarlo usando sudo port select --set python python34
non ha alcun effetto dato che Google Drive sembra eseguire il proprio pacchetto Python
Il rapporto completo sul crash è disponibile qui , ma qui è l'intestazione:
Process: Google Drive [30284]
Path: /Applications/Google Drive.app/Contents/MacOS/Google Drive
Identifier: Google Drive
Version: 1.15 (1.15.6556.8063)
Code Type: X86 (Native)
Parent Process: su [30283]
Responsible: Terminal [63738]
User ID: 508
Date/Time: 2014-06-16 19:27:36.320 +0300
OS Version: Mac OS X 10.9.3 (13D65)
Report Version: 11
Anonymous UUID: 5F4A3A72-1448-6EBD-1C39-DDA29A092B8B
Sleep/Wake UUID: 79EE99BE-CBF8-4D70-B4AC-9BB9E85E45F9
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Indica problemi di memoria. Vedi Apple Dev Docs qui .
Exception Codes: KERN_INVALID_ADDRESS at 0x000000001c2ad000
Questo è causato dal thread che accede alla memoria non mappata. Può essere attivato da un accesso ai dati o da un recupero di istruzioni; la sezione Stato del thread descrive come distinguere la differenza (vedere il collegamento alle informazioni dello sviluppatore Apple in precedenza).
VM Regions Near 0x1c2ad000:
MALLOC_LARGE 0000000008c6f000-0000000008ce9000 [ 488K] rw-/rwx SM=PRV
-->
__TEXT 000000008fe3b000-000000008fe6e000 [ 204K] r-x/rwx SM=COW /usr/lib/dyld
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 org.python.python 0x0044b5fa PyObject_Malloc + 90
1 org.python.python 0x0045690f PyString_FromString + 127
2 org.python.python 0x00445573 PyDict_GetItemString + 19
Thread 0 crashed with X86 Thread State (32-bit):
eax: 0x1c2ad000 ebx: 0x006c8724 ecx: 0x081c2000 edx: 0x00525240
edi: 0x00000018 esi: 0x0044b5ae ebp: 0xbfffa778 esp: 0xbfffa750
ss: 0x00000023 efl: 0x00010207 eip: 0x0044b5fa cs: 0x0000001b
ds: 0x00000023 es: 0x00000023 fs: 0x00000000 gs: 0x0000000f
cr2: 0x1c2ad000
eip è il contatore del programma nel momento in cui si è verificata l'eccezione. Cioè, è l'indirizzo dell'istruzione che ha causato l'eccezione. Per la maggior parte delle eccezioni di accesso non di memoria (ad esempio, EXC_ARITHMETIC / EXC_I386_DIV causato da una divisione intera per zero), questo è il valore della chiave.
Sembra essere correlato a un thread Python - eip 0x0044b5fa
PyObject_Malloc- e un bug Python simile è stato menzionato qui . PyObject_Malloc è un allocatore di oggetti Python .
Logical CPU: 1
Error Code: 0x00000004
Trap Number: 14
Qualcuno qui sa come posso superare questo crash e gli errori Python e far partire il secondo Google Drive? Cerca ma si blocca tutto il tempo e mi piacerebbe davvero far girare due dischi sul mio Mac.