LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 11-26-2010, 01:23 PM   #1
Slightly Disoriented
Member
 
Registered: Sep 2010
Distribution: Ubuntu 10.10
Posts: 87

Rep: Reputation: 2
Removing Chrome Flow from a USB device.


I recently tried one of Hexxeh's build of Chromium, Vanlla. Of, course it didn't work because of my Wireless card, so I tried to do the same fix that made Ubuntu worked, which was putting a file full of drivers in the /lib/firmware . It didn't, however, work in Chromium. Since nobody helped me on the forums (Here) I want to delete it from my USB. I don't know how though, because when I plug it into Ubuntu it shows it as 3 different devices, instead of one, and I don't know which one to format.
 
Old 11-26-2010, 03:48 PM   #2
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,982

Rep: Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625
What does fdisk say about it? Delete the partitions and then format would be my guess. Gparted might be fine too.

I have used a few of the live usb creators. Can't say why it seems to change the partition table so. In any case to return it you'd need to delete them all not select one.
 
Old 11-26-2010, 06:27 PM   #3
Slightly Disoriented
Member
 
Registered: Sep 2010
Distribution: Ubuntu 10.10
Posts: 87

Original Poster
Rep: Reputation: 2
I'll try that. I would like to get it running and everything, but nobody was helping. I'll try that.
 
Old 11-26-2010, 06:38 PM   #4
Slightly Disoriented
Member
 
Registered: Sep 2010
Distribution: Ubuntu 10.10
Posts: 87

Original Poster
Rep: Reputation: 2
When I tried GParted the first time, with the USB already in, it wouldn't run. Then I tried running it without it in yet, it wouldn't detect it, and now it won't mount the USB. I used Disk Utility to see it and it said there was 13 different partitions on the USB all of different types and sizes. Results of fdisk:
Code:
jetso@Jetso-Inspiron-1525:~$ sudo fdisk -l

Disk /dev/sda: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000080

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1               1           5       40131   de  Dell Utility
/dev/sda2               6        1280    10240000    7  HPFS/NTFS
/dev/sda3   *        1280       17219   128027472    7  HPFS/NTFS
/dev/sda4           17219       19458    17980417    f  W95 Ext'd (LBA)
/dev/sda5           17219       17706     3906250   82  Linux swap / Solaris
/dev/sda6           17706       19458    14073856   83  Linux

WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.


Disk /dev/sdb: 2004 MB, 2004877312 bytes
256 heads, 63 sectors/track, 242 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1         229     1845265+  ee  GPT
Partition 1 has different physical/logical endings:
     phys=(1023, 255, 63) logical=(228, 211, 55)
What should I do? Will I ever be able to use the USB for starage?
 
Old 11-26-2010, 08:20 PM   #5
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,982

Rep: Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625
You do know that you are looking at your installed hard drive and NOT just your usb.


" Device Boot Start End Blocks Id System
/dev/sdb1 1 229 1845265+ ee GPT
Partition 1 has different physical/logical endings:
"

sudo fdisk

Then select your sdb.

!!! be sure you know which drive you are on!!!!



Then delete the partition.

Then make a partition.

Then format it.


If you are unsure see this.


http://nerdfortress.com/2009/04/30/r...m-a-usb-drive/

Last edited by jefro; 11-26-2010 at 08:23 PM.
 
Old 11-26-2010, 08:30 PM   #6
tiredofbilkyyaforallican
Member
 
Registered: Aug 2010
Location: 3rd rock from the sun
Distribution: LMDE/Peppermint/Mint 9,&10/along with a few others
Posts: 152

Rep: Reputation: 22
Quote:
Originally Posted by Slightly Disoriented View Post
I'll try that. I would like to get it running and everything, but nobody was helping. I'll try that.
Unfortunately not everyone just sits around and answers questions all day long. Some of us do hold jobs too I am one of those.Why you did not get help earlier may have been few people have run into the problems you are having.
 
Old 11-26-2010, 08:34 PM   #7
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
you gotta dd the drive, then use Gparted
be very careful with dd too

dd if=/dev/zero of=/dev/sdx bs=512 count=1

so if usb is sdb1 you would put of=/dev/sdb
not /dev/sdb1

that will completely wipe the usb
then use Gparted and it will say you need to create a new msdos filesystem
do that then format it fat32, set boot flag etc

dont dd your hard drive!
 
Old 11-26-2010, 09:11 PM   #8
Slightly Disoriented
Member
 
Registered: Sep 2010
Distribution: Ubuntu 10.10
Posts: 87

Original Poster
Rep: Reputation: 2
@tiredofbilkyyaforallican Sorry, I tend to be a little impatient.

Okay, so if the USB is sdb then I run
Code:
dd if=/dev/zero of=/dev/sdb bs=512 count=1
Right? That will not mess up my system? Then I format the drive a FAT32 for file storage right? As long as I don't screw over my hard drive, and have a USB system that I can store files in ans access from Windows AND Linux, then I will be fine. I want to check with you before I mess with anything. The drive is supposed to be 2 GB also.
 
Old 11-26-2010, 09:27 PM   #9
tiredofbilkyyaforallican
Member
 
Registered: Aug 2010
Location: 3rd rock from the sun
Distribution: LMDE/Peppermint/Mint 9,&10/along with a few others
Posts: 152

Rep: Reputation: 22
That is the way I would run it.and I too am sorry for my ill temper (just a bad day LOL)BTW we both run similar laptops .

Last edited by tiredofbilkyyaforallican; 11-26-2010 at 09:34 PM.
 
Old 11-26-2010, 09:43 PM   #10
Slightly Disoriented
Member
 
Registered: Sep 2010
Distribution: Ubuntu 10.10
Posts: 87

Original Poster
Rep: Reputation: 2
Nothing happened... Here's what happened:
Code:
jetso@Jetso-Inspiron-1525:~$ sudo dd if=/dev/zero of=/dev/sdb bs=512 count=1
1+0 records in
1+0 records out
512 bytes (512 B) copied, 0.00209083 s, 245 kB/s
Any nothing is happening... Gparted still won't run while the USB is plugged in.
 
Old 11-26-2010, 09:57 PM   #11
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,982

Rep: Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625
You have a guid setup on it. You have to fix that.
 
Old 11-26-2010, 10:02 PM   #12
Slightly Disoriented
Member
 
Registered: Sep 2010
Distribution: Ubuntu 10.10
Posts: 87

Original Poster
Rep: Reputation: 2
And how do I do that? Sorry...
 
Old 11-27-2010, 05:12 PM   #13
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,982

Rep: Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625
See reply number 4.
 
Old 11-27-2010, 08:50 PM   #14
Slightly Disoriented
Member
 
Registered: Sep 2010
Distribution: Ubuntu 10.10
Posts: 87

Original Poster
Rep: Reputation: 2
Oh! So your saying that I have to use Gparted to erase all the partitions, then format as FAT32? Gparted wouldn't load when I had the usb in, and when I unplugged it then started Gparted, my computer wouldn't see the USB...
 
Old 11-28-2010, 06:52 PM   #15
Slightly Disoriented
Member
 
Registered: Sep 2010
Distribution: Ubuntu 10.10
Posts: 87

Original Poster
Rep: Reputation: 2
Hello? Any help? Sorry to be impatient, but I need the USB usable.
 
  


Reply



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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Chrome OS device codenames revealed LXer Syndicated Linux News 0 11-26-2010 12:51 PM
LXer: Google bypassing Chrome OS for its tablet device? LXer Syndicated Linux News 1 04-20-2010 06:56 AM
USB drive not working properly, read only device? (USB key storage device) Arodef Linux - Hardware 14 01-01-2010 07:32 AM
bind -> increased UDP packet flow on lo device Tux-Slack Linux - Networking 2 11-10-2007 02:23 PM
usb to serial - no data flow bob.wright1 Linux - Newbie 9 07-31-2007 08:53 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:55 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration