Hi I'm new to linux Ubuntu is just great. From Windows to ubuntu seems far easier than I thought (I used to dread command line etc) I have booted from USB drive I have following questions though 1. How can I see / display the various drives. Either on command prompt or on explorer type window? Drives - HDD / USB / CD etc etc 2. How can I see directories inside each drive 3. How to install software on the USB.yes the same one from which I booted / started machine TIA regards L Enthu(siast).

Answers to your questions 1. You can open nautilus. This is the GUI (explorer way).

Click on Ubuntu's Icon, first in left launcher and write: nautilus then open nautilus file manager and explore the drives - filesystems - folders - files. From command line. Open a terminal (CTRL+ALT+T) and list all the drives - parititons - filesystem type. With following command sudo fdisk -l 2. With nautilus you can see everything as I wrote in first answer.

From command prompt (CTRL+ALT+T) ls -a will list the contents of the current directory. You can install software in live usb, but it is not persistent. The software and all the changes you have done will be lost in next reboot.

If you want to be able to save software and/or configuration you have done, you must create a Live usb-stick with persistent space. Read here about this You can install software either from Ubuntu Software Center or from CLI (CTRL+ALT+T). From CLI (Command Line-Interface) you can use the apt-get. Example of firefox browser installation sudo apt-get install firefox you have to know the package name, you can find it if you don't know it, but this is not a classroom and I'm not a teacher.

Install Ubuntu To Usb Drive

You can search the Web read tutorials.etc to learn more about the powerful CLI. Start from Ubuntu Community Documentation page Regards NikTh. You can install software in live usb, but it is not persistent. The software and all the changes you have done will be lost in next reboot.

Install ubuntu from usb windows

If you want to be able to save software and/or configuration you have done, you must create a Live usb-stick with persistent space. Read here about this THANKS for your detailed answer I have one more question. Hope you can answer While I boot up with my USB I see the hard drives on my machine, I can see the existing drives and directories etc. If any software is installed on my hard drives during my Linux session, will they also be erased when I get out of Linux? Or is this persistence only for USB TIA. The binary you lauch will be in /usr/bin but lots of other files needed to make it run will be in other places. This allows SHARED libs to be used in applications.

Install Package From Usb Ubuntu

If one application uses a library and then you install another application using that same library then only one version will be stored on the hard drive and also if both are running then only one version will be stored in RAM and both processes will use it. This allows packages to be smaller and also use fewer resources. Windows would load multiple copys of the same file to RAM and is wasteful (look at svchost.exe for example), it also duplicates effort in the OS to not use this model.

You can mount partitions as folders within the file system (some people like to keep /home and /var on their own partition for example) but the file system will always be the same, the packages will install where they always will. If these happen to be on other partitions then the kernel manages that but you do not get a Windows style installer where you choose the location of the file if you are using deb files, they will simply install. Thanks to all those who replied Really appreciated I couldn't understand actionparsnip 's second para This is my plan - - - - - As of now I shall try to get a 4 gb USB and use 2 gb or so PEresistance, boot from USB and run Ubuntu What is persistence - - - - - I tried the link on persistence.I couldn't gather / undestand the impact of a higher or lower persistence.for example what are the benefits of a 3 gb persistence over 2 gb persistence? Is it faster? Des it store more? If I buy a 16 GB flash memory drive, install Ubuntu on that flash drive, and boot from that flash drive can I store files up to 10 GB on that drive or is it limited to the persistence I have set? What actually is persistence?

Is persistence needed when I install on a USB hard drive.say USB 500 GB hard drive - - - - - - - - - - - - - - - - - - Is this perisistance thing valid for install on a USB hard drive only? Why do I ask? As an alternative I am thinking of also buying a HDD and running Ubuntu from the HDD on a shared machine. Can I use the whole 500 gb to store libre office files, photos etc,? Thanks a ton Le.

This tutorial is for those who use Ubuntu, Debian or a derivative of Debian Linux and have downloaded a.deb package that they want to install. Typically you can use synaptic, apt-get or aptitude. However, if the package is not available via the repositories you may need to download and install them yourself. How to manually install.deb packages: Note: This process only installs the downloaded.deb package.

If the package has dependencies, you may need to install them as well. Download your chosen.deb package via wget or another method. From the terminal type sudo dpkg -i packagename.deb (replacing packagename with the name of the package) Troubleshooting.deb dependencies: If you receive an error like the following: packagename depends on otherprogram (= 1:0.0.0); however: Package otherprogram is not installed You'll most likely need to install the otherprogram(s) before you can continue to install your.deb package by typing apt-get install otherprogram (replace otherprogram with the program name).