HADOOP-17635. Update the ubuntu version in the build instruction. (#2931)

Reviewed-by: Akira Ajisaka <aajisaka@apache.org>
This commit is contained in:
Masatake Iwasaki 2021-04-19 16:44:16 +09:00 committed by GitHub
parent 9a261b0a16
commit e66d7d91be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,14 +51,13 @@ Known issues:
and run your IDE and Docker etc inside that VM. and run your IDE and Docker etc inside that VM.
---------------------------------------------------------------------------------- ----------------------------------------------------------------------------------
Installing required packages for clean install of Ubuntu 14.04 LTS Desktop: Installing required packages for clean install of Ubuntu 18.04 LTS Desktop.
(For Ubuntu 20.04, gcc/g++ and cmake bundled with Ubuntu can be used.
Refer to dev-support/docker/Dockerfile):
* Oracle JDK 1.8 (preferred) * Open JDK 1.8
$ sudo apt-get purge openjdk*
$ sudo apt-get install software-properties-common
$ sudo add-apt-repository ppa:webupd8team/java
$ sudo apt-get update $ sudo apt-get update
$ sudo apt-get install oracle-java8-installer $ sudo apt-get -y install java-8-openjdk
* Maven * Maven
$ sudo apt-get -y install maven $ sudo apt-get -y install maven
* Native libraries * Native libraries
@ -86,12 +85,13 @@ Installing required packages for clean install of Ubuntu 14.04 LTS Desktop:
$ curl -L https://sourceforge.net/projects/boost/files/boost/1.72.0/boost_1_72_0.tar.bz2/download > boost_1_72_0.tar.bz2 $ curl -L https://sourceforge.net/projects/boost/files/boost/1.72.0/boost_1_72_0.tar.bz2/download > boost_1_72_0.tar.bz2
$ tar --bzip2 -xf boost_1_72_0.tar.bz2 && cd boost_1_72_0 $ tar --bzip2 -xf boost_1_72_0.tar.bz2 && cd boost_1_72_0
$ ./bootstrap.sh --prefix=/usr/ $ ./bootstrap.sh --prefix=/usr/
$ ./b2 --without-python install $ ./b2 --without-python
$ sudo ./b2 --without-python install
Optional packages: Optional packages:
* Snappy compression (only used for hadoop-mapreduce-client-nativetask) * Snappy compression (only used for hadoop-mapreduce-client-nativetask)
$ sudo apt-get install snappy libsnappy-dev $ sudo apt-get install libsnappy-dev
* Intel ISA-L library for erasure coding * Intel ISA-L library for erasure coding
Please refer to https://01.org/intel%C2%AE-storage-acceleration-library-open-source-version Please refer to https://01.org/intel%C2%AE-storage-acceleration-library-open-source-version
(OR https://github.com/01org/isa-l) (OR https://github.com/01org/isa-l)