A computer components & hardware forum. HardwareBanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » HardwareBanter forum » General Hardware & Peripherals » General
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Cheap USB flash drives



 
 
Thread Tools Display Modes
  #1  
Old November 1st 14, 04:55 PM posted to alt.comp.hardware,alt.os.linux.ubuntu
Norm X
external usenet poster
 
Posts: 111
Default Cheap USB flash drives

Hi,

At first blush, inexpensive USB flash drives might seem a good place to
install the many lovely Linux distros, a policy, I've pursed for many years.
(Windows cannot run on a flash drive only an internal drive.) Although not
my first USB flash drive, I purchased an 8 GB OCZ Rally2 some years ago and
installed Ubuntu 12.04 LTS and was happy for many years. I became more happy
when Skype became so overburdened with bloatware and would no longer run on
any Windows OS I ran. I discovered that Linux Skype was lean and mean and
would run on any Linux, Ubuntu, Debian Kali, WiFiSlax, etc.

However, Ubuntu is edging towards bloatware and outgrew its 8 GB USB flash.
It was harder than I thought it would be to copy its partition to a 16 GB
cheap Transcend USB flash drive. Then I was troubled by a problem related to
a defective USB boot track. But I was able to make the install boot using
NeoSmart EasyBCD Linux boot.

The Transcend is not the only USB flash dive with that problem. I installed
Debian Kali Linux on a 16 GB Lexar and I was only able to make the thing
boot using NeoSmart EasyBCD Linux. However, two different entries in the
boot menu are required for Ubuntu and Kali.

Now I have up graded Ubuntu 12.04 LTS to 14.04 LTS I think I am experiencing
even greater distress from bloatware. Ubuntu seems very slow on the cheap
Transcend USB flash drive. Maybe the problem is the flash drive maybe it is
Ubuntu 14.04 LTS.

Now I am not so sure that inexpensive USB flash drives are a good idea for
the many tasty Linux distros. Maybe a better idea would be to carve up an
external USB HDD with many logical partitions and use Linux multiboot
(grub2). Grub2 seems a little problematic on a flash drive.

Comments?


  #2  
Old November 1st 14, 06:05 PM posted to alt.comp.hardware,alt.os.linux.ubuntu
Paul
external usenet poster
 
Posts: 13,364
Default Cheap USB flash drives

Norm X wrote:
Hi,

At first blush, inexpensive USB flash drives might seem a good place to
install the many lovely Linux distros, a policy, I've pursed for many years.
(Windows cannot run on a flash drive only an internal drive.) Although not
my first USB flash drive, I purchased an 8 GB OCZ Rally2 some years ago and
installed Ubuntu 12.04 LTS and was happy for many years. I became more happy
when Skype became so overburdened with bloatware and would no longer run on
any Windows OS I ran. I discovered that Linux Skype was lean and mean and
would run on any Linux, Ubuntu, Debian Kali, WiFiSlax, etc.

However, Ubuntu is edging towards bloatware and outgrew its 8 GB USB flash.
It was harder than I thought it would be to copy its partition to a 16 GB
cheap Transcend USB flash drive. Then I was troubled by a problem related to
a defective USB boot track. But I was able to make the install boot using
NeoSmart EasyBCD Linux boot.

The Transcend is not the only USB flash dive with that problem. I installed
Debian Kali Linux on a 16 GB Lexar and I was only able to make the thing
boot using NeoSmart EasyBCD Linux. However, two different entries in the
boot menu are required for Ubuntu and Kali.

Now I have up graded Ubuntu 12.04 LTS to 14.04 LTS I think I am experiencing
even greater distress from bloatware. Ubuntu seems very slow on the cheap
Transcend USB flash drive. Maybe the problem is the flash drive maybe it is
Ubuntu 14.04 LTS.

Now I am not so sure that inexpensive USB flash drives are a good idea for
the many tasty Linux distros. Maybe a better idea would be to carve up an
external USB HDD with many logical partitions and use Linux multiboot
(grub2). Grub2 seems a little problematic on a flash drive.

Comments?


If you're going to copy drives, drives which boot, you want "dd",
not file manager copying. It covers the things you didn't think
about when planning the copy. Like the sectors near the beginning
of the storage device.

And you want to be booted into some other OS, while copying the
partition in question. No matter what OS I'm copying, I want the
OS partition to be "quiet" and not have busy files on it.

Both Windows and Linux have "dd" available. This is the Windows port.
I use 0.6beta3.

http://www.chrysocome.net/dd

Let's say /dev/sdb is the new 16GB flash drive and /dev/sda is
the old 8GB drive. This is a drive copy (in Linux)

sudo dd if=/dev/sda of=/dev/sdb bs=262144

That says to copy the 8GB drive to the 16GB drive, only stopping
when one of the two devices runs out. I selected a block size of
0.25MB, as that might be slightly better for the flash chips.
(If you allowed 512 byte transfer steps, it might result in too
much erasing of flash pages. If the flash page is 65536, 262144
is larger than that, so whole pages get written.)

If you measure the precise size of the drive, let's say it is "X",
you can use the "factor" program in Linux, to get the factors of
the drive size. And from those, you can craft a "bs" block size
and "count" parameters. That's for situations where you want
precise control of the amount copied. Multiplying "bs * count"
should be equal to all the factors of the drive size when multiplied
together.

So let's work an example. I just plugged in my Rally2 8GB stick.
Size is 8019509248 bytes. On Linux, I might use the following
to get size info. (On Windows, I use "dd --list".)

sudo fdisk /dev/sda
p
q

When I run factor on the number, it gives

8019509248: 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 239

So I can use this to copy the 8GB sda to sdb. It just so happens
the size of the device is divisible by 262144, so either command
would have achieved the same result. On the Windows version,
you must use the following flavor, because the dd.exe port doesn't
reliably detect the end of USB flash drives. Only hard drives
work right on the Windows one. For USB, craft an exact command.

sudo dd if=/dev/sda of=/dev/sdb bs=262144 count=30592

( 262144 * 30592 = 8019509248 )

On Windows, the equivalent command would be (assuming user
is Administrator, as a replacement for sudo...)

dd.exe if=\\?\Device\Harddisk0\Partition0 of=\\?\Device\Harddisk1\Partition0 bs=262144 count=30592

*******

You should be benchmarking your flash drives. Some read at 30MB/sec
but write at only 3MB/sec. Those are not good candidates for an OS.
I've tried that, and it was extremely slow.

And some distros are slower than others. Mint 16 was slow on my good USB flash,
whereas Mint 17 fixed it. And Mint 17 booted in a reasonable time.
It can be a distro problem. Mint (Mate) 17 is my current "Linux LiveCD on
a USB flash drive" distro. Ubuntu got kicked off.

*******

There are a couple ways you can install on a USB flash:

1) Treat it like a hard drive. That sounds like what you did.
Everything you do on the system, uses the USB flash.
Before you know it, you've got 30GB of stuff (the size of my
largest Ubuntu install in a VM, after a number of years of usage).

2) Use the method that copies the LiveCD to a USB flash, and adds
a 4GB persistent store. This is not the same as a hard disk installation,
as the system behaves like the LiveCD. Any "deltas", any changed files,
are stored in the persistent store. So any packages you install, take
space in the 4GB persistent store. This forces you to place discretionary
storage (downloaded movies) on the hard drive. And then they don't
count towards the persistent store. The persistent store is an EXT3
stored within a bitmap file (journaled so it can handle a dirty shutdown).
The USB stick is formatted FAT32, which forces the persistent store to be =4GB.

I run Linux Mint (Mate) 17 that way, and it works fine.
I'm not a fan of Unity or Metro, and if I have a choice in
the matter, select the most efficient interface available.
That was Mate in this case. The faster I can get to the
Terminal, the happier I am. And I don't need to see dancing
tiles in any case. No matter who makes them. Tiles are for
tile people, not for me.

For method (2), look for USB-creator. Boot a Ubuntu LiveCD,
start USB-Creator, tell it where to find the Mint 17 ISO9660
file, and enter your preferences etc. That's how you make
a Mint USB Flash, from a copy of USB-Creator provided by
a Ubuntu LiveCD.

HTH,
Paul
  #3  
Old November 1st 14, 06:06 PM posted to alt.comp.hardware,alt.os.linux.ubuntu
DecadentLinuxUserNumeroUno
external usenet poster
 
Posts: 172
Default Cheap USB flash drives

On Sat, 1 Nov 2014 09:55:58 -0700, "Norm X" Gave
us:

Hi,

At first blush, inexpensive USB flash drives might seem a good place to
install the many lovely Linux distros, a policy,



mSATA and M.2, idiot.

USB and USB flash are too vulnerable to full volume loss.

SPAM in Usenet is also a policy controlled item.

You do NOT do it, JACKASS.
  #4  
Old November 1st 14, 07:07 PM posted to alt.comp.hardware,alt.os.linux.ubuntu
Chris Ahlstrom[_2_]
external usenet poster
 
Posts: 9
Default Cheap USB flash drives

Norm X wrote this copyrighted missive and expects royalties:

Now I am not so sure that inexpensive USB flash drives are a good idea for
the many tasty Linux distros. Maybe a better idea would be to carve up an
external USB HDD with many logical partitions and use Linux multiboot
(grub2). Grub2 seems a little problematic on a flash drive.

Comments?


Try SanDisk. I remember that particular brand being recommended for
installing CyanogenMod on a microSD card (for an alternate boot on the
Nook). I tried it, and it seemed notably faster than a Lexar microSD.

--
"Help Mr. Wizard!"
-- Tennessee Tuxedo
  #5  
Old November 1st 14, 07:28 PM posted to alt.comp.hardware,alt.os.linux.ubuntu
DecadentLinuxUserNumeroUno
external usenet poster
 
Posts: 172
Default Cheap USB flash drives

On Sat, 1 Nov 2014 15:07:12 -0400, Chris Ahlstrom
Gave us:

Norm X wrote this copyrighted missive and expects royalties:

Now I am not so sure that inexpensive USB flash drives are a good idea for
the many tasty Linux distros. Maybe a better idea would be to carve up an
external USB HDD with many logical partitions and use Linux multiboot
(grub2). Grub2 seems a little problematic on a flash drive.

Comments?


Try SanDisk. I remember that particular brand being recommended for
installing CyanogenMod on a microSD card (for an alternate boot on the
Nook). I tried it, and it seemed notably faster than a Lexar microSD.


The Samsung micros are worth the extra price. They boot Linux on my
Cubox notably faster, even with the same little benchmark readings
popping up, which are obviously reporting on the Cubox's port, not the
stick, I suppose.
  #6  
Old November 1st 14, 08:29 PM posted to alt.comp.hardware,alt.os.linux.ubuntu
ray carter
external usenet poster
 
Posts: 1
Default Cheap USB flash drives

On Sat, 01 Nov 2014 09:55:58 -0700, Norm X wrote:

Hi,

At first blush, inexpensive USB flash drives might seem a good place to
install the many lovely Linux distros, a policy, I've pursed for many
years.
(Windows cannot run on a flash drive only an internal drive.) Although
not my first USB flash drive, I purchased an 8 GB OCZ Rally2 some years
ago and installed Ubuntu 12.04 LTS and was happy for many years. I
became more happy when Skype became so overburdened with bloatware and
would no longer run on any Windows OS I ran. I discovered that Linux
Skype was lean and mean and would run on any Linux, Ubuntu, Debian Kali,
WiFiSlax, etc.

However, Ubuntu is edging towards bloatware and outgrew its 8 GB USB
flash. It was harder than I thought it would be to copy its partition to
a 16 GB cheap Transcend USB flash drive. Then I was troubled by a
problem related to a defective USB boot track. But I was able to make
the install boot using NeoSmart EasyBCD Linux boot.

The Transcend is not the only USB flash dive with that problem. I
installed Debian Kali Linux on a 16 GB Lexar and I was only able to make
the thing boot using NeoSmart EasyBCD Linux. However, two different
entries in the boot menu are required for Ubuntu and Kali.

Now I have up graded Ubuntu 12.04 LTS to 14.04 LTS I think I am
experiencing even greater distress from bloatware. Ubuntu seems very
slow on the cheap Transcend USB flash drive. Maybe the problem is the
flash drive maybe it is Ubuntu 14.04 LTS.

Now I am not so sure that inexpensive USB flash drives are a good idea
for the many tasty Linux distros. Maybe a better idea would be to carve
up an external USB HDD with many logical partitions and use Linux
multiboot (grub2). Grub2 seems a little problematic on a flash drive.

Comments?


So, why not try a 'leaner' system? My wife's netbook ran Debian for quite
some time on a 4GB SSD. I kept it trimmed down by cleaning things out
(with apt) after upgrades. With many Linux distributions you can install
a 'bare' system and then install only what you want.
  #7  
Old November 1st 14, 10:30 PM posted to alt.comp.hardware,alt.os.linux.ubuntu
Paul
external usenet poster
 
Posts: 13,364
Default Cheap USB flash drives

Chris Ahlstrom wrote:
Norm X wrote this copyrighted missive and expects royalties:

Now I am not so sure that inexpensive USB flash drives are a good idea for
the many tasty Linux distros. Maybe a better idea would be to carve up an
external USB HDD with many logical partitions and use Linux multiboot
(grub2). Grub2 seems a little problematic on a flash drive.

Comments?


Try SanDisk. I remember that particular brand being recommended for
installing CyanogenMod on a microSD card (for an alternate boot on the
Nook). I tried it, and it seemed notably faster than a Lexar microSD.


There is a lot of variation from one design to the next,
even with products from the same company. Check the reviews
on a site that sells them, to find the good ones.

I have a Lexar that is good, and another Lexar that the
connector broke on it. The first day. I keep Mint 17 on
the good Lexar.

I have a "Sandisk Ultra 8GB" SDC245-008G that sits in
my "hall of shame", because it isn't useful for anything.

http://www.newegg.com/Product/Produc...9SIA1050KV7853

Read Speed - Up to 15MB/s

Write Speed - Up to 10 MB/sec

Write speed on that one is 1 to 3MB/sec, varying in a sinusoid with
a 4 second time constant. The unit comes with a flashing LED, and the
LED pattern varies all over the place too (depending on where in
the stutter cycle we're at).

Now, that was an impulse buy at a local store, based on
a good experience with a previous purchase. And the reviews on
Newegg give it 2 out of 5. It's a stinker. But of course
the marketing spin calls it "Ultra", as in "Ultra bad".

You don't want to use that for booting anything. I tried (once),
as a joke.

Paul
  #8  
Old November 2nd 14, 03:12 AM posted to alt.comp.hardware,alt.os.linux.ubuntu
Norm X
external usenet poster
 
Posts: 111
Default Cheap USB flash drives

"Paul" wrote

Chris Ahlstrom wrote:
Norm X wrote this copyrighted missive and expects royalties:

Now I am not so sure that inexpensive USB flash drives are a good idea
for the many tasty Linux distros. Maybe a better idea would be to carve
up an external USB HDD with many logical partitions and use Linux
multiboot (grub2). Grub2 seems a little problematic on a flash drive.

Comments?


Try SanDisk. I remember that particular brand being recommended for
installing CyanogenMod on a microSD card (for an alternate boot on the
Nook). I tried it, and it seemed notably faster than a Lexar microSD.


There is a lot of variation from one design to the next,
even with products from the same company. Check the reviews
on a site that sells them, to find the good ones.

I have a Lexar that is good, and another Lexar that the
connector broke on it. The first day. I keep Mint 17 on
the good Lexar.

I have a "Sandisk Ultra 8GB" SDC245-008G that sits in
my "hall of shame", because it isn't useful for anything.

http://www.newegg.com/Product/Produc...9SIA1050KV7853

Read Speed - Up to 15MB/s

Write Speed - Up to 10 MB/sec

Write speed on that one is 1 to 3MB/sec, varying in a sinusoid with
a 4 second time constant. The unit comes with a flashing LED, and the
LED pattern varies all over the place too (depending on where in
the stutter cycle we're at).

Now, that was an impulse buy at a local store, based on
a good experience with a previous purchase. And the reviews on
Newegg give it 2 out of 5. It's a stinker. But of course
the marketing spin calls it "Ultra", as in "Ultra bad".

You don't want to use that for booting anything. I tried (once),
as a joke.

Paul


I purchased a 32 GB SansDisk microSD card on sale for $30. I installed in my
$60 android MK802 IIIs PC. The only software I've purchased on the Google
Play Store is Roehsoft RamExpander, a pagefile system for Android. An early
iteration of his software corrupted the file system on the 32 GB SansDisk
microSD card. I took it out, placed in its SDHC adapter and plugged it into
my Acer netbook. Under Windows, I ran a quick format without changing any of
the defaults. When I plugged it back into the MK802 IIIs, I was impressed
that everything on the microSD card was restored. I have not had any
problems with it and I still use it for the pagefile. Maybe repetitive
writes to a pagefile will wear out an SSD. But since the pagefile is on a
replaceable microSD card rather than the internal flash memory, it is not a
serious concern. I would imagine that Android comes without a pagefile for
that reason, expansion memory is optional.


  #9  
Old November 2nd 14, 03:35 AM posted to alt.comp.hardware,alt.os.linux.ubuntu
Norm X
external usenet poster
 
Posts: 111
Default Cheap USB flash drives

"DecadentLinuxUserNumeroUno" wrote

USB and USB flash are too vulnerable to full volume loss.


In 35 years of micro experience, I've never lost an external USB HHD. I did
lose a 32 GB SansDisk microSD flash, but as I said in another post, I
recovered everything using Windows quick format.

I have lost three 40, 80 and 160 GB internal EIDE hard drives, the last one
after seven years of service. I have one PC with a 3 drive RAID zero storage
array. Since the identical drives are six years old I'm starting to worry.
The Barracuda warrantee was five years. Windows only runs on internal
drives.

After the 160 GB drive stopped spinning I put a 40 GB into my Dell Inspiron
5100 and run Linuxes on 3 partitions. Linux caused too much thermal stress
on the CPU thermal protection mechanism and the Dell refused to boot after
one month of Linux. There is not much hope for an 11 year old Dell that
won't boot.

35 years ago I would retire PCs that became obsolete. Now I do the opposite,
I incorporate e-waste into my LAN. I am hoping the medical authorities treat
me the same and keep me alive by all means possible.


  #10  
Old November 2nd 14, 11:19 AM posted to alt.comp.hardware,alt.os.linux.ubuntu
Chris Ahlstrom[_2_]
external usenet poster
 
Posts: 9
Default Cheap USB flash drives

Norm X wrote this copyrighted missive and expects royalties:

35 years ago I would retire PCs that became obsolete. Now I do the opposite,
I incorporate e-waste into my LAN. I am hoping the medical authorities treat
me the same and keep me alive by all means possible.


What, by hooking you into your LAN?

Brain in a vat? No, too cliché. The modern way is "brain on a LAN"!

--
I am convinced that the truest act of courage is to sacrifice ourselves
for others in a totally nonviolent struggle for justice. To be a man
is to suffer for others.
-- Cesar Chavez
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
USB flash drives cheap John Doe Homebuilt PC's 0 June 2nd 12 09:02 PM
flash choices: USB stick or card reader with (cheap) flash? bulge Homebuilt PC's 6 October 22nd 05 08:29 PM
FA: CHEAP CHEAP CHEAP HARD DRIVES! Qonox Storage (alternative) 3 February 24th 05 11:15 AM
FA: CHEAP CHEAP CHEAP HARD DRIVES! Qonox General 0 February 23rd 05 03:00 PM
FA: CHEAP CHEAP CHEAP HARD DRIVES! Qonox Homebuilt PC's 0 February 23rd 05 03:00 PM


All times are GMT +1. The time now is 09:02 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 HardwareBanter.
The comments are property of their posters.