Skip to main content

Installing Ubuntu using USB drive

Sources

Creating live usb
  • Download Ubuntu from here
  • Format the usb drive to NTFS (Use Disk utility)
  • Unmount the usb device (Don't remove it from pc)
  • Use the following command in Linux terminal to copy the .iso file into the usb device
dd if=/location/of/.iso/file of=/location/of/usb/device bs=1024
    • Finding /location/of/usb/device
      • Remove the usb drive
      • Type cd /dev in Terminal
      • Type ls
      • Plug in usb device
      • Again type ls
      • Now it will display the usb device's location (Eg: If two extra items sdc and sdc1 are displayed in the second case /location/of/usb/device =  /dev/sdc (and NOT /dev/sdc1). See the example below
dd if=/home/vineeshvs/Downloads/ubuntu-12.04.2-desktop-i386.iso of=/dev/sdc bs=1024 status=progress

Installation

  • Restart the system and enter BIOS (press F1 or F2 or F10 or Del or Esc (different for different computers))
  • Go to Boot menu and set the boot preference such that usb divice (USB HDD) comes gets the first priority
  • Exit BIOS saving the changes and reboot with the usb device plugged in
  • Now the boot will be done from usb device and you can install Ubuntu
     Manual partitioning
  • Please visit the second link listed in Sources above
  • Sample partition for a 250 GB harddrive:
    • /boot : 300 MB
    • swap : 1998 MB
    • / : 7998 MB
    • /home : 245704 MB

Comments

Popular posts from this blog

Install Modelsim in Ubuntu

Updates (23/09/14): The steps given below are for 32-bit version of Ubuntu. To install Modelsim on 64 bit Ubuntu, please refer to this link.  What is Modelsim? Modelsim is a hardware simulation and debug environment primarily targeted at smaller ASIC and FPGA design ( Ref ) How do I install it? Download Modelsim Linux edition from here   For more information visit me   Go to the download location of the .run file and type chmod +x ModelSimSetup-13.1.0.162.run Visit me for more details Use the command ./ ModelSimSetup-13.1.0.162.run install Modelsim  How do I start Modelsim?   Change your directory to 'Location_where_you_installed_Modelsim '/altera/13.1/modelsim_ase/linuxaloem   Type ./vsim   Verified on: Ubuntu 12.04 LTS

VIS & VL2MV

18/01/2016: -----------     Installing VIS model checker     ----------------------------         Download from: http://vlsi.colorado.edu/~vis/vis_files_2.4.html         Note: First do the installation of glu and then install vis or vl2mv (order doesn't matter)         Installation: Follow the steps in the VIS README file in http://vlsi.colorado.edu/~vis/vis_files_2.4.html         Pitfalls: Dont extract the vis and glu .tar.gz files using gui. Instead use the commands given below             % gzip -dc /tmp/glu-2.4.tar.gz | tar xf -             % gzip -dc /tmp/vis-2.4.tar.gz | tar xf -         Setting environment for VIS          ...

Installing Latex (Miktex+Winedt platform) in windows 7

courtesy: Jinu jayachandran (IIT Bombay) Note: To use latex in windows, you can use the softwares Mikitex and Winedt 1.install the mikitex 2.9 2.Install Winedit 7 3. Start->mikitex 2.9->maintenance->settings->general->change the preference for ‘install missing packages on-the-fly’ to ‘yes’ 4. Start->mikitex 2.9->maintenance(admin)->package manager->repository->change package repository->click ‘packages shall be installed from internet’-> give proxy settings and tick ‘authentication required’-> next->give ldap username and password 5. select any repository 6. Start->mikitex 2.9->maintenance(admin)->package manager->repository->synchronise 7.Start->mikitex 2.9->maintenance(admin)->update(admin) and update by selecting ‘use nearest package repository’ and give proxy settings Now you can start using mikitex using winedit interface. download MikiTex 2.9 download Winedt 7 userguide Note:The ldap i...