Linux install from network

Установка Ubuntu по сети

Содержание

Ubuntu, как и многие другие дистрибутивы Linux, можно легко установить по сети. Для этого вам всего лишь потребуется сетевое соединение с компьютером, который будет служить сервером для установки. BIOS вашего компьютера должен для этого поддерживать загрузку по сети.

Настройка сервера для установки

Прежде всего вам потребуется компьютер с Ubuntu или с другим дистрибутивом Linux (данная инструкция написана для Ubuntu), с которого вы будете устанавливать систему (сервер загрузки по сети), и ISO образ Alternate диска с необходимой версией Ubuntu.

Настройка сервера сетевой загрузки

Для установки всего необходимого лучше использовать aptitude, которая не входит в стандартную поставку Ubuntu начиная с версии 10.10. Поэтому сначала ставим aptitude через любую программу установки пакетов или командой

Далее ставим всё необходимое:

Ключ -R нужен для того, чтобы atftpd поставился без inetd сервера, который вам совершенно не нужен.

Теперь пора настроить все компоненты.

TFTP сервер

Откройте файл /etc/default/atftpd в любом текстовом редакторе с правами суперпользователя, например, так:

Измените первую строчку с

Кроме этого запомните каталог, который находится в конце строчки OPTIONS . Скорее всего это будет /srv/tftp , но в старых Ubuntu может быть и /var/lib/tftpboot . Редактируем файл /etc/default/tftpd-hpa:

вписываем, запомненный каталог

Теперь просто запустите atftpd :

Теперь создайте в каталоге из OPTIONS папку ubuntu. Далее везде будем считать, что используется каталог /srv/tftp :

На этом настройка TFTP закончена.

Веб-сервер Apache

Что-либо менять в настройках Apache не требуется, достаточно сделать созданный в предыдущем разделе каталог ubuntu доступным через HTTP . Для этого создайте на него симлинк из рабочей папки Apache:

DHCP сервер

В этом файле необходимо изменить следующие настройки:

Теперь необходимо перевести второй компьютер в режим загрузки по сети. После этого Вы должны увидеть экран установки Ubuntu.

Установка по при помощи Minimal CD

Если вы по каким-то причинам не можете использовать полноценный диск с Ubuntu, но всё же в вашем компьютере есть CD привод и подключение к интернету, то вы можете поставить систему по сети, загрузившись с маленького диска Minimal CD.

В этом случае система поставится целиком из интернет-репозитория, а диск нужен будет только для запуска процесса установки.

Источник

Сетевая установка Linux

Недавно столкнулся с установкой Centos 7 в необычных условиях.

Во-первых, дома. То есть имел дело с локальными компьютером, а не с сервером с IPMI.

Во-вторых, за неимением дискового привода обычно использую загрузочную флешку, которая в данном случае оказалась бесполезной, так как новый компьютер загружается только с флешек с инсталятором Windows. Проблема не новая, судя по отзывам о материнской плате.

В моем распоряжении осталась сеть. Приведу пример установки Centos 7 по PXE и iPXE

Итак, начнем.

Как установить Linux через ipxe?
Как установить Linux через pxe?

Установка через PXE

Соединим ethernet кабелем компьютер1 — на котором будут DHCP, TFTP и компьютер2 — на который должна быть установлена ОС.

Добавим статичные настройки сетевого адаптера на компьютер1. Мой адрес 192.168.1.50.

Скачаем и установим TFTP. В этой программе настроим DHCP и TFTP сервер с которого отдадим IP адрес и установочные файлы компьютеру2.

Отключим брандмауэр и запустим tftpd с правами администратора. Выставим аналогичные установки, как на картинках. Возможно потребуется перезапуск tftpd.

На компьютере2 в boot меню выберем сетевой адаптер. В окне tftpd на компьютере1 будет отображаться шкала прогресса.

После этого, на компьютере2 загрузится окно инсталлятора ОС.

Установка Linux через iPXE

Скачаем образ ipxe.iso. Rufus-ом создадим загрузочную флешку на основе этого образа.

Выложим скрипт install.ipxe на любой веб сервер. О том, как поднять веб сервер на локальном компьютере можно узнать тут. Адрес моего скрипта будет таким sitename.ru/install.ipxe

Содержимое скрипта install.ipxe для установки Centos 7

По аналогии с этим скриптом для установки Centos 7, можете подготовить свой скрипт для установки другой ОС.

Соединим компьютер, на который необходимо установить Linux, и роутер ethernet кабелем. Вставим флешку и загрузимся с нее. После нажатия F12 появится ipxe консоль. Используем следующие команды для получения IP адреса и скачивания скрипта

После этого загрузится окно инсталлятора ОС.

Источник

Как установить Linux из сети

#Defaults for tftpd-hpa
RUN_DAEMON=»yes»
OPTIONS=»-l -s /var/lib/tftpboot»

Создаём нужный каталог: mkdir /var/lib/tftpboot, и стартуем сервис invoke-rc.d tftpd-hpa start

atftpd:
После установки обнаруживаем, что по-умолчанию этот сервис работает через inetd. Я, почему-то, не фанат этого метода, поэтому первым делом закомментировал соответствующую строку в /etc/inetd.conf. Затем редактируем /etc/default/atftpd:

USE_INETD=false
OPTIONS=»—daemon —tftpd-timeout 1500 —no-multicast —retry-timeout 20 —logfile /var/log/atftpd.log —maxthread 100 —verbose=5 /var/lib/tftpboot»

—tftpd-timeout — время жизни потока, при отсутствии запросов
—retry-timeout — таймаут отдачи файла
у меня установлены большие таймауты, т.к. сервис транслируется в городскую локальную сеть, которая периодически прогибается от обилия абонентов, и не справляется с потоком запросов.
Ну и, как и в предыдущем пункте, — создаём нужный каталог: mkdir /var/lib/tftpboot, и стартуем сервис invoke-rc.d atftpd start

Теперь у нас есть tftp-сервер. Один шаг мы сделали 🙂
Далее — настройка dhcp:

    dhcp3:
    В конфигурационный файл /etc/dhcp3/dhcpd.conf добавляем информацию о загрузке:

    filename «pxelinux.0»;
    next-server ;

    Если tftpd установлен на том же сервере, что и dhcpd — директиву next-server можно опустить. И перезапускаем dhcp3-server: invoke-rc.d dhcp3-server restart

    Источник

    Ubuntu → Установка Ubuntu по сети (DHCP, PXE, boot-menu) / На примере Ubuntu 14.04

    Уже довольно давно, мной была написана статья о сетевой установке Ubuntu, по локальной сети, без использования различных носителей, только загрузка по PXE и все. В этот раз я решил обновить статью и сделать ее ближе к современным реалиям, а главное, расширить функционал. Все будет выполняться на примере Ubuntu 14.04!

    Под разные требования, должны быть и разные решения, главная загвоздка в том, что зачастую, нам требуется не одна операционная система, а несколько. Вот я и решил написать на эту тему статью. С предыдущей статьей, можно ознакомиться по ссылке, Установка Ubuntu по сети.
    Главная идея заключаться в том что у нас появится возможность, выбирать какую операционную систему мы будем устанавливать, а также ее разрядность, фактически, у нас появится меню загрузки, после загрузки системы по локальной сети.
    Все это мы реализуем, на примере, только что вышедшей Ubuntu 14.04

    Для тех кто не понял, все затевается ради того чтобы появилась возможность выбора, какую операционную систему устанавливать, а также ее разрядность т.е. должно появиться меню где будут представлены все ОС доступные для установи по сети, которое будет иметь следующий вид:

    Для работы нам понадобится:

    Обязательно!
    1) Настроенный шлюз, для примера, воспользуйтесь статьей: Настройка шлюза локальной сети, на базе Ubuntu
    2) DHCP сервер, для примера, можно воспользоваться статьёй: Настройка DHCP сервера под управлением Ubuntu
    3) Настроенный TFTP сервер, загружающий PXE загрузчик, воспользоваться статьёй: Настройка PXE Boot меню с мемтестом и паролями

    Опционально!
    3) Дополнительным, но не обязательным моментом, может быть настроенный DNS сервер, пример есть в статье Настройка DNS сервера для локальной сети

    Предполагается что у вас настроен шлюз, DHCP, TFTP севрер, а также добавлено меню загрузки PXE т.к. на этом моменте я останавливаться не буду.

    Переходим к настройке инсталлируемой системы.

    Для начала мы создадим пункт установки для Ubuntu 14.04×86, для чего нам понадобится установочный диск соответствующей разрядности. Нам его необходим скачать и примонтировать, для того чтобы извлечь файлы загрузчика инасталятора системы.
    Т.к. файл сетевого загрузчика у нас лежат в директории директории /var/lib/tftpboot/ откуда они и подтягиваются TFTP сервером, то в ней нам нужно создать директорию Ubuntu, чтобы в нее сложить файлы с дисков установки, сделаем это:

    В директории Uubntu мы создаем дополнительные директории для файлов загрузчика инсталлятора ОС для x86 разрядных систем и ADM64-соответсвенно.

    Теперь нам требуется скачать установочный диск посмотреть можно тут mirror.yandex.ru/ubuntu-releases/14.04/
    Мы качнем версию х86 для сервера т.к. она меньше весит

    После завершения закачки ISO образа, нам нужно его смонтировать, чтобы извлечь нужные нам файлы, а для этого, в директории /media мы создадим директорию iso, давайте сделаем это:

    Монтируем образ диска в эту директорию:

    Система выдаст что диск смонтирован в режиме чтения:

    mount: warning: /media/iso/ seems to be mounted read-only.

    Идем забирать загрузчик и ядро инсталятора:

    Нас интересуют 2 файла linux и initrd.gz, которые нам нужно забрать и перенести в директорию /var/lib/tftpboot/ubuntu/x86
    давайте скопируем их:

    Все, установочный образ нам больше не нужен, для начала отмонтируем его из директории iso:

    После этого ISO-образ можно удалить.
    Похожие действия проводим для образа установочного диска с разрядностью x64, я не буду расписывать что и куда, просто приведу листинг команд, действия все те же, только пути немного отличаются, там прописано amd64

    С файлами установки закончили, теперь настроим PXE меню загрузки.

    Настройка меню загрузки PXE

    Для начала добавим пункт меню с названием Linux Install, для этого нам нужно отредактировать файл:

    В конец файла добавим запись:

    Как видно из записи, у нас будет другая страница с выбором дисирибутивов для установки, создадим ее:

    Добавим в нее названия пунктов для загрузки с возможностью выбора операционной системы для установки, пока это будет Ubuntu 14.04 x86 и amd64 архитектуры:

    На этом настройка закончена, можно подключать клиентскую машину и пытаться загрузиться по PXE, в результате после загрузки системы по сети, у нас появится меню такого вида:

    Выбираем то что мы хотим установить, установка начнется автоматически, ну а далее только следовать указаниям инсталятора системы.
    Другие операционные системы добавляются аналогичным способом.
    На этом, я пожалуй и закончу на сегодня.
    Ну и как всегда, если возникли вопросы прошу в комментарии, нашли ошибку пишите в личку ну или на почту.

    21 комментарий

    Опционально!
    3) Дополнительным, но не обязательным моментом, может быть настроенный DNS сервер, пример есть в статье Настройка DNS сервера для локальной сети

    вот это пункт я пропустил, его тоже настраивать?

    dnsmasq и на тесте с виндой пашет все норм
    а при установки ubuntu дохожу до проверки зеркала архива ubntu затем выдает ошибку проблема с зеркалом архива убунту

    Источник

    Ubuntu Documentation

    Welcome to the Ubuntu Community Installation Guide!

    This guide explains some of the ways in which Ubuntu Linux can be installed to your desktop or laptop computer. It concentrates on installing Ubuntu alongside a pre-existing version Windows so that, each time you start the computer, you can choose which operating system you want to use. It is community created documentation, the work of many hands and minds convinced by their own experience that Linux is a superior operating system and deserves to be widely used. The official guide Ubuntu 16.04 Installation Guide covers a complete list of alternative installation methods for Ubuntu. At present (March 2018), however, it does not explain some of the very important preliminary steps if you want to install Ubuntu alongside Windows.

    We will initially assume that your computer has an standard optical drive that can read and write DVD disks. Further along, we will explain how to work with USB drives if the system has no DVD drive.

    Hardware Requirements

    Ubuntu has been designed keeping in mind the most common hardware, so it is highly likely that Ubuntu will work on your machine without any problem. Nonetheless, you should check if your hardware works with Ubuntu and meets the minimum system requirements. If you already have your computer, you can easily do so by making a LiveDVD or USB drive (as described below) and starting the computer with it in the appropriate drive. You may, however, have to change the boot order (as described below) to get your machine to start from the LiveDVD. If you are buying a new machine from a retail store, inquire of the salesperson and try it with the LiveDVD or USB drive while still in the returnable period. For a comprehensive review of all Ubuntu supported hardware follow this link: Supported Architectures:

    For a list of Ubuntu-certified machines, follow this link: Ubuntu-Certified Hardware:

    However, the fact that a given machine is not listed does not mean that Ubuntu won’t work on it.

    For a list of the the minimal system requirements a machine needs in order to run the graphical version of Ubuntu, follow this link: System Requirements:

    Relative to most modern machines, these requirements are extremely modest.

Make a LiveDVD

The LiveDVD is a fully functional Ubuntu environment, and it allows you to get a taste of Ubuntu on your machine before installing it on your hard disk. You first need to download an .iso image from https://www.ubuntu.com/download/desktop and then burn it to a DVD (see BurningIsoHowto and Installation/CDIntegrityCheck).

Try to Boot from the LiveDVD

You can try putting the LiveDVD in the DVD drive and starting the computer. There is some rather small chance that the computer will boot from the LiveDVD. More likely, it will completely ignore the DVD and boot Windows as usual. If this happens, then the computer came with the hard disk ahead of the DVD in the boot order (also known as the boot sequence). The boot order in machines made after about 2012 is set in something called the UEFI (Uniform Extensible Firmware Interface). You must edit the UEFI to change the boot order.

Changing the Boot Order in the UEFI Editor

Windows has a UEFI editor. It is accessed and works slightly differently in Windows 8.1 and Windows 10. To get to this editor in Windows 8.1, begin from Settings (the cogwheel) on the start page. From there go to «Update and Recovery» then «Recovery» then «Advanced startup» then «Restart now» then «Troubleshoot» then «Advanced options» and then «UEFI Firmware settings». Once you have reached this editor, use the right arrow key to move across to the «Boot» tab and then follow instructions on the screen to move the optical drive to the top of the boot order. It is also a good idea to enable booting from USB. On the Security tab it is possible to disable SecureBoot. It should not be necessary to do so, but if you have trouble getting the boot to start, come back and disable SecureBoot. (Do NOT be tempted to enable «Legacy mode». If you do, Windows won’t work at all and Linux will work poorly.)

To get to the UEFI editor in Windows 10, navigate to Settings. (Click the Windows Start key in the lower left corner of the screen. Above it then appear some icons; the “cogwheel” which shows the word “Settings” when the cursor is over it is the one you want to click. Then:

Now when booted the computer should look for your DVD drive before it jumps into a Windows boot. If there is nothing in the drive, it will (at this stage) still boot Windows. (You may well wonder if the process is this complicated because someone wanted it to be as hard as legally possible to install other operating systems.)

Preparing to Install Ubuntu alongside Windows

Installing Ubuntu Linux as the only operating system is much simpler than installing it alongside Windows so that you can choose when you turn on the computer which operating system to use. If Ubuntu is to be the only operating system, you are ready to install it. But if you are reading this you are probably going to want to preserve the Windows operating system that came with your computer, so we must deal with that more complicated case. The complexities are in dealing with Windows, not Ubuntu.

(1) Back up Windows on a bootable USB drive. There are instructions on the Microsoft web site. This is just a precautionary step, but it is a good idea whether or not you install Ubuntu. The chances of damaging Windows in the process of installing Ubuntu are very slight, but better safe than sorry.

(2) Disable Fast Startup. Windows 8.1 and 10 and presumably future versions have a feature called Fast Startup. When it is enabled — and it is enabled by default — Windows shuts down in a hybrid state, somewhere between a full shutdown and a «sleep» state. The dual boot manager which Ubuntu will install (called grub) does not presently (2018) know how to start Windows from this hybrid state. You must therefore disable Fast Startup if you ever want to use Windows again after installing Ubuntu. Here is how to turn off Fast Startup in Windows 10:

  • Type «Control Panel» in the search box near the lower left corner of the Windows home screen.
  • Click “Control Panel”.
  • Click “Power Options”.
  • Click “Choose what the power buttons do.”
  • Click “Change settings that are currently unavailable.”
  • Scroll down to Shutdown settings and uncheck “Turn on fast startup”.
  • Click “Save changes.”

Now when you shut down Windows you will get a complete shutdown, and the Linux boot manager will be able to start Windows if you tell it to do so.
Other versions of Windows may be different, but do not fail to turn of Fast Startup, or you will never boot Windows again.

(3). Either Shrink the Windows C: Drive to Make Room for Linux OR Turn off Windows Updating

Now comes the most confusing part. Before we can install Linux we must shrink the Windows C drive to make room for Linux. There are two mutually exclusive ways to do this:

  1. Use Windows Disk Management
    • or
  2. Use GParted, a utility available within the Ubuntu installation process.

If the Windows method has been used, GParted may not be available during the Ubuntu installation.

Each method seems to have its problems. The Windows Disk Management utility is perfectly safe but is likely to be unable to shrink the C drive to less than about 60 percent of a terabyte hard disk. That is because some files have been placed far out in the disk space and the Windows utility is unable to move them. (Strangely, the Windows defragmenter detects 0 fragmentation and is unable to move those files.) Moreover, using this method is going to complicate both preparing Windows to receive Linux and the installation of Linux. GParted moves those trouble-making files, can give Linux much more of the disk, and is very easy. There are concerns, however, that if GParted has been used, then when Windows 10 updates, it may damage the Linux partition. One Kubuntu user reports that Windows updates have twice destroyed his Linux partition. ( Post #7 in this thread: https://ubuntuforums.org/showthread.php?t=2385462) Unlike earlier versions of Windows, in Windows 10 it is not possible to completely turn off all updates, though it is possible to reduce them, as explained below.

If the GParted route is chosen, it is probably a good idea to reduce Windows updates to the minimum Microsoft considers essential before installing Ubuntu. Exactly how to do that seems to be evolving in Windows 10. In early 2018, the following method seemed to work. In the “Search” window next to the Windows icon in the lower left corner of the screen type Run. A screen opens saying that Run, a desktop app, was the best match. Start it. In the screen that opens type “services.msc” A long list of “services” comes up. Down near the bottom is “Windows update service.” Click it and in the pane on the left you should be able to “disable” it. It is said, however, that updates that Microsoft considers “Priority,” will still come through. With most updates shut down, the probability of damage to the Linux partition by very occasional use of Windows does not seem to be high.

In choosing between the easy, powerful, but slightly risky GParted and the complicated, weak, but totally safe Disk Management, it should also be borne in mind that the Ubuntu “Files” program and Linux programs such as Writer or Calc (in the LibreOffice suite) can create directories (= folders) in the Windows partition and read and write data files there. Thus, space in the Windows partition is not totally lost to you when using Linux. The reverse is not true; Windows programs cannot read or write anything in the Linux partition. Linux programs, however, must reside in the Linux partition.

Thus, in the end, the choice between the two methods of making room for Linux depends on the expected use of the computer. If it is to be primarily a Windows machine, by all means use Windows Disk Management and give Ubuntu 50 gigabytes or so. If it is to be primarily a Linux machine with only seldom use of Windows, you may want to go with GParted, disable Windows updates, always back up thoroughly before booting Windows, and hope for the best.

Partitioning with Windows Disk Management

If you decide to go with Windows Disk Management, it is worthwhile to look at several good presentations with screen shots on this topic on the Internet. It may be a good idea to first run the Windows defragmenter; again, consult the Internet on this. We give here a summary of the partitioning process that you can easily print and keep at hand as you work.

Click the Windows “Start” icon in the lower left corner of the opening screen. Type “partition” in the search box. “Create and format hard disk partitions” should come up. Click it. A screen comes up showing existing partitions. Right click the partition labeled C. Then in the menu on the right click “Shrink volume.”

A screen appears showing:

Total size before shrink in MB
Size of available shrink space in MB
Enter amount of space to shrink in MB
Total size after shrink in MB

Use the up and down arrows to enter in the third box the amount to shrink. It must be less than the number in the second box, sometimes considerably less.
Click the “Shrink” button.

Standard Installation of Ubuntu 16.04 with a LiveDVD

Put the LiveDVD in the drive and close it. After some whirring, a screen comes up asking whether you want to try Ubuntu or install it. Click the install icon. Next comes a screen with one box asking whether we want to check the Internet for updates and download them as we install and another box asking whether to install third-party software. Normally, check both boxes and click continue.

Then comes the Installation type screen.

If you have not used Windows to shrink the C drive, the first option should say “Install Ubuntu alongside Windows 10.” Pick it; that will start the GParted program. With sliders you can adjust how much space each operating system gets. You should give Ubuntu a minimum of 50 gigabytes, but you can give it much more. When you have the proportion you want, click Continue and the installer will create the new partition. Skip the next paragraph of this text.

If you have used Windows to shrink the C drive, matters will be more complicated because in Windows you shrank the C drive but did not create a new partition. That we must now do. Check “Something else” and click “Continue”. In the next screen click “freespace” then click the + sign on the lower left. In the next screen labeled “Create Partition” select “Logical” and in the “Mount point” box use the drop down menu to select / . In the “Use as” box, use the drop-down menu to select “Ext4 Journaling file system.” Click OK. You should now be brought back to the “Installation type” screen. Click “Install now”.

Proceed to pick your time zone and your keyboard layout. After a bit more whirring of the DVD, Ubuntu is installed. Shut down, remove the DVD, start up and you should get the Linux start menu, pick Ubuntu, and your machine should boot Ubuntu Linux. You can also shut down and restart booting Windows just to be sure that it also works.

Calming the Touchpad

If you are using a laptop with a touchpad you may find when you try LibreOffice Writer that the cursor dances around wildly as you type. With previous Ubuntu releases there was a touchpad option “Disable while typing” which was on by default. Strangely, the option is gone in 16.04. To calm the touchpad, go to “System Settings” then “Mouse and touchpad” and clear all of the boxes at the bottom of the screen, in particular, “Tap to click”. That should fix the problem. To click, you will have to tap the touchpad on the bar at the lower left, not just anywhere. There seems to be some third-party software called touchpad-indicator which has a “disable touchpad on typing” function.

Getting Gedit and other programs

When Ubuntu starts up, it has the launcher on the left of the screen. Programs with icons in the launcher are easily started by clicking the icon. Initially the launcher has the Dash icon, the Files icon, the Firefox web browser, the components of LibreOffice, the System Settings cogwheel icon, Ubuntu software, Trash, and of course Amazon. There are, however, some other useful programs, such as the text editor Gedit, already installed but not in the launcher. To get Gedit into the launcher, click on the Dash, the top icon in the launcher, type “Gedit” and its icon appears on the right. If you like, you can drag it over into the launcher. You can do the same for Screenshot. You can then, if you like, download and install from the Ubuntu repository various useful programs. Some widely used ones are:

Gimp, the image processor that rivals Photoshop

Skype for telephoning over the Internet

CodeBlocks for C++ programming

Pdfshufffler – to split or combine pdf files; useful for documents too big for Writer all in one file.

gThumb image viewer

You are now ready to enjoy Ubuntu Linux!

Alternate Installations

You may not wish to use the standard LiveCD for one of the following reasons:

    Your computer does not meet the hardware requirements, or the required drivers are missing from the standard LiveCD. The LiveCD is designed to support most standard hardware, but this won’t cover every possible configuration.

Or, you may simply prefer to install a more customized version of Ubuntu different from the standard install depending on your taste.

Ubuntu has you covered in this regard, and towards this end you can use an Alternate Installation CD. Refer to the Getting Ubuntu page for download locations. The Alternate CD allows more advanced installation options which are not available with the standard LiveCD.

Installation without a CD

The new generations of laptops and netbooks are increasingly shipping without CD drives. To cater to this need, or if you do not wish to burn a CD to install Ubuntu, you are not left to trudge in the dark — Ubuntu can be installed without using a CD or CD-ROM drive!

Quick Install from USB — A quick guide to installing from a USB memory stick. Intended for less technically-inclined readers.

Install from USB — Installing from a USB memory stick (full version).

USB stick + grub — Similar to above but using grub.

Installation/iso2usb — Overview: cloning and extraction, tools and a simple ‘Do it yourself’ extracting method.

Smart Boot Manager — Installing from a PC which will not boot from a CD.

Install within Windows — Yes, it is possible to install Ubuntu from within Windows without using floppies, a CD, or any other removable media! This uses Wubi, and installs Ubuntu as a large file that may be uninstalled like any other program in Windows.

Install with Floppies — Installing without a CD drive over a network.

Install From Hard Drive with Floppies — Installing without a CD drive or network capabilities from a hard drive.

Install from Existing Linux — Installing using a spare partition from an existing Linux system to house the Ubuntu CD image.

Virtual Machine — Installing using a physical disk to a Virtual Machine.

Portable installed system booting from UEFI & BIOS — A system for a USB pendrive — a good alternative to a persistent live system.

Please refer also to the network installation guides below.

Upgrading an installation

If you are upgrading from a previous version of Ubuntu to a new version, please refer to the Upgrade Notes for upgrading instructions.

Server and network installations

Ubuntu can be installed over a network or the Internet.

Local Network — Booting the installer from a local server, using DHCP, TFTP, and PXE.

Installation/Netboot — Another description of installing over the net, with no CD-ROM drive or a non-bootable SCSI CD-ROM drive.

Netboot Install From Internet — Booting using files saved to an existing partition and downloading the packages from the internet at installation time.

Network Console — Booting from a CD (could be TFTP or similar too) and installing the system over SSH.

On NFS Drive — Installing on a NFS-server and using with diskless clients.

On NFS Drive with Local Boot — Installing on an NFS-server with a local /boot (e.g. Booting from CompactFlash for a silent media center PC).

Quick Install over SSH — A quick guide for installing Hardy Ubuntu 12.04 on a dedicated server over ssh.

Over SSH — Installing on a dedicated server over ssh (full version).

Install with Floppies — Installing without a CD drive over a network.

Installing on external or RAID hard disks

Ubuntu can be installed on an external hard disk or RAID array.

BootFromFirewireHardDisk — Booting Linux from a Firewire hard disk.

BootFromUSB — Booting an Ubuntu system on a USB hard disk on computers which cannot boot from USB (using a boot CD).

BootFromSD — Booting an Ubuntu system from a SD card on computers which cannot boot from SD

LiveUsbPendrivePersistent — Installing Ubuntu or Kubuntu on a USB pendrive with persistent mode.

Installation/LVMOnRaid — Installing onto a Software RAID Array, with all partitions on RAID and LVM (including root and boot).

FakeRaidHowto — Installing onto a BIOS RAID array.

Installation/SoftwareRAID — Install a Linux software RAID

Installation/FromImageLoadedOnHardDrive — Installing via a CD image loaded onto a hard drive.

LVM Installation Guides

Minimal installations

If you have an older computer or a computer with a small amount of memory, see the guides below for help on installing Ubuntu.

Installation/LowMemorySystems — Install Ubuntu on older computers with low memory.

LowEndSystemSupport — Making the desktop interface snappier on machines with low memory.

Installation/MinimalCD — From a minimal CD that downloads packages during install.

Other installation guides

Partitioning — Safely split your hard drive into smaller parts.

MultiOSBoot — Boot more than one operating system from a single hard drive.

WindowsDualBoot — Install Ubuntu on the same hard drive as an existing Windows installation.

Wubi — Installing within Windows

VirtualMachines — Using Ubuntu with VMware and XEN.

InstallCDCustomization — Customize the Ubuntu Alternative Installer/Server installation CD.

Booting — An explanation of the boot process and boot device issues.

Installation/OnXenServer — How to install the Xen-optimized Ubuntu images on XenServer

Installation/UnattendedCD — Making a customized installation CD for unattended installations, with a web-served preseed file

MigratingFromWindows — Instructions on how to transfer data from common Windows applications to their Ubuntu equivalents.

SwitchingFromWindows — Guidance on switching from Windows to Ubuntu and getting used to the differences.

See also

Installation (последним исправлял пользователь almon 2018-03-23 17:31:09)

The material on this wiki is available under a free license, see Copyright / License for details
You can contribute to this wiki, see Wiki Guide for details

Источник

Читайте также:  View all windows updates
Оцените статью