Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 24

Thread: How do I delete Lubuntu live OS from USB thumb drive?

  1. #11
    Join Date
    Jan 2014
    Beans
    462
    Distro
    Lubuntu

    Re: How do I delete Lubuntu live OS from USB thumb drive?

    I am in kind of a hurry right now and will experiment with GParted and mkusb soon -- thanks to everybody for the info about them. But I would like to use one USB drive as soon as possible (ASAP). I did what MonkeyBrain suggested using the default disk utility in Lubunut, see screen shot that shows the formatting commands I asked for. But after formatting the USB drive is not sensed or mounted by the PCManFM for some reason. The USB drive is still sensed by the PC however (again see screen shot after formatting).

    QUESTION: What more must I do for the thumbdrive to be sensed by PCManFM so that I can copy and paste to (and from) it.

    Thanks,

    A.

    DiskFormat.jpg

  2. #12
    Join Date
    Nov 2011
    Location
    /dev/root
    Beans
    Hidden!

    Re: How do I delete Lubuntu live OS from USB thumb drive?

    You need not only the basic partition table, but also a partition and a file system in the partition.

    mkusb makes it straightforward to restore the USB pendrive to a standard storage device with an MSDOS partition table and a FAT32 partition (a partition with a FAT32 file system). But it is possible with another tool too, unless there is some data, that is confusing that tool. The crucial thing done by mkusb is to wipe the first megabyte (overwrite with zeros), which removes data that might confuse various tools, but mkusb can run the whole process.

  3. #13
    Join Date
    Oct 2014
    Location
    Santiago DR
    Beans
    177
    Distro
    Ubuntu

    Re: How do I delete Lubuntu live OS from USB thumb drive?

    Use the standard disk utility that comes with any Ubuntu flavor. Don't try to delete the partition, that will be rejected.
    1. First format the complete disk in MBR/DOS format using the menu sign in the top right corner of the disk utility window.
    2. Create a partition in the free space, use the + sign under the large free space bar. Ignore a possible crash, just restart the Disk Utility.
    3. Format the partition by selecting it from the gears symbol below the large free space bar.

    You should select "Don't overwrite existing data", unless you have a enough free time to wait for the system to write zeroes to the whole USB Stick.
    Last edited by lammert-nijhof; July 19th, 2017 at 09:10 PM.

  4. #14
    Join Date
    Jan 2014
    Beans
    462
    Distro
    Lubuntu

    Re: How do I delete Lubuntu live OS from USB thumb drive?

    OK thanks everybody. Because of limited time, I did the procedure Lammert described and that took care of it.

    A.

  5. #15
    Join Date
    Jan 2014
    Beans
    462
    Distro
    Lubuntu

    Re: How do I delete Lubuntu live OS from USB thumb drive?

    I have two USB thumb drives (8GB and16 GB) and I am interested in having two usb drives that can live boot Lubuntu and also have persistence as well as have some space for storage of data just like a normal USB thumb drive. It looks like there are various tools that can accomplish this: GParted, mkusb/guidus, UNetbootin, perhaps Disks and Startup Disk Creator.

    I would like to just read as much as I need to about the various tools above and try experimenting with them to get a feel for them to get to my goal. I know that I can lose data on the thumbdrives (which is backed up and can always be recovered and reused), but I just do not want to damage the thumb drives (or any other drive) in the process of experimenting. In some of my reading Sudodus suggested not wiping a drive clean too often due to shortening the life of the thumb (pen) drive.

    QUESTION: Is there anything I should not do that would really cause damage to the thumb drives (or any drive)?

    Any other comments or cautions would be welcomed.

    Thanks,

    A.
    Last edited by AbleTassie; July 20th, 2017 at 07:22 AM.

  6. #16
    Join Date
    Nov 2011
    Location
    /dev/root
    Beans
    Hidden!

    Re: How do I delete Lubuntu live OS from USB thumb drive?

    As you mentioned, do not wipe the whole drive clean too often. For example, you can do it when the write speed is reduced to half of the original speed.

    If you use the drive as a persistent live drive, it should work for a long time. Problems are usually caused by damages of the file system of the 'casper-rw' partition or file for persistence, and the USB drive or memory card itself is still healthy.

    If you install an operating system in a pendrive (installed like into an internal drive, but into a USB pendrive or memory card), you must take special care to avoid excessive wear. There are details at this link, help.ubuntu.com/community/Installation/UEFI-and-BIOS#Final_system_tweaks. Typical operating systems for Raspberry Pi are installed like this, and there are several reports of memory cards that are damaged beyond repair (gridlocked or completely dead).

    Electric shock (for example static electricity) can kill any electronic device, also USB pendrives and memory cards.

  7. #17
    Join Date
    Jan 2014
    Beans
    462
    Distro
    Lubuntu

    Re: How do I delete Lubuntu live OS from USB thumb drive?

    Quote Originally Posted by sudodus View Post
    As you mentioned, do not wipe the whole drive clean too often. For example, you can do it when the write speed is reduced to half of the original speed.

    If you use the drive as a persistent live drive, it should work for a long time. Problems are usually caused by damages of the file system of the 'casper-rw' partition or file for persistence, and the USB drive or memory card itself is still healthy.
    Thanks Sudodus,

    I have some questions for you or anybody else who wants to weigh in. In reading about the casper-rw partition, I came across the description below:
    (at https://stackoverflow.com/questions/...istant-on-us):

    "You may think, "well why not just do it as a directory on the stick?" The reason for this is that a FAT32 filesystem doesn't have all the metadata that a Unix environment needs. You need to use something like ext2.

    So what is a casper file? It's a file that has been treated like it's a hard drive partition. That's it. Instead of pointing mkfs.ext2 or mount at /dev/sda3 (a partition), you've pointed it at /mnt/sda3/casper-rw (a file)."

    QUESTION(S): If the above is true, then does that mean I only need one partition on the thumb drive (the casper-rw partition) for both (1) persistence during a live boot and (2) regular use to store data when booting off the hard drive? That is, one partition (the casper-rw partition) in addition to the partition the Lubuntu live boot OS is on in the thumb drive?

    Or do I need three partitions on the thumb drive: one for the Lubuntu live boot OS, one for persistence (casper-rw) and one for storing data during a regular boot off the hard drive?

    Thanks,

    A.

  8. #18
    Join Date
    Nov 2011
    Location
    /dev/root
    Beans
    Hidden!

    Re: How do I delete Lubuntu live OS from USB thumb drive?

    Quote Originally Posted by AbleTassie View Post
    ...

    QUESTION(S):

    If the above is true, then does that mean I only need one partition on the thumb drive (the casper-rw partition) for both (1) persistence during a live boot and (2) regular use to store data when booting off the hard drive? That is, one partition (the casper-rw partition) in addition to the partition the Lubuntu live boot OS is on in the thumb drive?
    When there is only one FAT32 partition that is filling the whole USB pendrive, the available method to create persistence is to make a file with a file system inside, a 'casper-rw' file. But there are disadvantages, for example that the size is limited to 4 GB (the maximum file size in FAT32). You may think that it is an alternative to have a FAT32 partition for the file system and an ext partition with a 'casper-rw' label for persistence, but it does not work (at least not with Ubuntu and the Ubuntu family flavours), when you use the standard boot system (booting via syslinux in BIOS mode).
    Or do I need three partitions on the thumb drive: one for the Lubuntu live boot OS, one for persistence (casper-rw) and one for storing data during a regular boot off the hard drive?
    If you create a USB pendrive, that boots via grub (both in BIOS mode and in UEFI mode), it is possible to use a partition for persistence.

    It might be possible to do this with 3 partitions,

    • a boot partition, which is also an EFI partition,
    • a partition for the system (basically a copy of the content of the iso file)
    • a partition with a 'casper-rw' label for persistence


    But I extended the partition table to 5 partitions in the persistent live systems made with mkusb:

    • partition #1 (located at the tail end of the drive) with the NTFS file system is intended for storage and transfer of data. You can read and write files to this partition both both linux and Windows. There is no size limit for the files.
    • partition #2 either a bios_grub partition (in GPT), or an extended partition (in an MSDOS partition table)
    • partition #3, a boot and efi partition
    • partition #4, with a cloned image of the iso file (containing the system)
    • partition #5, with a 'casper-rw' label for persistence

  9. #19
    Join Date
    Jan 2014
    Beans
    462
    Distro
    Lubuntu

    Re: How do I delete Lubuntu live OS from USB thumb drive?

    Quote Originally Posted by sudodus View Post
    When there is only one FAT32 partition that is filling the whole USB pendrive, the available method to create persistence is to make a file with a file system inside, a 'casper-rw' file. But there are disadvantages, for example that the size is limited to 4 GB (the maximum file size in FAT32). You may think that it is an alternative to have a FAT32 partition for the file system and an ext partition with a 'casper-rw' label for persistence, but it does not work (at least not with Ubuntu and the Ubuntu family flavours), when you use the standard boot system (booting via syslinux in BIOS mode).

    If you create a USB pendrive, that boots via grub (both in BIOS mode and in UEFI mode), it is possible to use a partition for persistence.

    It might be possible to do this with 3 partitions,

    • a boot partition, which is also an EFI partition,
    • a partition for the system (basically a copy of the content of the iso file)
    • a partition with a 'casper-rw' label for persistence


    But I extended the partition table to 5 partitions in the persistent live systems made with mkusb:

    • partition #1 (located at the tail end of the drive) with the NTFS file system is intended for storage and transfer of data. You can read and write files to this partition both both linux and Windows. There is no size limit for the files.
    • partition #2 either a bios_grub partition (in GPT), or an extended partition (in an MSDOS partition table)
    • partition #3, a boot and efi partition
    • partition #4, with a cloned image of the iso file (containing the system)
    • partition #5, with a 'casper-rw' label for persistence

    Thanks Sudodus,

    I've been doing more reading. I think my computer (circa 2008) does not use EFI/UEFI. When I run the terminal command "dmesg | grep "EFI v"" I get nothing.

    In the three partition solution you give, can the casper-rw partition be used for regular storage of data (in both linux and windows)?

    In your 5 partition solution with mkusb your partition #5 for persistence is a different partition than #1 for storage of regular files. What is the advantage of using 5 partitions like this instead of fewer partitions?

    One of the reasons I am interested in persistence is so that I can use the latest version of a web browser (e.g,, Firefox) to browse the internet during a live session -- better security I'm told. The downloaded version of Lubuntu 16.04.2 LTS does not contain the latest version of Firefox. If the latest version of Firefox were in the persistent partition, I assume it would still have to be reinstalled for each USB boot live session after the system boots up. Is this correct?

    Similarly if Libre Office Writer were stored in persistence, it too would have to be reinstalled for each USB boot live session after the system boots up. Is this correct?

    Thanks,

    A.
    Last edited by AbleTassie; July 20th, 2017 at 09:38 PM.

  10. #20
    Join Date
    Nov 2011
    Location
    /dev/root
    Beans
    Hidden!

    Re: How do I delete Lubuntu live OS from USB thumb drive?

    Quote Originally Posted by AbleTassie View Post
    Thanks Sudodus,

    I've been doing more reading. I think my computer (circa 2008) does not use EFI/UEFI. When I run the terminal command "dmesg | grep "EFI v"" I get nothing.
    You are right. A computer from 2008 is booting in the old BIOS mode.
    In the three partition solution you give, can the casper-rw partition be used for regular storage of data (in both linux and windows)?
    No, the casper-rw partition has a linux file system that Windows cannot read. It might be possible to use a FAT32 partition to store files in a way, that it will be available for both linux and Windows.
    In your 5 partition solution with mkusb your partition #5 for persistence is a different partition than #1 for storage of regular files. What is the advantage of using 5 partitions like this instead of fewer partitions?
    Partition #1 is made for storage and transfer of data for and between linux and Windows. The whole layout is made to work in many computers running in both BIOS and UEFI mode. And it is set up automatically with only a few options for you (the end user) to set, so it is easy to make something that works.

    But if you want to do it yourself from scratch, and tweak the system for your particular situation, you are welcome to borrow ideas and tips.
    One of the reasons I am interested in persistence is so that I can use the latest version of a web browser (e.g,, Firefox) to browse the internet during a live session -- better security I'm told. The downloaded version of Lubuntu 16.04.2 LTS does not contain the latest version of Firefox. If the latest version of Firefox were in the persistent partition, I assume it would still have to be reinstalled for each USB boot live session after the system boots up. Is this correct?
    What do you mean by each USB boot live session?

    In a persistent live system you can install (and upgrade) application programs, for example Firefox, and the installed and/or upgraded version will persist, in other words, it will be there after reboot or shutdown and cold boot.

    But it is very important that you allow the system to reboot and shutdown completely, give it time to flush the buffers in other words write the data to the 'casper-rw' partition completely. If you unplug the USB pendrive too early, the system will be damaged.

    In general, persistent live systems are sensitive, and you should take frequent backups. See this link,

    Backup and restore of persistent overlay data
    Similarly if Libre Office Writer were stored in persistence, it too would have to be reinstalled for each USB boot live session after the system boots up. Is this correct?
    Libre Office can also be upgraded and stored so that it persists after reboot or shutdown and cold boot.

    But it is not possible to use an upgraded linux kernel, because the kernel is started before the overlay is activated. In general, you should not update & upgrade a persistent live system completely like you do with an installed system. It is likely to result in a corrupted system. Instead you should only install individual program packages and upgrade individual program packages. And you can tweak the system plus save various data files. For example:

    Code:
    sudo apt-get update
    sudo apt-get install firefox
    sudo apt-get install libre-office
    will keep Firefox and Libre Office up to date.

Page 2 of 3 FirstFirst 123 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •