• Meteor 에 package 추가하도록 package.js 에 설정할 때
  • https://atmospherejs.com/ 에 publish 되지 않은 version 을 적을 경우
  • 다음과 같은 Error 를 뿜는 것을 볼 수 있다.
    MINISAT-out: Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value 67108864, (2) compile with ALLOW_MEMORY_GROWTH which adjusts the size at runtime but prevents some optimizations, or (3) set Module.TOTAL_MEMORY before the program runs.
    MINISAT-err: Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value 67108864, (2) compile with ALLOW_MEMORY_GROWTH which adjusts the size at runtime but prevents some optimizations, or (3) set Module.TOTAL_MEMORY before the program runs.
  • 고로, package.js 에 package 를 추가할 때, 특정 버전을 사용하고자 하는 경우
  • https://atmospherejs.com/ 에 publish 된 version 인지 반드시 check 한 후에 version 을 적도록 하자.


  • virtualbox 관련 설치 패키지 삭제
    sudo apt-get remove virtualbox* --purge
  • virtual machines, settings, virtual hard drives 지우기
    sudo rm ~/"VirtualBox VMs" -Rf
    sudo rm ~/.config/VirtualBox/ -Rf



+ Recent posts