1. Update Manager > Refresh 

   > 'mintupdate 4.7.9' : Install Updates

 









2. Update Manager > Edit (Menu) > Upgrade to Linux Mint 17.1 Rebecca





블로그 이미지

Melting

,

# apt-get install open-vm-tools

# vmware-toolbox-cmd help disk

disk: perform disk shrink operations

Usage: vmware-toolbox-cmd disk <subcommand> [args]


Subcommands:

   list: list available locations

   shrink <location>: wipes and shrinks a file system at the given location

   shrinkonly: shrinks all disks

   wipe <location>: wipes a file system at the given location

# vmware-toolbox-cmd disk shrink /



*. 간혹 /dev/null 이나 /dev/zero를 특정파일로 복사한 후 지우는 법을 
    얘기하는 경우가 있는데... 거의 효과없음... vmware-toolbox-cmd를 
    설치해서 사용할 것!!!


블로그 이미지

Melting

,




1. install git-scm

   > http://www.git-scm.com/


2. install jdk1.8 +


3. make temp-build directory


4. open 'Git Bash' at temp directory

  ----------------------------

$ export JAVA_HOME=/C/dev/jdk18

$ export PATH=$JAVA_HOME/bin:$PATH

$ git clone git://github.com/SpringSource/spring-framework.git

$ cd spring-framework

$ ./gradlew install

$ git checkout v3.2.6.RELEASE

$ ./gradlew depsZip

  > build/distributions/spring-framework-${VERSION}-dist-with-deps.zip

  >  If 'java.util.Arrays' error occurs, try with JDK1.7 (step 2.)

  ----------------------------



- https://github.com/spring-projects/spring-framework/wiki/Building-a-distribution-with-dependencies


블로그 이미지

Melting

,