SlideShare a Scribd company logo
Create a virtual disk
set the hard disk size:
size specified will be used in partition.
Install ubuntu
byte space specified in first step 60 gb will be shown here.
Select the free space
create a new partition.
Split the partition to 15 gb for root ,15 gb for swap and remaining for the /hadoop
15 gb for (/) root
create swap partition.
Click the mount area use as
3 partition for bigdata
change use as /home
2nd
partition
3rd
partition – bigdata.
Change mount point to /bigdata
install package manager
Default Package Manager in DEBIAN / UBUNTU system is :
1) dpkg which is a backend tool for the more powerful apt system
2) apt as Frontend
3) aptitude (GUI of apt)
For RED HAT LINUX distros like Fedora or CentOS:
1) rpm as Backend
2) yum as Frontend
given as http://arun:arun@192.168.1.1:80/
GRUB, the Grand Unified Bootloader.
This is the tiny piece of software responsible for starting up your computer and getting Linux — or
Windows, if you dual-boot — loaded into memory. Because the PC architecture has undergone dramatic
changes in the last 25 years, the boot process has become more complicated, and requires a small piece
of software to handle getting your chosen operating system loaded into memory.
With Windows XP, this piece of software is called NTLDR. On Linux, it’s called GRUB. (There was also
another bootloader called LILO, but it’s been obsolete for years and is not recommended for new
installations, even if your distribution gives you the option.) Both of them do the same thing: they get the
operating system loaded into memory, and optionally, present you a menu with different choices on how
you would like to boot your system.
As I mentioned, there are two options for installing GRUB. First, you can install it to the Master Boot
Record of your first hard drive. Second, you can install it to the boot sector of the active
(bootable) hard drive partition. Which one is the right one? It depends.
If you intend to dual-boot Windows, then you should avoid installing GRUB to the MBR. The reason for
this is that Windows occasionally overwrites the MBR, for instance, when you reinstall it, and that could
be quite often. When that happens, your Linux system will seem to disappear as your system starts
booting directly into Windows, bypassing the boot menu altogether. To avoid this, install GRUB to the
boot sector of the active partition instead.
There’s an exception to that rule: If you are installing Linux to a secondary hard drive, and no part of it
will be on your main hard drive, then you must install GRUB to the MBR, and take your chances with
Windows overwriting the MBR with its own at some future date. If this happens, you’ll have to use a
Linux rescue CD to get GRUB reinstalled. (I’ll cover this procedure in the future.)
If, however, Linux will be the only operating system on your computer, it’s perfectly safe to — and you
must — install GRUB to the MBR.
Some special circumstance notes: If you run OS/2, you MUST NOT install GRUB to the MBR under any
circumstances, or you won’t be able to boot OS/2! You will have to install it to the boot sector of the
Linux /boot partition on your primary (first) hard drive. If you don’t have any free unpartitioned space on
your first hard drive, you will have to use a resizing tool such as Partition Magic to create some space and
have your Linux installation create the Linux /boot partition in that space. The space must be within the
first 1024 cylinders of the hard drive. And it will have to be a primary partition as well, not a logical
partition. Many computers can’t boot from logical partitions, only primary ones. The root (/) partition can
be elsewhere, even on a secondary hard drive. You’ll then need to add the /boot partition to OS/2’s Boot
Manager menu once you’ve completed the Linux installation.
If you have multiple Windows versions on your computer, and use a Windows boot menu to access them,
you can add Linux to the Windows boot menu, but the process for this is somewhat complex, and I don’t
intend to cover it here. Install GRUB to the boot sector instead, creating a /boot partition on the primary
hard drive if necessary (see the OS/2 note above).
As you’ve probably gathered, the simple everyday act of booting up your PC is much more complex than
you thought it was. This has a lot to do with the way your computer’s BIOS accesses internal hard drives.
The BIOS is the very first bit of software which starts when you turn on your computer, and it’s located
on a physical ROM chip inside the machine.
Twenty years ago, hard drives of 5 to 20 MB were common, and many PCs even shipped without a hard
drive! Even as late as ten years ago, most computer BIOS software could not access more than the first
528 MB of a hard drive, creating booting problems. Eventually a solution called LBA (logical block
addressing) raised this limit, first to 8 GB, and in more recent computers, to 137 GB. This is the range
that the so-called first 1024 cylinders can access through the BIOS, before your operating system loads
(using GRUB, NTLDR, or what have you). As hard drives exceed 137 GB now, and computers with 1TB of
hard drive space are just now becoming available to consumers, the 20 year old BIOS design will again
make trouble for the seemingly simple task of starting your computer.
CTRL=C (HOST KEY +C) to view in full mode:
RIGHT CTRL+I to mouse and local windows 7 properly sync
as you can see can control mouse in windows command prompt and linux ubuntu screen
Settings:
to copy any content from windows to ubuntu and ubuntu to windows change the settings.
Click settings and change it.
Change network to bridge adapter .
Change video memory as as much as possible.
Click file > preference
add extension to make display looking good.
Terminal window look bad
Install guest Additions extensions:
RIGHT-CTRL + F – fullscreen mode:press CTRL +F till you the below screen
i.e top menu and footer
fails may if install ubuntu-alternate12.04 32 bit on windows 7.
default value
folder structure of ubuntu as per partition:
bigdata created as mentioned in partition
bigdata as Root
APTCommands:
apt-get install
apt-get remove
purge:
When removing software in some files such as configurations are not always removed. To
completely remove a package use the purge switch
apt-get remove –purge
force install
To fix broken packages use the force option with install
apt-get -f install
upgrade:
apt-get upgrade
dist-upgrade:
use apt-get dist-upgrade
apt-get dist-upgrade --To re-load your sources.list file use apt-get update
apt-get update
To set environment variable in ubuntu:
=====================================
1. either edit /etc/bash.bashrc file but we dont have access to edit it
>su root
>password:
root@ubuntu:/home/arun#nano /etc/bash.bashrc
^O to edit the file
^X to save the changes, it will ask whether to save the changes. if yes is given it will save.
NOTE : this is bad practice as it causes login failure and affect all user .
i created wrong environment variable which causes failure and looping login screen without
login in to the screen.please can avoid
other options:
============
add enviornment entry file with .sh under etc/profile.d/ files created with shell script will
run when ubuntu starts.
>su root
>password:
since we dont have permission to edit the files we can add a file by using sudo root
root@ubuntu:/home/arun#mv arun /home/arun/environment.sh /etc/profile.d/
Adds a user
sudo adduser
Disable a user
sudo passwd -l 'username'
Delete a user
sudo userdel -r 'username'
change user password
sudo pwd <> e.g sudo pwd arun Enter new password: Retype new password: passwd:
passwd change successfully.
Add user a to a usergroup
sudo usermod -a -G GROUPNAME USERNAME
Remove user from a user group
sudo deluser USER GROUPNAME
NOTE: If you’re an experienced Linux user, it’s possible to configure Ubuntu so that the root
account login is activated. Simply type the following at the command prompt
to configure Ubuntu so that the root
account login is activated
sudo passwd root
Then type a password. To switch to the root user in the future, type su -. To quit, type exit
or hit Ctrl+D.
deactivate the root account
sudo passwd -l root If you ever want to slip into the root account for a short period, even if
you haven’t followed the previous instructions to activate the root account login, you can
do so by typing the following:
sudo su
You’ll be prompted to type your ordinary account login password; do so. When you’ve
finished, type exit to return to your standard user account (or hit Ctrl+D).
we can temporarily switch to this user by typing the following command, which stands for
substitute user:
su frank
changing permissions:
chmod a+rw myfile a-adding r-removing w-writing
changing group:
chmod g-rw. add(+) read/write permission for owner
if ubuntu login causes login loop with login in:
================================================
You might be having problems with LightDM, the login manager that comes in Ubuntu by default. In
12.04 it used to do the same problem you are describing.
You can install GDM, an alternative login manager, to get around this:
At the login screen, press and hold Ctrl+Alt+F2 (login in to ubuntu using command prompt way)
to go to the terminal. Don't be afraid! Just log in here with your username and password.
Then, type sudo apt-get install gdm. Let it install and type sudo dpkg-reconfigure gdm and
follow the prompts to set it as your login manager.
Press Ctrl+Alt+F7 to get back to the login screen which should now look different. Does logging
in work? If it does, your problem is solved!
If it doesn't, go back to the fullscreen terminal and type sudo dpkg-reconfigure lightdm to set
LigthDM as you login manager again. Now you know that this is a problem with your graphics
drivers for sure.
to delte the folder use
=======================
ctrl+Alt+F3 to go to command prompt login
login as any user and try
>arun@ubuntu: su root
>password:
>root@ubuntu:/home/arun# rm -rf <<foldername>>
to delete the file
>root@ubuntu:/home/arun#rm -f envrionment.sh
login loop back issue solved :
==============================
issue is files created under /etc/profile.d/ will be accessible for all user hence if
any thing enter wrong causes login loop back failure all over. i deleted the file in
command prompt mode using admin account
steps:
CTRL+ALT+F3 enter in command prompt mode enter as login arun
>arun@ubuntu: su root
>password:
>root@ubuntu:/home/arun#cd /etc/profile.d
>root@ubuntu:/etc/profile.d#rm -rf environment.sh << which i created unknowingly earlier>
>sudo reboot
reboot the ubuntu and try login
worked!!!
This error occurs because of 64 bit os installed with 32 bit ubuntu.
NOTE: virutal box by default wont support 64 , it is a problem need to fix by following
steps:
click installable virutal box in repair mode
now you can see it shows 64 bit ubuntu. Install above procedure of ubuntu installation
in 64 bit .it create a new virtual box icon. Hence make sure delete the desktop icon
and click virtual box as like re-installation.
After this two virtualbox will be there
C:Program FilesOracleVirtualBox make sure not select one in C:Program Files (x86)
still error persist change compatibility to windows 7
NOTE:
while re-install / repair better kill all vbox tasks in taskmanager.
Still not working may be need VT(virtual technology) need to be enabled.
Reboot
F2 bios setup
In windows Bios settings > security tab > intel virtual technology>enabled
check it is working fine !!!
common errors:
Authenticator error:
====================
The root account is disabled by default in Ubuntu, so there is no root password, that's why su
fails with an authentication error.
Use sudo to become root:
sudo -i
only temporary only till open session of terminal
worked!!!
To permanently add a user to root login:
sudo passwd root
Then type a password. To switch to the root user in the future, type su -. To quit, type exit or
hit Ctrl+D.
Use sudo to become root:
sudo -i
only temporary only till open session of terminal
To permanently add a user to root login: sudo passwd root
Then type a password. To switch to the root user in the future, type su -. To quit, type exit
or hit Ctrl+D.
Permanently make user to become a root
sudo -i only allow to become root only till terminal session open. only till terminal session
open. only one terminal session. once closed no more user is root. to permanently enable
user as a root follow steps using sudo passwd root: The root account is disabled by default
in Ubuntu, so there is no root password, that's why su fails with an authentication error.
ERROR:
if during installation /media partition isnot given it shows below error. Guest additions
media files cannot be installed.
1.Alternate:
will be useful if does not have a cd to install. you can install from even windows 7 or any
system without any bootable . i.e you can mount the iso file in virtual box in local disk
locating the path of iso file and can install easily. experience ubuntu users prefer this. you
can have more control the way partition and bootfile everything.only command prompt
support not support gui based installation.
can find information on how to install Ubuntu from the Alternate CD. The Alternate CD provides
more advanced installation options than the standard Desktop CD, which is the recommended
method of installing Ubuntu. For instructions on how to use the Desktop CD, see the Graphical
Install page on the Ubuntu community documentation site.
The alternate CD can be used to upgrade your Ubuntu version. This is useful for offline
computers.
The alternate CD installer is not a live CD. You can't use it to try out Ubuntu, test if Ubuntu works
or fix a PC/edit partitions without reinstalling.
2.Desktop:
if you have CD to install you can use. it is gui based easy over alternate.
3.server:
Server edition comes with all the common applications that you would find in a server,
php, mysql etc. Server edition doesn't have a GUI (neither gnome or kde). If you want to
make your desktop work as a server, just install apache and any other tools that a server
needs. Thats the point of the server edition. Is not to be a different version, but a
specialized version. It saves you time because all the apps that a server needs come
already in the installation cd.
Certification as a guest on AWS, Microsoft Azure, Joyent, IBM and HP Cloud Updates to
Tomcat (v7), Postgresql (v9.3), Docker v(0.9), Puppet (v3.0), Qemu (v2.0), Libvirt (v1.2), LXC
(v1.0) and MySQL (v5.5)
between the Desktop and the Alternate installation:
The Desktop install CD image contains a graphical installer as well as a live session of Ubuntu,
that runs directly off your computer memory and the install media without installing anything to
hard-disk. Using the live session installer you have the opportunity to begin using Ubuntu
immediately, get an idea of system performance and install if and when ready.
The Alternate CD has an old style, lightweight text-based installer with no Live session available.
It also provides you with extra options and configurations not offered by the desktop versions.
What do the DVD images contain?
The Ubuntu DVD is a conjugation(link between alternate and desktop) of the Alternate and the
Desktop CD. At the boot prompt, you can select to either go into the Live session with a
graphical install, or do the old classical install.
sources.list file
Repositories are particular locations on the web which contain the thousands of packages (each
containing programs, applications, etc) that you would need on your computer.
The sources.list file contains the list of all the repositories that will be used to download packages
in Synaptic and APT (see APTPage); it is located in /etc/apt/. Since /etc is the directory for system-
wide configurations, you will require root privileges to edit it .
Partition type during installation:
Guided -resize SCSI3:
it creates 2 partition one for / and one for swap and allow you to change the size to have for root
and swap.it ony shown if you partitioned already using manual method.
Guided entire disk:
it creates fixed partition by system , you cannot change the memory size allocated for root(/)
and swap.
As you can see now resize SCSI3 is showing:
Guided Entire Disk and set up LVM:
guided partition allows you to set up LVM(Logical volume manager) so with this further
with this you can able to grow logical volumes later using later using the LVM Tools .
So smaller part of partition towards LVM adds more flexibility.
Guided partition -use entire disk and set up encrypted LVM:
if encryption is needed you can use this partiton type.
NOTE:
To create a desk version , you can download POWER ISO and ubuntu as iso and write to
disk and can install ubuntu from CD.
Guided -use entire disk and set up LVM is easy for beginner because if memory size
allocated is low not sure than we can change later by removing space from other drive
and move to drive which needs space.
With logical volume management, the whole disk would be allocated to a single
volume group and logical volumes created to hold the / /usr and /home file systems.
If, for example the /home logical volume later filled up but there was still space
available on /usr then it would be possible to shrink /usr by a few megabytes and
reallocate that space to /home.
Another alternative would be to allocate minimal amounts of space for each logical
volume and leave some of the disk unallocated. Then, when the partitions start to fill
up, they can be expanded as necessary.
As an example: Joe buys a PC with an 8.4 Gigabyte disk on it and installs Linux
using the following partitioning system:
/boot /dev/hda1 10 Megabytes
swap /dev/hda2 256 Megabytes
/ /dev/hda3 2 Gigabytes
/home /dev/hda4 6 Gigabytes
This, he thinks, will maximize the amount of space available for all his MP3 files.
Sometime later Joe decides that he want to install the latest office suite and desktop
UI available but realizes that the root partition isn't large enough. But, having
archived all his MP3s onto a new writable DVD drive there is plenty of space on
/home.
His options are not good:
1.Reformat the disk, change the partitioning scheme and reinstall.
2.Buy a new disk and figure out some new partitioning scheme that will require
the minimum of data movement.
3.Set up a symlink farm on / pointing to /home and install the new software
on /home
With LVM this becomes much easier:
NOTE:
if guest additions icon in devices tab is clicked /media files is not able to
understand show error " cannot able to mount media
c:/vboxGuestAdditions.iso.hence .if already installed it shows the error message.
As you can previously i given /bigdata folder hence the issue. Now i given only partition
root (/) hence now the guest additions is working.
Correctly working gui settings:
Preference:
Settings:
command to check partition:
arun@ubuntu:~$ sudo lsblk -o NAME,FSTYPE,SIZE,MOUNTPOINT,LABEL
Ubuntu alternate ubuntu installation
Ubuntu alternate ubuntu installation
Ubuntu alternate ubuntu installation

More Related Content

What's hot

Virtualization.pdf
Virtualization.pdfVirtualization.pdf
IRJET- Orchestration of Operating System Start-Up
IRJET- Orchestration of Operating System Start-UpIRJET- Orchestration of Operating System Start-Up
IRJET- Orchestration of Operating System Start-Up
IRJET Journal
 
Starting Raspberry Pi
Starting Raspberry PiStarting Raspberry Pi
Starting Raspberry Pi
LloydMoore
 
BOOTABLE OPERATING SYSTEM
BOOTABLE OPERATING SYSTEMBOOTABLE OPERATING SYSTEM
BOOTABLE OPERATING SYSTEM
Shahzeb Pirzada
 
Steam backup-game-files
Steam backup-game-filesSteam backup-game-files
Steam backup-game-files
ssuser1eca7d
 
Help, my computer is sluggish
Help, my computer is sluggishHelp, my computer is sluggish
Help, my computer is sluggish
Kevin OBrien
 
6 stages of linux boot process
6 stages of linux boot process6 stages of linux boot process
6 stages of linux boot processTeja Bheemanapally
 
Hp ux-11iv3-multiple-clones-with-dynamic-root-disks-dusan-baljevic-mar2014
Hp ux-11iv3-multiple-clones-with-dynamic-root-disks-dusan-baljevic-mar2014Hp ux-11iv3-multiple-clones-with-dynamic-root-disks-dusan-baljevic-mar2014
Hp ux-11iv3-multiple-clones-with-dynamic-root-disks-dusan-baljevic-mar2014
Circling Cycle
 
Installing mandriva linux mandriva community wiki
Installing mandriva linux   mandriva community wikiInstalling mandriva linux   mandriva community wiki
Installing mandriva linux mandriva community wikiAdolfo Nasol
 
Configuring the boot menu in ubuntu
Configuring the boot menu in ubuntuConfiguring the boot menu in ubuntu
Configuring the boot menu in ubuntuCOMSATS
 
ICT BTEC UNIT 2 P1
ICT BTEC UNIT 2 P1ICT BTEC UNIT 2 P1
ICT BTEC UNIT 2 P1
OriginalGSM
 
Booting directly opensuse iso file by grub2 @ openSUSE Asia Summit2015
Booting directly opensuse iso file by grub2 @ openSUSE Asia Summit2015Booting directly opensuse iso file by grub2 @ openSUSE Asia Summit2015
Booting directly opensuse iso file by grub2 @ openSUSE Asia Summit2015
Kentaro Hatori
 
How to build a gaming PC — and why you should
How to build a gaming PC — and why you shouldHow to build a gaming PC — and why you should
How to build a gaming PC — and why you should
Dharmendra Rama
 
Windows xp™
Windows xp™Windows xp™
Windows xp™Kamitoh
 
Installing Microsoft Server 2003
Installing Microsoft Server 2003Installing Microsoft Server 2003
Installing Microsoft Server 2003alxconn
 
How to install windows 7 over the network using pxe booting and tftp
How to install windows 7 over the network using pxe booting and tftpHow to install windows 7 over the network using pxe booting and tftp
How to install windows 7 over the network using pxe booting and tftpRavi Kumar Lanke
 

What's hot (20)

Virtualization.pdf
Virtualization.pdfVirtualization.pdf
Virtualization.pdf
 
IRJET- Orchestration of Operating System Start-Up
IRJET- Orchestration of Operating System Start-UpIRJET- Orchestration of Operating System Start-Up
IRJET- Orchestration of Operating System Start-Up
 
Starting Raspberry Pi
Starting Raspberry PiStarting Raspberry Pi
Starting Raspberry Pi
 
BOOTABLE OPERATING SYSTEM
BOOTABLE OPERATING SYSTEMBOOTABLE OPERATING SYSTEM
BOOTABLE OPERATING SYSTEM
 
Steam backup-game-files
Steam backup-game-filesSteam backup-game-files
Steam backup-game-files
 
Help, my computer is sluggish
Help, my computer is sluggishHelp, my computer is sluggish
Help, my computer is sluggish
 
6 stages of linux boot process
6 stages of linux boot process6 stages of linux boot process
6 stages of linux boot process
 
Compiling and using u boot for beagle bone
Compiling and using u boot for beagle boneCompiling and using u boot for beagle bone
Compiling and using u boot for beagle bone
 
Log
LogLog
Log
 
Hp ux-11iv3-multiple-clones-with-dynamic-root-disks-dusan-baljevic-mar2014
Hp ux-11iv3-multiple-clones-with-dynamic-root-disks-dusan-baljevic-mar2014Hp ux-11iv3-multiple-clones-with-dynamic-root-disks-dusan-baljevic-mar2014
Hp ux-11iv3-multiple-clones-with-dynamic-root-disks-dusan-baljevic-mar2014
 
Installing mandriva linux mandriva community wiki
Installing mandriva linux   mandriva community wikiInstalling mandriva linux   mandriva community wiki
Installing mandriva linux mandriva community wiki
 
Booting
BootingBooting
Booting
 
Configuring the boot menu in ubuntu
Configuring the boot menu in ubuntuConfiguring the boot menu in ubuntu
Configuring the boot menu in ubuntu
 
ICT BTEC UNIT 2 P1
ICT BTEC UNIT 2 P1ICT BTEC UNIT 2 P1
ICT BTEC UNIT 2 P1
 
Booting directly opensuse iso file by grub2 @ openSUSE Asia Summit2015
Booting directly opensuse iso file by grub2 @ openSUSE Asia Summit2015Booting directly opensuse iso file by grub2 @ openSUSE Asia Summit2015
Booting directly opensuse iso file by grub2 @ openSUSE Asia Summit2015
 
How to build a gaming PC — and why you should
How to build a gaming PC — and why you shouldHow to build a gaming PC — and why you should
How to build a gaming PC — and why you should
 
Windows xp™
Windows xp™Windows xp™
Windows xp™
 
Installing Microsoft Server 2003
Installing Microsoft Server 2003Installing Microsoft Server 2003
Installing Microsoft Server 2003
 
How to install windows 7 over the network using pxe booting and tftp
How to install windows 7 over the network using pxe booting and tftpHow to install windows 7 over the network using pxe booting and tftp
How to install windows 7 over the network using pxe booting and tftp
 
OLUG_xen.ppt
OLUG_xen.pptOLUG_xen.ppt
OLUG_xen.ppt
 

Viewers also liked

VHD Recovery Tool
VHD Recovery ToolVHD Recovery Tool
VHD Recovery Tool
SysInfoTools
 
4306 4310.output
4306 4310.output4306 4310.output
4306 4310.output
j1075017
 
нээлттэй хичээл
нээлттэй хичээлнээлттэй хичээл
нээлттэй хичээлBat Budee
 
2015 00 Severn Estuary Forum
2015   00 Severn Estuary Forum2015   00 Severn Estuary Forum
2015 00 Severn Estuary Forum
SevernEstuary
 
Tema 4. Sistemas de protección de los Derechos HUmanos
Tema 4. Sistemas de protección de los Derechos HUmanos Tema 4. Sistemas de protección de los Derechos HUmanos
Tema 4. Sistemas de protección de los Derechos HUmanos
Fmorin84
 
ORDENANZAS
ORDENANZAS ORDENANZAS
презентация2
презентация2презентация2
презентация2Almaz Shakirov
 
Communication Patterns Moderating the Relationship between Self
Communication Patterns Moderating the Relationship between SelfCommunication Patterns Moderating the Relationship between Self
Communication Patterns Moderating the Relationship between SelfAiman Syed
 
Hot promo
Hot promoHot promo
Hot promo
puri sebatu
 
Festinger Dissonanza Cognitiva
Festinger Dissonanza CognitivaFestinger Dissonanza Cognitiva
Festinger Dissonanza Cognitiva
PERUSSIA #psicotenica
 
Genomics 2015 Keynote - Utilizing cancer sequencing in the clinic
Genomics 2015 Keynote - Utilizing cancer sequencing in the clinicGenomics 2015 Keynote - Utilizing cancer sequencing in the clinic
Genomics 2015 Keynote - Utilizing cancer sequencing in the clinic
Andreas Scherer
 
Invierno, temporada de esperas y aguardos de lobo iberico
Invierno, temporada de esperas y aguardos de lobo ibericoInvierno, temporada de esperas y aguardos de lobo iberico
Invierno, temporada de esperas y aguardos de lobo iberico
CazaLastMoment
 
América
AméricaAmérica
América
Karen Rodriguez
 
Solution for Gionee Retailers
Solution for Gionee RetailersSolution for Gionee Retailers
Solution for Gionee Retailers
AccXchange
 
Ergodesign - Perspectivas
Ergodesign - PerspectivasErgodesign - Perspectivas
Ergodesign - Perspectivas
Fernanda Sarmento
 
Персональная коммуникация с клиентами. Геймификация
Персональная коммуникация с клиентами. ГеймификацияПерсональная коммуникация с клиентами. Геймификация
Персональная коммуникация с клиентами. Геймификация
Adventum
 
La investigación en enfermería
La investigación en enfermeríaLa investigación en enfermería
La investigación en enfermería
karlos_10
 

Viewers also liked (20)

VHD Recovery Tool
VHD Recovery ToolVHD Recovery Tool
VHD Recovery Tool
 
4306 4310.output
4306 4310.output4306 4310.output
4306 4310.output
 
нээлттэй хичээл
нээлттэй хичээлнээлттэй хичээл
нээлттэй хичээл
 
2015 00 Severn Estuary Forum
2015   00 Severn Estuary Forum2015   00 Severn Estuary Forum
2015 00 Severn Estuary Forum
 
780062
780062780062
780062
 
Tema 4. Sistemas de protección de los Derechos HUmanos
Tema 4. Sistemas de protección de los Derechos HUmanos Tema 4. Sistemas de protección de los Derechos HUmanos
Tema 4. Sistemas de protección de los Derechos HUmanos
 
ORDENANZAS
ORDENANZAS ORDENANZAS
ORDENANZAS
 
9789862218518
97898622185189789862218518
9789862218518
 
презентация2
презентация2презентация2
презентация2
 
Communication Patterns Moderating the Relationship between Self
Communication Patterns Moderating the Relationship between SelfCommunication Patterns Moderating the Relationship between Self
Communication Patterns Moderating the Relationship between Self
 
Hot promo
Hot promoHot promo
Hot promo
 
Festinger Dissonanza Cognitiva
Festinger Dissonanza CognitivaFestinger Dissonanza Cognitiva
Festinger Dissonanza Cognitiva
 
Genomics 2015 Keynote - Utilizing cancer sequencing in the clinic
Genomics 2015 Keynote - Utilizing cancer sequencing in the clinicGenomics 2015 Keynote - Utilizing cancer sequencing in the clinic
Genomics 2015 Keynote - Utilizing cancer sequencing in the clinic
 
Invierno, temporada de esperas y aguardos de lobo iberico
Invierno, temporada de esperas y aguardos de lobo ibericoInvierno, temporada de esperas y aguardos de lobo iberico
Invierno, temporada de esperas y aguardos de lobo iberico
 
América
AméricaAmérica
América
 
Solution for Gionee Retailers
Solution for Gionee RetailersSolution for Gionee Retailers
Solution for Gionee Retailers
 
Sistema interamericano
Sistema interamericanoSistema interamericano
Sistema interamericano
 
Ergodesign - Perspectivas
Ergodesign - PerspectivasErgodesign - Perspectivas
Ergodesign - Perspectivas
 
Персональная коммуникация с клиентами. Геймификация
Персональная коммуникация с клиентами. ГеймификацияПерсональная коммуникация с клиентами. Геймификация
Персональная коммуникация с клиентами. Геймификация
 
La investigación en enfermería
La investigación en enfermeríaLa investigación en enfermería
La investigación en enfermería
 

Similar to Ubuntu alternate ubuntu installation

Arraque dual "open suse y windows"
Arraque dual "open suse y windows"Arraque dual "open suse y windows"
Arraque dual "open suse y windows"
Eduardo Gonzalez Vazquez
 
Dual Booting Win7 and ubuntu
Dual Booting Win7 and ubuntuDual Booting Win7 and ubuntu
Dual Booting Win7 and ubuntu
Ravi Malik
 
Day 6 ubuntu boot camp
Day 6 ubuntu boot campDay 6 ubuntu boot camp
Day 6 ubuntu boot camp
Darlene Parker
 
101 2.2 install boot manager
101 2.2 install boot manager101 2.2 install boot manager
101 2.2 install boot manager
Acácio Oliveira
 
2.2 install boot manager
2.2 install boot manager2.2 install boot manager
2.2 install boot manager
Acácio Oliveira
 
Redhat OS installation
Redhat OS installationRedhat OS installation
Redhat OS installation
Pontika Gupta
 
101 2.2 install boot manager
101 2.2 install boot manager101 2.2 install boot manager
101 2.2 install boot managerAcácio Oliveira
 
Ghost Framework For Computer Backup
Ghost Framework For Computer BackupGhost Framework For Computer Backup
Ghost Framework For Computer Backup
ceinueng
 
Ubuntu Practice and Configuration
Ubuntu Practice and ConfigurationUbuntu Practice and Configuration
Ubuntu Practice and Configuration
Manoj Sahu
 
Guide to dual booting
Guide to dual bootingGuide to dual booting
Guide to dual bootingMahfud Saja
 
www3.ntu.edu.sg-How to install Ubuntu and Get Started.pdf
www3.ntu.edu.sg-How to install Ubuntu and Get Started.pdfwww3.ntu.edu.sg-How to install Ubuntu and Get Started.pdf
www3.ntu.edu.sg-How to install Ubuntu and Get Started.pdf
ssuseraa78bd1
 
Readme
ReadmeReadme
Readme
bwryno
 
Lubuntu a Lightweight Desktop
Lubuntu a Lightweight DesktopLubuntu a Lightweight Desktop
Lubuntu a Lightweight Desktop
mahrukh rafique
 
Format, Partition, Install OS
Format, Partition, Install OSFormat, Partition, Install OS
Format, Partition, Install OS
Sef Cambaliza
 
Day 5 ubuntu boot camp
Day 5 ubuntu boot campDay 5 ubuntu boot camp
Day 5 ubuntu boot camp
Darlene Parker
 
How to Install ArchLinux to a USB Flashdrive in 2012
How to Install ArchLinux to a USB Flashdrive in 2012How to Install ArchLinux to a USB Flashdrive in 2012
How to Install ArchLinux to a USB Flashdrive in 2012Chukwuma Onyeije, MD, FACOG
 
Mageia1 GNOME installation
Mageia1 GNOME installationMageia1 GNOME installation
Mageia1 GNOME installation
St Louis MUG
 

Similar to Ubuntu alternate ubuntu installation (20)

Arraque dual "open suse y windows"
Arraque dual "open suse y windows"Arraque dual "open suse y windows"
Arraque dual "open suse y windows"
 
Dual Booting Win7 and ubuntu
Dual Booting Win7 and ubuntuDual Booting Win7 and ubuntu
Dual Booting Win7 and ubuntu
 
Day 6 ubuntu boot camp
Day 6 ubuntu boot campDay 6 ubuntu boot camp
Day 6 ubuntu boot camp
 
101 2.2 install boot manager
101 2.2 install boot manager101 2.2 install boot manager
101 2.2 install boot manager
 
2.2 install boot manager
2.2 install boot manager2.2 install boot manager
2.2 install boot manager
 
Linux_Fedora_ppt
Linux_Fedora_pptLinux_Fedora_ppt
Linux_Fedora_ppt
 
Redhat OS installation
Redhat OS installationRedhat OS installation
Redhat OS installation
 
Ubuntu server guide
Ubuntu server guideUbuntu server guide
Ubuntu server guide
 
101 2.2 install boot manager
101 2.2 install boot manager101 2.2 install boot manager
101 2.2 install boot manager
 
Ghost Framework For Computer Backup
Ghost Framework For Computer BackupGhost Framework For Computer Backup
Ghost Framework For Computer Backup
 
Ubuntu Practice and Configuration
Ubuntu Practice and ConfigurationUbuntu Practice and Configuration
Ubuntu Practice and Configuration
 
Guide to dual booting
Guide to dual bootingGuide to dual booting
Guide to dual booting
 
www3.ntu.edu.sg-How to install Ubuntu and Get Started.pdf
www3.ntu.edu.sg-How to install Ubuntu and Get Started.pdfwww3.ntu.edu.sg-How to install Ubuntu and Get Started.pdf
www3.ntu.edu.sg-How to install Ubuntu and Get Started.pdf
 
Linux
Linux Linux
Linux
 
Readme
ReadmeReadme
Readme
 
Lubuntu a Lightweight Desktop
Lubuntu a Lightweight DesktopLubuntu a Lightweight Desktop
Lubuntu a Lightweight Desktop
 
Format, Partition, Install OS
Format, Partition, Install OSFormat, Partition, Install OS
Format, Partition, Install OS
 
Day 5 ubuntu boot camp
Day 5 ubuntu boot campDay 5 ubuntu boot camp
Day 5 ubuntu boot camp
 
How to Install ArchLinux to a USB Flashdrive in 2012
How to Install ArchLinux to a USB Flashdrive in 2012How to Install ArchLinux to a USB Flashdrive in 2012
How to Install ArchLinux to a USB Flashdrive in 2012
 
Mageia1 GNOME installation
Mageia1 GNOME installationMageia1 GNOME installation
Mageia1 GNOME installation
 

More from arunkumar sadhasivam

R Data Access from hdfs,spark,hive
R Data Access  from hdfs,spark,hiveR Data Access  from hdfs,spark,hive
R Data Access from hdfs,spark,hive
arunkumar sadhasivam
 
Native Hadoop with prebuilt spark
Native Hadoop with prebuilt sparkNative Hadoop with prebuilt spark
Native Hadoop with prebuilt spark
arunkumar sadhasivam
 
Hadoop spark performance comparison
Hadoop spark performance comparisonHadoop spark performance comparison
Hadoop spark performance comparison
arunkumar sadhasivam
 
Hadoop Performance comparison
Hadoop Performance comparisonHadoop Performance comparison
Hadoop Performance comparison
arunkumar sadhasivam
 
Windowshadoop
WindowshadoopWindowshadoop
Windowshadoop
arunkumar sadhasivam
 
Ubuntu installation
Ubuntu installationUbuntu installation
Ubuntu installation
arunkumar sadhasivam
 
Hadoop completereference
Hadoop completereferenceHadoop completereference
Hadoop completereference
arunkumar sadhasivam
 

More from arunkumar sadhasivam (7)

R Data Access from hdfs,spark,hive
R Data Access  from hdfs,spark,hiveR Data Access  from hdfs,spark,hive
R Data Access from hdfs,spark,hive
 
Native Hadoop with prebuilt spark
Native Hadoop with prebuilt sparkNative Hadoop with prebuilt spark
Native Hadoop with prebuilt spark
 
Hadoop spark performance comparison
Hadoop spark performance comparisonHadoop spark performance comparison
Hadoop spark performance comparison
 
Hadoop Performance comparison
Hadoop Performance comparisonHadoop Performance comparison
Hadoop Performance comparison
 
Windowshadoop
WindowshadoopWindowshadoop
Windowshadoop
 
Ubuntu installation
Ubuntu installationUbuntu installation
Ubuntu installation
 
Hadoop completereference
Hadoop completereferenceHadoop completereference
Hadoop completereference
 

Recently uploaded

Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
John Andrews
 
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
ukgaet
 
Opendatabay - Open Data Marketplace.pptx
Opendatabay - Open Data Marketplace.pptxOpendatabay - Open Data Marketplace.pptx
Opendatabay - Open Data Marketplace.pptx
Opendatabay
 
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
nscud
 
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
slg6lamcq
 
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
Subhajit Sahu
 
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdfSample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
Linda486226
 
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdfCriminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP
 
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
axoqas
 
Best best suvichar in gujarati english meaning of this sentence as Silk road ...
Best best suvichar in gujarati english meaning of this sentence as Silk road ...Best best suvichar in gujarati english meaning of this sentence as Silk road ...
Best best suvichar in gujarati english meaning of this sentence as Silk road ...
AbhimanyuSinha9
 
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
vcaxypu
 
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
Tiktokethiodaily
 
Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)
TravisMalana
 
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
ewymefz
 
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单
ewymefz
 
一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单
ewymefz
 
Empowering Data Analytics Ecosystem.pptx
Empowering Data Analytics Ecosystem.pptxEmpowering Data Analytics Ecosystem.pptx
Empowering Data Analytics Ecosystem.pptx
benishzehra469
 
Predicting Product Ad Campaign Performance: A Data Analysis Project Presentation
Predicting Product Ad Campaign Performance: A Data Analysis Project PresentationPredicting Product Ad Campaign Performance: A Data Analysis Project Presentation
Predicting Product Ad Campaign Performance: A Data Analysis Project Presentation
Boston Institute of Analytics
 
Ch03-Managing the Object-Oriented Information Systems Project a.pdf
Ch03-Managing the Object-Oriented Information Systems Project a.pdfCh03-Managing the Object-Oriented Information Systems Project a.pdf
Ch03-Managing the Object-Oriented Information Systems Project a.pdf
haila53
 
一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单
enxupq
 

Recently uploaded (20)

Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
 
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
 
Opendatabay - Open Data Marketplace.pptx
Opendatabay - Open Data Marketplace.pptxOpendatabay - Open Data Marketplace.pptx
Opendatabay - Open Data Marketplace.pptx
 
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
 
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
 
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
 
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdfSample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
 
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdfCriminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdf
 
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
 
Best best suvichar in gujarati english meaning of this sentence as Silk road ...
Best best suvichar in gujarati english meaning of this sentence as Silk road ...Best best suvichar in gujarati english meaning of this sentence as Silk road ...
Best best suvichar in gujarati english meaning of this sentence as Silk road ...
 
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
 
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
 
Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)
 
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
 
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单
 
一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单
 
Empowering Data Analytics Ecosystem.pptx
Empowering Data Analytics Ecosystem.pptxEmpowering Data Analytics Ecosystem.pptx
Empowering Data Analytics Ecosystem.pptx
 
Predicting Product Ad Campaign Performance: A Data Analysis Project Presentation
Predicting Product Ad Campaign Performance: A Data Analysis Project PresentationPredicting Product Ad Campaign Performance: A Data Analysis Project Presentation
Predicting Product Ad Campaign Performance: A Data Analysis Project Presentation
 
Ch03-Managing the Object-Oriented Information Systems Project a.pdf
Ch03-Managing the Object-Oriented Information Systems Project a.pdfCh03-Managing the Object-Oriented Information Systems Project a.pdf
Ch03-Managing the Object-Oriented Information Systems Project a.pdf
 
一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单
 

Ubuntu alternate ubuntu installation

  • 2. set the hard disk size: size specified will be used in partition. Install ubuntu
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13. byte space specified in first step 60 gb will be shown here. Select the free space
  • 14. create a new partition. Split the partition to 15 gb for root ,15 gb for swap and remaining for the /hadoop
  • 15. 15 gb for (/) root
  • 17.
  • 18.
  • 19.
  • 20. Click the mount area use as
  • 21. 3 partition for bigdata
  • 22.
  • 23.
  • 24. change use as /home
  • 26.
  • 27.
  • 28. Change mount point to /bigdata
  • 29.
  • 30.
  • 31.
  • 32. install package manager Default Package Manager in DEBIAN / UBUNTU system is : 1) dpkg which is a backend tool for the more powerful apt system 2) apt as Frontend 3) aptitude (GUI of apt) For RED HAT LINUX distros like Fedora or CentOS: 1) rpm as Backend 2) yum as Frontend
  • 33.
  • 35. GRUB, the Grand Unified Bootloader. This is the tiny piece of software responsible for starting up your computer and getting Linux — or Windows, if you dual-boot — loaded into memory. Because the PC architecture has undergone dramatic changes in the last 25 years, the boot process has become more complicated, and requires a small piece of software to handle getting your chosen operating system loaded into memory. With Windows XP, this piece of software is called NTLDR. On Linux, it’s called GRUB. (There was also another bootloader called LILO, but it’s been obsolete for years and is not recommended for new installations, even if your distribution gives you the option.) Both of them do the same thing: they get the operating system loaded into memory, and optionally, present you a menu with different choices on how you would like to boot your system. As I mentioned, there are two options for installing GRUB. First, you can install it to the Master Boot Record of your first hard drive. Second, you can install it to the boot sector of the active (bootable) hard drive partition. Which one is the right one? It depends. If you intend to dual-boot Windows, then you should avoid installing GRUB to the MBR. The reason for this is that Windows occasionally overwrites the MBR, for instance, when you reinstall it, and that could be quite often. When that happens, your Linux system will seem to disappear as your system starts booting directly into Windows, bypassing the boot menu altogether. To avoid this, install GRUB to the boot sector of the active partition instead. There’s an exception to that rule: If you are installing Linux to a secondary hard drive, and no part of it will be on your main hard drive, then you must install GRUB to the MBR, and take your chances with Windows overwriting the MBR with its own at some future date. If this happens, you’ll have to use a Linux rescue CD to get GRUB reinstalled. (I’ll cover this procedure in the future.) If, however, Linux will be the only operating system on your computer, it’s perfectly safe to — and you must — install GRUB to the MBR. Some special circumstance notes: If you run OS/2, you MUST NOT install GRUB to the MBR under any
  • 36. circumstances, or you won’t be able to boot OS/2! You will have to install it to the boot sector of the Linux /boot partition on your primary (first) hard drive. If you don’t have any free unpartitioned space on your first hard drive, you will have to use a resizing tool such as Partition Magic to create some space and have your Linux installation create the Linux /boot partition in that space. The space must be within the first 1024 cylinders of the hard drive. And it will have to be a primary partition as well, not a logical partition. Many computers can’t boot from logical partitions, only primary ones. The root (/) partition can be elsewhere, even on a secondary hard drive. You’ll then need to add the /boot partition to OS/2’s Boot Manager menu once you’ve completed the Linux installation. If you have multiple Windows versions on your computer, and use a Windows boot menu to access them, you can add Linux to the Windows boot menu, but the process for this is somewhat complex, and I don’t intend to cover it here. Install GRUB to the boot sector instead, creating a /boot partition on the primary hard drive if necessary (see the OS/2 note above). As you’ve probably gathered, the simple everyday act of booting up your PC is much more complex than you thought it was. This has a lot to do with the way your computer’s BIOS accesses internal hard drives. The BIOS is the very first bit of software which starts when you turn on your computer, and it’s located on a physical ROM chip inside the machine. Twenty years ago, hard drives of 5 to 20 MB were common, and many PCs even shipped without a hard drive! Even as late as ten years ago, most computer BIOS software could not access more than the first 528 MB of a hard drive, creating booting problems. Eventually a solution called LBA (logical block addressing) raised this limit, first to 8 GB, and in more recent computers, to 137 GB. This is the range that the so-called first 1024 cylinders can access through the BIOS, before your operating system loads (using GRUB, NTLDR, or what have you). As hard drives exceed 137 GB now, and computers with 1TB of hard drive space are just now becoming available to consumers, the 20 year old BIOS design will again make trouble for the seemingly simple task of starting your computer.
  • 37.
  • 38. CTRL=C (HOST KEY +C) to view in full mode: RIGHT CTRL+I to mouse and local windows 7 properly sync
  • 39. as you can see can control mouse in windows command prompt and linux ubuntu screen Settings: to copy any content from windows to ubuntu and ubuntu to windows change the settings. Click settings and change it.
  • 40. Change network to bridge adapter . Change video memory as as much as possible.
  • 41. Click file > preference add extension to make display looking good. Terminal window look bad
  • 42.
  • 43. Install guest Additions extensions: RIGHT-CTRL + F – fullscreen mode:press CTRL +F till you the below screen i.e top menu and footer
  • 44.
  • 45. fails may if install ubuntu-alternate12.04 32 bit on windows 7. default value
  • 46. folder structure of ubuntu as per partition:
  • 47. bigdata created as mentioned in partition
  • 48. bigdata as Root APTCommands: apt-get install apt-get remove purge: When removing software in some files such as configurations are not always removed. To completely remove a package use the purge switch apt-get remove –purge force install To fix broken packages use the force option with install apt-get -f install upgrade: apt-get upgrade dist-upgrade: use apt-get dist-upgrade apt-get dist-upgrade --To re-load your sources.list file use apt-get update
  • 49. apt-get update To set environment variable in ubuntu: ===================================== 1. either edit /etc/bash.bashrc file but we dont have access to edit it >su root >password: root@ubuntu:/home/arun#nano /etc/bash.bashrc ^O to edit the file ^X to save the changes, it will ask whether to save the changes. if yes is given it will save. NOTE : this is bad practice as it causes login failure and affect all user . i created wrong environment variable which causes failure and looping login screen without login in to the screen.please can avoid other options: ============ add enviornment entry file with .sh under etc/profile.d/ files created with shell script will run when ubuntu starts. >su root >password: since we dont have permission to edit the files we can add a file by using sudo root root@ubuntu:/home/arun#mv arun /home/arun/environment.sh /etc/profile.d/ Adds a user sudo adduser Disable a user sudo passwd -l 'username' Delete a user sudo userdel -r 'username' change user password sudo pwd <> e.g sudo pwd arun Enter new password: Retype new password: passwd: passwd change successfully. Add user a to a usergroup sudo usermod -a -G GROUPNAME USERNAME
  • 50. Remove user from a user group sudo deluser USER GROUPNAME NOTE: If you’re an experienced Linux user, it’s possible to configure Ubuntu so that the root account login is activated. Simply type the following at the command prompt to configure Ubuntu so that the root account login is activated sudo passwd root Then type a password. To switch to the root user in the future, type su -. To quit, type exit or hit Ctrl+D. deactivate the root account sudo passwd -l root If you ever want to slip into the root account for a short period, even if you haven’t followed the previous instructions to activate the root account login, you can do so by typing the following: sudo su You’ll be prompted to type your ordinary account login password; do so. When you’ve finished, type exit to return to your standard user account (or hit Ctrl+D). we can temporarily switch to this user by typing the following command, which stands for substitute user: su frank changing permissions: chmod a+rw myfile a-adding r-removing w-writing changing group: chmod g-rw. add(+) read/write permission for owner
  • 51. if ubuntu login causes login loop with login in: ================================================ You might be having problems with LightDM, the login manager that comes in Ubuntu by default. In 12.04 it used to do the same problem you are describing. You can install GDM, an alternative login manager, to get around this: At the login screen, press and hold Ctrl+Alt+F2 (login in to ubuntu using command prompt way) to go to the terminal. Don't be afraid! Just log in here with your username and password. Then, type sudo apt-get install gdm. Let it install and type sudo dpkg-reconfigure gdm and follow the prompts to set it as your login manager. Press Ctrl+Alt+F7 to get back to the login screen which should now look different. Does logging in work? If it does, your problem is solved! If it doesn't, go back to the fullscreen terminal and type sudo dpkg-reconfigure lightdm to set LigthDM as you login manager again. Now you know that this is a problem with your graphics drivers for sure. to delte the folder use ======================= ctrl+Alt+F3 to go to command prompt login login as any user and try >arun@ubuntu: su root >password: >root@ubuntu:/home/arun# rm -rf <<foldername>> to delete the file >root@ubuntu:/home/arun#rm -f envrionment.sh login loop back issue solved : ============================== issue is files created under /etc/profile.d/ will be accessible for all user hence if any thing enter wrong causes login loop back failure all over. i deleted the file in command prompt mode using admin account steps: CTRL+ALT+F3 enter in command prompt mode enter as login arun >arun@ubuntu: su root >password: >root@ubuntu:/home/arun#cd /etc/profile.d >root@ubuntu:/etc/profile.d#rm -rf environment.sh << which i created unknowingly earlier> >sudo reboot reboot the ubuntu and try login worked!!!
  • 52. This error occurs because of 64 bit os installed with 32 bit ubuntu. NOTE: virutal box by default wont support 64 , it is a problem need to fix by following steps: click installable virutal box in repair mode
  • 53. now you can see it shows 64 bit ubuntu. Install above procedure of ubuntu installation in 64 bit .it create a new virtual box icon. Hence make sure delete the desktop icon and click virtual box as like re-installation. After this two virtualbox will be there C:Program FilesOracleVirtualBox make sure not select one in C:Program Files (x86)
  • 54. still error persist change compatibility to windows 7 NOTE: while re-install / repair better kill all vbox tasks in taskmanager. Still not working may be need VT(virtual technology) need to be enabled. Reboot F2 bios setup In windows Bios settings > security tab > intel virtual technology>enabled check it is working fine !!!
  • 55. common errors: Authenticator error: ==================== The root account is disabled by default in Ubuntu, so there is no root password, that's why su fails with an authentication error. Use sudo to become root: sudo -i only temporary only till open session of terminal worked!!! To permanently add a user to root login: sudo passwd root Then type a password. To switch to the root user in the future, type su -. To quit, type exit or hit Ctrl+D.
  • 56. Use sudo to become root: sudo -i only temporary only till open session of terminal To permanently add a user to root login: sudo passwd root Then type a password. To switch to the root user in the future, type su -. To quit, type exit or hit Ctrl+D. Permanently make user to become a root sudo -i only allow to become root only till terminal session open. only till terminal session open. only one terminal session. once closed no more user is root. to permanently enable user as a root follow steps using sudo passwd root: The root account is disabled by default in Ubuntu, so there is no root password, that's why su fails with an authentication error. ERROR: if during installation /media partition isnot given it shows below error. Guest additions media files cannot be installed.
  • 57. 1.Alternate: will be useful if does not have a cd to install. you can install from even windows 7 or any system without any bootable . i.e you can mount the iso file in virtual box in local disk locating the path of iso file and can install easily. experience ubuntu users prefer this. you can have more control the way partition and bootfile everything.only command prompt support not support gui based installation. can find information on how to install Ubuntu from the Alternate CD. The Alternate CD provides more advanced installation options than the standard Desktop CD, which is the recommended method of installing Ubuntu. For instructions on how to use the Desktop CD, see the Graphical Install page on the Ubuntu community documentation site. The alternate CD can be used to upgrade your Ubuntu version. This is useful for offline computers. The alternate CD installer is not a live CD. You can't use it to try out Ubuntu, test if Ubuntu works or fix a PC/edit partitions without reinstalling. 2.Desktop: if you have CD to install you can use. it is gui based easy over alternate. 3.server: Server edition comes with all the common applications that you would find in a server, php, mysql etc. Server edition doesn't have a GUI (neither gnome or kde). If you want to make your desktop work as a server, just install apache and any other tools that a server needs. Thats the point of the server edition. Is not to be a different version, but a specialized version. It saves you time because all the apps that a server needs come already in the installation cd. Certification as a guest on AWS, Microsoft Azure, Joyent, IBM and HP Cloud Updates to Tomcat (v7), Postgresql (v9.3), Docker v(0.9), Puppet (v3.0), Qemu (v2.0), Libvirt (v1.2), LXC (v1.0) and MySQL (v5.5)
  • 58. between the Desktop and the Alternate installation: The Desktop install CD image contains a graphical installer as well as a live session of Ubuntu, that runs directly off your computer memory and the install media without installing anything to hard-disk. Using the live session installer you have the opportunity to begin using Ubuntu immediately, get an idea of system performance and install if and when ready. The Alternate CD has an old style, lightweight text-based installer with no Live session available. It also provides you with extra options and configurations not offered by the desktop versions. What do the DVD images contain? The Ubuntu DVD is a conjugation(link between alternate and desktop) of the Alternate and the Desktop CD. At the boot prompt, you can select to either go into the Live session with a graphical install, or do the old classical install. sources.list file Repositories are particular locations on the web which contain the thousands of packages (each containing programs, applications, etc) that you would need on your computer. The sources.list file contains the list of all the repositories that will be used to download packages in Synaptic and APT (see APTPage); it is located in /etc/apt/. Since /etc is the directory for system- wide configurations, you will require root privileges to edit it . Partition type during installation: Guided -resize SCSI3:
  • 59. it creates 2 partition one for / and one for swap and allow you to change the size to have for root and swap.it ony shown if you partitioned already using manual method. Guided entire disk: it creates fixed partition by system , you cannot change the memory size allocated for root(/) and swap.
  • 60. As you can see now resize SCSI3 is showing:
  • 61. Guided Entire Disk and set up LVM: guided partition allows you to set up LVM(Logical volume manager) so with this further with this you can able to grow logical volumes later using later using the LVM Tools . So smaller part of partition towards LVM adds more flexibility.
  • 62.
  • 63. Guided partition -use entire disk and set up encrypted LVM: if encryption is needed you can use this partiton type. NOTE: To create a desk version , you can download POWER ISO and ubuntu as iso and write to disk and can install ubuntu from CD. Guided -use entire disk and set up LVM is easy for beginner because if memory size
  • 64. allocated is low not sure than we can change later by removing space from other drive and move to drive which needs space. With logical volume management, the whole disk would be allocated to a single volume group and logical volumes created to hold the / /usr and /home file systems. If, for example the /home logical volume later filled up but there was still space available on /usr then it would be possible to shrink /usr by a few megabytes and reallocate that space to /home. Another alternative would be to allocate minimal amounts of space for each logical volume and leave some of the disk unallocated. Then, when the partitions start to fill up, they can be expanded as necessary. As an example: Joe buys a PC with an 8.4 Gigabyte disk on it and installs Linux using the following partitioning system: /boot /dev/hda1 10 Megabytes swap /dev/hda2 256 Megabytes / /dev/hda3 2 Gigabytes /home /dev/hda4 6 Gigabytes This, he thinks, will maximize the amount of space available for all his MP3 files. Sometime later Joe decides that he want to install the latest office suite and desktop UI available but realizes that the root partition isn't large enough. But, having archived all his MP3s onto a new writable DVD drive there is plenty of space on /home. His options are not good: 1.Reformat the disk, change the partitioning scheme and reinstall. 2.Buy a new disk and figure out some new partitioning scheme that will require the minimum of data movement. 3.Set up a symlink farm on / pointing to /home and install the new software on /home With LVM this becomes much easier: NOTE: if guest additions icon in devices tab is clicked /media files is not able to understand show error " cannot able to mount media c:/vboxGuestAdditions.iso.hence .if already installed it shows the error message. As you can previously i given /bigdata folder hence the issue. Now i given only partition
  • 65. root (/) hence now the guest additions is working.
  • 66. Correctly working gui settings: Preference:
  • 68.
  • 69.
  • 70.
  • 71.
  • 72. command to check partition: arun@ubuntu:~$ sudo lsblk -o NAME,FSTYPE,SIZE,MOUNTPOINT,LABEL