O Dropbox causa alto uso da CPU no Mac OS X 10.8.2 (Mountain Lion)

10
Dropbox ocasionalmente usará cerca de 100% da CPU. Por que isso está acontecendo e como faço para corrigir isso?

De pesquisar por aí, parece que não é um problema incomum.

    
por Will 15.03.2013 / 21:37

2 respostas

3

Extraído de this Ask Ubuntu pergunta :

Dropbox computes a hash of all files that it's going to sync, it uses it both to determine if they changed and to avoid uploading content that is already in their cloud (another customer has the same file). Calculating hashes takes CPU power. It's usually noticeable at login.

Parece que a única maneira de corrigir isso é reduzir o tamanho da sua pasta compartilhada do Dropbox.

    
por 15.03.2013 / 23:04
2

Encontrei a solução aqui: link

Instale o cpulimit:

brew install cpulimit   

Obtenha o ID do processo do Dropbox:

ps aux | grep Dropbox

user 19628 104.7 2.3 xxxxxxxx xxxxxxxx ?? R 4:07PM 15:47.12 /Applications/Dropbox.app/Contents/MacOS/Dropbox

Execute o cpulimit com o sinalizador -p usando o ID do processo:

cpulimit -p 19628 -l 40

Note: That’s a lowercase L (for limit) and the last number (40 in this case) is the percentage % of CPU you’d like to throttle the app to.

Also Note: cpulimit will output ‘Process xxx found’ and will continue to run until you kill it with + C

    
por 18.04.2016 / 07:54