Jump to content
Olarila Professional Hackintosh Services ×

el coniglio

Developers
  • Posts

    19
  • Joined

  • Last visited

Reputation

0 Neutral

3 Followers

About el coniglio

Hackintosh Specs

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Não. Nova versão, atualiza automaticamente o pci.ids de http://pciids.sourceforge.net/
  2. New release in first post, automatically updates pci.ids from http://pciids.sourceforge.net/
  3. Tenta so salvar esse arquivo na sua pasta pessoal e rodar (perl nomedoarquivo) velharia.pl.zip
  4. Você tem que copiar o conteúdo e salvar num arquivo (como se fosse texto), digamos por exemplo "limpa.pl". Digamos também que você criou o arquivo na sua pasta pessoal. Você irá no terminal, navegará até a pasta (Library no caso) e rodará o script. - Terminal - "cd Library" - "perl ../limpa.pl > ../conferir.sh"
  5. Voce pode fazer um script pra listar as coisas mais velhas. Eu fiz um exemplo que cria uma lista de comandos pra apagar os arquivos que ja nao sao acessados a mais de 300 dias (fiz essa etapa de gerar a lista de maneira a permitir uma conferida antes de efetivamente apagar). #!/usr/bin/perl $velho = 300 * 24 * 60 * 60; $referencia = time() - $velho; &checadiretorio("."); sub checadiretorio { my $dir = shift; my $diretorio; if(opendir($diretorio, $dir)) { foreach $file (readdir($diretorio)) { if($file ne "." and $file ne "..") { &checadiretorio($dir."/".$file); } } close($diretorio) } else { ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size, $atime,$mtime,$ctime,$blksize,$blocks) = stat($dir); # atime = last access # mtime = last modified if($atime < $referencia) { print "rm ".$dir."\n"; } } }
  6. Yes, the DX58SO "pack" available here http://Olarila.com/forum/packs.php
  7. Here are the kexts I use http://www.mediafire.com/?rnntfh3ksmcyjh2 http://www.mediafire.com/?8ka4lv9amekaa6s For ethernet you can also try this one http://sourceforge.net/projects/osx86drivers/
  8. Vou anexar esse patch que você precisa. No auto-patcher não há opção de carregar o patch de arquivo, você vai precisar usar esse arquivo no DSDT Editor. DG41RQ.txt.zip
  9. I'll do some testing to see if java network settings affect the native socket implementation I use or just http specific classes. If it only affect these "higher level" implementations I'll have to rewrite some lines but it will work on next release.
  10. Run the .jar from terminal (navigate to its root directory and run java -jar file.jar) so it will provide the exception. I think its something with the dsdt, can you provide the original dsdt for us (there's a tutorial on how to extract it in windows)?
  11. Para conecta-se usando proxy basta você configurar o Java do sistema. No Mac, vá em Utilities, Java Preferences, Network, Network Settings... Configure it at Utilities / Java Preferences / Network / Network Settings...
  12. I think its a manually patched dsdt. Just throw it on your /Extra and give it a try.
  13. That would work, or if you don't have windows, you can use a linux live-cd or usb mini-distro to boot and extract the original dsdt from there. Doesn't your mac boot w/o a patched dsdt?
  14. O desempenho é muito bom, a única coisa que não funciona nativamente é a AppleHDA. Quanto a SO2 você precisa comparar as especificações e conferir o que diverge da 58SO no banco de dados de compatibilidade (Olarila.com/kexts), mas acredito que funcione perfeitamente.
  15. Eu tenho a DX58SO com uma nVidia GTS 250 e funciona tudo normal com fakesmc, DSDT e VoodooHDA. No auto-patcher tem a opção pra gerar o DSDT pra essa mobo.
×
×
  • Create New...