Changes between Version 5 and Version 6 of StartTestingLinuxOnWindows


Ignore:
Timestamp:
Dec 16, 2013, 2:00:12 PM (9 years ago)
Author:
Beman Dawes
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • StartTestingLinuxOnWindows

    v5 v6  
    5656 Note: Your clipboard is being shared between Windows and the Ubuntu Linux virtual machine, so you can copy-and-paste or drag-and-drop stuff between windows on the two machines, just like you do between windows on Windows.
    5757
    58 * In the terminal window, check for the presence of Git, GCC/g++, and Clang/clang++ and install if necessary.
     58* In the terminal window, check for the presence of Git, GCC/g++, and Clang/clang++ and install if necessary. Portions of command responses are shown where helpful:
     59
     60{{{
     61$ git
     62The program 'git' is currently not installed. You can install it by typing:
     63sudo apt-get install git
     64$ sudo apt-get install git
     65[sudo] password for beman:
     66...
     67After this operation, 19.7 MB of additional disk space will be used.
     68Do you want to continue [Y/n]? y
     69...
     70$ g++
     71The program 'g++' can be found in the following packages:
     72 * g++
     73 * pentium-builder
     74Try: sudo apt-get install <selected package>
     75$ sudo apt-get install g++
     76...
     77After this operation, 29.6 MB of additional disk space will be used.
     78Do you want to continue [Y/n]? y
     79...
     80$ clang++
     81The program 'clang++' is currently not installed. You can install it by typing:
     82sudo apt-get install clang
     83$ sudo apt-get install clang
     84...
     85After this operation, 141 MB of additional disk space will be used.
     86Do you want to continue [Y/n]? y
     87...
     88$ git --version
     89git version 1.8.3.2
     90$ g++ --version
     91g++ (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1
     92Copyright (C) 2013 Free Software Foundation, Inc.
     93This is free software; see the source for copying conditions.  There is NO
     94warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
     95
     96$ clang++ --version
     97Debian clang version 3.2-7ubuntu1 (tags/RELEASE_32/final) (based on LLVM 3.2)
     98Target: x86_64-pc-linux-gnu
     99Thread model: posix
     100}}}
     101
     102== Setup Git ==
     103
     104{{{
     105$ git config --global user.name "Beman Dawes"
     106$ git config --global user.email bdawes@acm.org
     107$ git config --global core.autocrlf input
     108$ git config -l
     109user.name=Beman Dawes
     110user.email=bdawes@acm.org
     111core.autocrlf=input
     112$ git clone --recursive git@github.com:boostorg/boost.git modular-boost
     113Cloning into 'modular-boost'...
     114...
     115}}}
    59116
    60117