LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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


Closed Thread
  Search this Thread
Old 08-20-2010, 08:20 PM   #16
linuxishard
Member
 
Registered: Jun 2010
Distribution: Ubuntu 10.10 Netbook Remix
Posts: 81

Original Poster
Rep: Reputation: 16

Quote:
Originally Posted by onebuck View Post
Hi,



If you are the legal license holder then install the image. The EULA states single use unless multiple license. I personally would not get involved with the actions since this does circumvent the agreement.
so you want me to download another iso image, for no reason? but i already have one. why would i download their image?
 
Old 08-20-2010, 08:22 PM   #17
sag47
Senior Member
 
Registered: Sep 2009
Location: Raleigh, NC
Distribution: Ubuntu, PopOS, Raspbian
Posts: 1,899
Blog Entries: 36

Rep: Reputation: 477Reputation: 477Reputation: 477Reputation: 477Reputation: 477
Quote:
Originally Posted by linuxishard View Post
so you want me to download another iso image, for no reason? but i already have one. why would i download their image?
What does it matter? It's a free download anyways. Anyway I'm not going to fuel this type of discussion further. I'm more interested in seeing if making a WinISO bootable via USB than arguing semantics.
 
Old 08-20-2010, 08:24 PM   #18
linuxishard
Member
 
Registered: Jun 2010
Distribution: Ubuntu 10.10 Netbook Remix
Posts: 81

Original Poster
Rep: Reputation: 16
well im downloading the iso file he presented and placing it on my desktop, what now?
 
Old 08-20-2010, 08:30 PM   #19
sag47
Senior Member
 
Registered: Sep 2009
Location: Raleigh, NC
Distribution: Ubuntu, PopOS, Raspbian
Posts: 1,899
Blog Entries: 36

Rep: Reputation: 477Reputation: 477Reputation: 477Reputation: 477Reputation: 477
Sorry. I didn't mean to mislead you with my last command.

Code:
dd if=<path of your ISO file> of=<path to your unmounted USB device> bs=2048 count=17
So if you're using the downloaded ISO file. And if your device is /dev/sdd (look for the device in parted or gparted).

So here is a sample command of what you would want to formulate in your terminal.

Code:
dd if=./xpsp3_5512.080413-2113_usa_x86fre_spcd.iso of=/dev/sdd bs=2048 count=17
I think I'm gonna follow onebuck on this one after this final post.
 
Old 08-20-2010, 08:33 PM   #20
linuxishard
Member
 
Registered: Jun 2010
Distribution: Ubuntu 10.10 Netbook Remix
Posts: 81

Original Poster
Rep: Reputation: 16
alright thats a good code how do i find my usb pendrives sdd code? lsusb?
 
Old 08-20-2010, 08:35 PM   #21
sag47
Senior Member
 
Registered: Sep 2009
Location: Raleigh, NC
Distribution: Ubuntu, PopOS, Raspbian
Posts: 1,899
Blog Entries: 36

Rep: Reputation: 477Reputation: 477Reputation: 477Reputation: 477Reputation: 477
Quote:
Originally Posted by linuxishard View Post
alright thats a good code how do i find my usb pendrives sdd code? lsusb?
Look up gparted and parted. Using one of those two utilities are the easiest way. You may need to install them through synaptic or whatever depending on what distro you're using.
 
Old 08-20-2010, 08:43 PM   #22
linuxishard
Member
 
Registered: Jun 2010
Distribution: Ubuntu 10.10 Netbook Remix
Posts: 81

Original Poster
Rep: Reputation: 16
drew@drew-laptop:~$ cd Desktop
drew@drew-laptop:~/Desktop$ dd if=./xpsp3_5512.080413-2113_usa_x86fre_spcd.iso of=/dev/sdd bs=2048 count=17
dd: opening `/dev/sdd': Permission denied
drew@drew-laptop:~/Desktop$
 
Old 08-20-2010, 09:07 PM   #23
sag47
Senior Member
 
Registered: Sep 2009
Location: Raleigh, NC
Distribution: Ubuntu, PopOS, Raspbian
Posts: 1,899
Blog Entries: 36

Rep: Reputation: 477Reputation: 477Reputation: 477Reputation: 477Reputation: 477
Whenever you dd a device you must run the command as root or an admin.
Code:
sudo dd if=./xpsp3_5512.080413-2113_usa_x86fre_spcd.iso of=/dev/sdd bs=2048 count=17
 
Old 08-20-2010, 09:18 PM   #24
linuxishard
Member
 
Registered: Jun 2010
Distribution: Ubuntu 10.10 Netbook Remix
Posts: 81

Original Poster
Rep: Reputation: 16
drew@drew-laptop:~/Desktop$ sudo dd if=./xpsp3_5512.080413-2113_usa_x86fre_spcd.iso of=/dev/sdd bs=2048 count=17
[sudo] password for drew:
17+0 records in
17+0 records out
34816 bytes (35 kB) copied, 0.0210494 s, 1.7 MB/s
drew@drew-laptop:~/Desktop$


what now?
 
Old 08-20-2010, 09:26 PM   #25
sag47
Senior Member
 
Registered: Sep 2009
Location: Raleigh, NC
Distribution: Ubuntu, PopOS, Raspbian
Posts: 1,899
Blog Entries: 36

Rep: Reputation: 477Reputation: 477Reputation: 477Reputation: 477Reputation: 477
Ask in a thread how to boot to a USB stick.
 
Old 08-20-2010, 09:28 PM   #26
linuxishard
Member
 
Registered: Jun 2010
Distribution: Ubuntu 10.10 Netbook Remix
Posts: 81

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by sag47 View Post
Ask in a thread how to boot to a USB stick.
well what did we just do with that command? nothing?
 
Old 08-20-2010, 09:49 PM   #27
sag47
Senior Member
 
Registered: Sep 2009
Location: Raleigh, NC
Distribution: Ubuntu, PopOS, Raspbian
Posts: 1,899
Blog Entries: 36

Rep: Reputation: 477Reputation: 477Reputation: 477Reputation: 477Reputation: 477
You "burned" the ISO image to your USB stick. More precisely you bit banged it.
 
Old 08-20-2010, 09:52 PM   #28
linuxishard
Member
 
Registered: Jun 2010
Distribution: Ubuntu 10.10 Netbook Remix
Posts: 81

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by sag47 View Post
You "burned" the ISO image to your USB stick. More precisely you bit banged it.
should i be able to see something in the pendrive when i open it?
 
Old 08-20-2010, 09:56 PM   #29
sag47
Senior Member
 
Registered: Sep 2009
Location: Raleigh, NC
Distribution: Ubuntu, PopOS, Raspbian
Posts: 1,899
Blog Entries: 36

Rep: Reputation: 477Reputation: 477Reputation: 477Reputation: 477Reputation: 477
Depends on how your distro handles it. Normally no, and all of your data on the USB disk is destroyed because the binary image is written over the filesystem.

Some distros will recognize it as a readonly cd though.
 
Old 08-20-2010, 10:00 PM   #30
linuxishard
Member
 
Registered: Jun 2010
Distribution: Ubuntu 10.10 Netbook Remix
Posts: 81

Original Poster
Rep: Reputation: 16
alright one more thing, can you point me in the direction of a tutorial on how to make it bootable? if you can i think i love you. :P
 
  


Closed Thread



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
using dd to make bootable slack usb battleship Slackware 3 05-31-2010 03:44 AM
make a USB drive bootable cccc Linux - General 2 10-25-2008 11:23 PM
How do you make a usb drive bootable? comcastuser Linux - General 4 06-25-2007 02:19 AM
How to make USB stick bootable? depam Linux - Software 3 12-31-2006 11:22 AM
make a USB stick bootable lothario Linux - Software 1 07-13-2006 01:02 PM

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

All times are GMT -5. The time now is 12:38 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