Learning Experience of Big Data: Learn to install CentOs 6.5 on my laptop
I have learnt some experience about Big Data during my summer vocation,I was told that The first thing to start Big Data is to install a Linux system on my laptop,that is what I'm going to discuss about.The system which I have used was CentOs 6.5,besides,the jdk I used in this system was jdk1.8.1_171,which can be found in http://www.oracle.com(the official site of Oracle).The virtual machine I have used was VM Workstation 10(I will called it by VM in my following artical).The material which was used is CentOS 6.5.iso,jsutust like the following image:
So,let's start it.
The first thing to do is open the VM and click the button "create a new virtual machine" to creat it(which is called "创建新的虚拟机" by chinese , I used the version which is translated into chinese),then a optional view will bes shown just like this:
we choose customize(which is called "自定义" by chinese) to begin and Click next.We can continue clicking until this view is shown:
We'd better not to instal the iso file at this time,because if we install it know ,we will come to a view which means to have a quick installation,which will install some drivers we do not need.So we choose I'll install the operation system later.
Next we will choose some settings related to our virtual machine,I'll show you on the picture.The positions which need to change I will marked with red pencil
We will click "next" untill this picture(Remeber:The storage you give to the machine can be 512 MB or 1024 MB ,The later will be fatser but occupied more storage on you laptop.And the network model must be NAT!)
On this step we'll choose customize hardware and delete the drivers we needn't.
As you can see,the printer,audio driver and the controller of USB are what we need not,so we remove them.And at this time,you can click CD/DVD to add the iso file to initialize our virtual machine.
And then click close and finish,the virtual machine will be generated automatically.We open the virtual machine to set some properties of this new baby.
Choose install it and a view will be shown,we choose to skip it because we don't have media .We can click "OK" until we choose the language we use,we choose English as the language of course,and we choose to disgard the data and install it basically.The it will show us with a table to change our hostname,we'd better not to change the name because there are some settings later will use the name "localhost".
Then we choose to set the time and then set root password-which will be used everytime we enter the system.
After set the password,we just need to click "next" to install.
After the installation is finished,we click reboot to restart the system.This is the end of Installation.
Learning Experience of Big Data: Learn to install CentOs 6.5 on my laptop的更多相关文章
- Learning Experience of Big Data:The First Day-Try to set up a network connection on my virtural machine
After we install our virtual machine,the first thing we should do is to set up a network connection ...
- Learning Experience of Big Data: Deploying Tomcat 8.0 and connect ssh without password
This mission seems to be easier--we can just decompression Tomcat to our virtural machine and deploy ...
- Learning Experience of Big Data: Connect CentOs to Xshell and set Java environment on CentOS
1.set up connections between vitural machine and Xshell: After we connect the virtural machine to ne ...
- 少标签数据学习:宾夕法尼亚大学Learning with Few Labeled Data
目录 Few-shot image classification Three regimes of image classification Problem formulation A flavor ...
- Learning Spark: Lightning-Fast Big Data Analysis 中文翻译
Learning Spark: Lightning-Fast Big Data Analysis 中文翻译行为纯属个人对于Spark的兴趣,仅供学习. 如果我的翻译行为侵犯您的版权,请您告知,我将停止 ...
- 【Tools】-NO.4.Tools.1.VM.1.001-【VMware Workstation PRO 12 Install CentOS 7.1】-
1.0.0 Summary Tittle:[Tools]-NO.4.Tools.1.VM.1.001-[VMware Workstation PRO 12 Install CentOS 7.1]- S ...
- data mining,machine learning,AI,data science,data science,business analytics
数据挖掘(data mining),机器学习(machine learning),和人工智能(AI)的区别是什么? 数据科学(data science)和商业分析(business analytics ...
- Vue learning experience
一.内置指令[v-ref] Official-document-expression: 父组件在子组件上注册的索引,便于直接访问.不需要表达式,必须提供参数ID,可以通过父组件的$ref对象访问子组件 ...
- mini install centOS log
no ifconfig yum install net-tools ------------------------------------------------------------------ ...
随机推荐
- 《ArcGIS Runtime SDK for Android开发笔记》——(12)、自定义方式加载Bundle格式缓存数据
随着ArcGIS 10.3的正式发布,Esri推出了新的紧凑型缓存格式以增强用户的访问体验.新的缓存格式下,Esri将缓存的索引信息.bundlx包含在了缓存的切片文件.bundle中.具体如下图所示 ...
- 【C++ Primer】详解C++和C中的float中的有效数字
在<C++ Primer>第二章中,2.1.1讲到float型的最小尺寸是6位有效数字.这里对“有效数字”的概念产生疑问,故有了以下内容. 首先,float的“尺寸”的意思是 ...
- 【java开发系列】—— java输入输出流
前言 任何语言输入输出流都是很重要的部分,比如从一个文件读入内容,进行分析,或者输出到另一个文件等等,都需要文件流的操作.这里简单介绍下reader,wirter,inputstream,output ...
- June 12th 2017 Week 24th Monday
All the splendor in the world is not worth a good friend. 人世间所有的荣华富贵都比不上有一个好朋友. It's great to have a ...
- linux下vi的一些简单的操作
前言 在嵌入式linux开发中,进行需要修改一下配置文件之类的,必须使用vi,因此,熟悉 vi 的一些基本操作,有助于提高工作效率. 一,模式 vi编辑器有3种模式:命令模式.输入模式.末行模式.掌握 ...
- 从零开始Vue项目实战(一)-准备篇
从前参与过一个react项目的代码编写,大神搭建的框架,我主要负责业务逻辑代码编写,现在回想起来似乎又什么都不会,现在为了巩固前端知识,决定用Vue来做这个项目的移动端网站,我本人Vue是从零开始的, ...
- Blog 使用Jsoup解析出html中的img元素
Jsoup主页:http://jsoup.org/ 在Blog.java 加入 private List<String> imageList=new LinkedList<Strin ...
- CF821E 【Okabe and El Psy Kongroo】
首先我们从最简单的dp开始 \(dp[i][j]=dp[i-1][j]+dp[i-1][j+1]+dp[i-1][j-1]\) 然后这是一个O(NM)的做法,肯定行不通,然后我们考虑使用矩阵加速 \( ...
- Hive中使用LZO
hive 中使用lzo 1 启动hive 错误Exception in thread "main" java.lang.NoClassDefFoundError: org/apac ...
- 让网页显示ajax的查询数据
今天下午做一个项目小练习.需要把查询日志的内容显示到网页上来.一开始陷入了一个误区. 一直以来我这个小项目需要访问ashx来生成html的代码.后台用的Razor模板引擎. 刚开始显示用户列表时.因为 ...