How can I install Windows 7 without dvd or usb, on linux?
up vote
6
down vote
favorite
I have a different problem that I don't think can be solved but it's better to ask before loosing all hope.
I currently run Crunchbang (Debian dist) and would like to install Windows 7 as well. However, my computer don't have a dvd-reader and all my usb-drives are too small.
Is my only solution to this problem to buy a larger usb-drive?
linux windows-7 usb iso-image dvd
migrated from serverfault.com Aug 4 '12 at 21:01
This question came from our site for system and network administrators.
add a comment |
up vote
6
down vote
favorite
I have a different problem that I don't think can be solved but it's better to ask before loosing all hope.
I currently run Crunchbang (Debian dist) and would like to install Windows 7 as well. However, my computer don't have a dvd-reader and all my usb-drives are too small.
Is my only solution to this problem to buy a larger usb-drive?
linux windows-7 usb iso-image dvd
migrated from serverfault.com Aug 4 '12 at 21:01
This question came from our site for system and network administrators.
In the end, what did you do?
– cdlvcdlv
Aug 7 at 19:21
@cdlvcdlv now this was 6 years ago, I don't remember what I did in the end. Probably just got a bigger USB. But the answer below does sound like a solution in case you don't have access to a larger USB stick.
– Victor Bjelkholm
Aug 8 at 9:35
I supposed you'd say something like that but I had to try... I have Endless OS right now and I cannot use apt commands. I tried several USB boot makers but my W7 DVD won't boot on UEFI when installed on USB (it stop with error about winload.efi and that). Well, thanks anyway.
– cdlvcdlv
Aug 8 at 10:49
add a comment |
up vote
6
down vote
favorite
up vote
6
down vote
favorite
I have a different problem that I don't think can be solved but it's better to ask before loosing all hope.
I currently run Crunchbang (Debian dist) and would like to install Windows 7 as well. However, my computer don't have a dvd-reader and all my usb-drives are too small.
Is my only solution to this problem to buy a larger usb-drive?
linux windows-7 usb iso-image dvd
I have a different problem that I don't think can be solved but it's better to ask before loosing all hope.
I currently run Crunchbang (Debian dist) and would like to install Windows 7 as well. However, my computer don't have a dvd-reader and all my usb-drives are too small.
Is my only solution to this problem to buy a larger usb-drive?
linux windows-7 usb iso-image dvd
linux windows-7 usb iso-image dvd
asked Aug 4 '12 at 19:36
Victor Bjelkholm
135116
135116
migrated from serverfault.com Aug 4 '12 at 21:01
This question came from our site for system and network administrators.
migrated from serverfault.com Aug 4 '12 at 21:01
This question came from our site for system and network administrators.
In the end, what did you do?
– cdlvcdlv
Aug 7 at 19:21
@cdlvcdlv now this was 6 years ago, I don't remember what I did in the end. Probably just got a bigger USB. But the answer below does sound like a solution in case you don't have access to a larger USB stick.
– Victor Bjelkholm
Aug 8 at 9:35
I supposed you'd say something like that but I had to try... I have Endless OS right now and I cannot use apt commands. I tried several USB boot makers but my W7 DVD won't boot on UEFI when installed on USB (it stop with error about winload.efi and that). Well, thanks anyway.
– cdlvcdlv
Aug 8 at 10:49
add a comment |
In the end, what did you do?
– cdlvcdlv
Aug 7 at 19:21
@cdlvcdlv now this was 6 years ago, I don't remember what I did in the end. Probably just got a bigger USB. But the answer below does sound like a solution in case you don't have access to a larger USB stick.
– Victor Bjelkholm
Aug 8 at 9:35
I supposed you'd say something like that but I had to try... I have Endless OS right now and I cannot use apt commands. I tried several USB boot makers but my W7 DVD won't boot on UEFI when installed on USB (it stop with error about winload.efi and that). Well, thanks anyway.
– cdlvcdlv
Aug 8 at 10:49
In the end, what did you do?
– cdlvcdlv
Aug 7 at 19:21
In the end, what did you do?
– cdlvcdlv
Aug 7 at 19:21
@cdlvcdlv now this was 6 years ago, I don't remember what I did in the end. Probably just got a bigger USB. But the answer below does sound like a solution in case you don't have access to a larger USB stick.
– Victor Bjelkholm
Aug 8 at 9:35
@cdlvcdlv now this was 6 years ago, I don't remember what I did in the end. Probably just got a bigger USB. But the answer below does sound like a solution in case you don't have access to a larger USB stick.
– Victor Bjelkholm
Aug 8 at 9:35
I supposed you'd say something like that but I had to try... I have Endless OS right now and I cannot use apt commands. I tried several USB boot makers but my W7 DVD won't boot on UEFI when installed on USB (it stop with error about winload.efi and that). Well, thanks anyway.
– cdlvcdlv
Aug 8 at 10:49
I supposed you'd say something like that but I had to try... I have Endless OS right now and I cannot use apt commands. I tried several USB boot makers but my W7 DVD won't boot on UEFI when installed on USB (it stop with error about winload.efi and that). Well, thanks anyway.
– cdlvcdlv
Aug 8 at 10:49
add a comment |
5 Answers
5
active
oldest
votes
up vote
9
down vote
accepted
Method 2016.
First of all, you need to create a partition for Windows installation files. It should be 2gb bigger than Windows iso.
Install a tool, that help you install Windows directly from the hard drive:
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install winusb
Install a tool for work with NTFS:
sudo apt-get install ntfs-3g
Format partition in NTFS:
sudo mkfs.ntfs /dev/sdxx
Copy installation files to partition:
sudo winusb --install iso_name /dev/sdxx
Reboot and you will be able to install Windows.
Update:
winusb
is deprecated now, use woeusb
instead. Type woeusb --help
for more information.
Huh, not that I still have this problem, but this definitely sounds like the best solution! Thanks for answering!
– Victor Bjelkholm
Sep 16 '16 at 12:57
update woeusb: sudo woeusb -d ~/Downloads/filename.iso /dev/sdb
– vuhung3990
Feb 19 at 10:41
Any way to installwoeusb
on Endless OS? apt commands aren't available.
– cdlvcdlv
Aug 8 at 11:35
@cdlvcdlv you could always build it from source: github.com/slacka/WoeUSB#build-from-source
– Victor Bjelkholm
Aug 8 at 14:12
@VictorBjelkholm Just to build dependencies you need apt-get, dpkg, etc:sudo apt-get install devscripts equivs gdebi-core
. I'm not even sure you can use gcc.
– cdlvcdlv
Aug 8 at 18:47
add a comment |
up vote
4
down vote
If you are familiar with grub, try the first way.
Install with Windows PE
- Make a windows partition with NFS as filesystem, put your Windows Install Image there.
- Download an Windows PE image with virtual cd-rom software to some where your grub can access.
- Boot the Windows PE with grub, load your Windows Install Image and install it.
- Fix your grub.
Install with help of another computer
- Install windows on another computer
- Run C:WindowsSystem32sysprep.exe and reboot into a live linux
- Make a image of drive C with dd of some other tool on linux
- Restore the image to the active partition of your computer on your linux
- Update your grub.cfg to boot that partition, If you are using ubuntu, you can use
sudo update-grub
to update your grub.cfg automatically.
add a comment |
up vote
3
down vote
If you're comfortable doing it, you might be able to create a small partition on your hard drive, extract the Windows ISO contents to it, then install it from there.
I found a thread about how to do it from within Windows, but it shouldn't be too hard to do it in Linux: http://www.neowin.net/forum/topic/1093625-trying-to-install-windows-8-consumer-preview-but-no-dvd-burner/ (though it doesn't look like they ever did figure out how to get it working, it looks like a good place to start)
But it would probably be easier just to purchase a bigger USB drive :)
Sounds like a possible solution to me. I will try something similar tomorrow. Thanks!
– Victor Bjelkholm
Aug 4 '12 at 22:07
This will probably work but take some fiddling :).
– davidtbernal
Aug 5 '12 at 3:41
add a comment |
up vote
0
down vote
You could do it via PXE booting, but that requires at least one other computer on your network. It would also take you several hours to set it up.
USB sticks are cheap; you should be able to get a 4GB or 8GB stick for just a few euros. Much cheaper than spending all your time trying to set up a PXE boot environment for a single installation.
Yeah, another computer is not a solution for me either. I know that usb sticks are cheap but I rather not buy something that I only use once. And also, almost no stores are open in Spain on sundays...
– Victor Bjelkholm
Aug 4 '12 at 19:43
add a comment |
up vote
0
down vote
You could always look at running windows 7 within a virtual machine.
If you go that route it wouldn't take any additional hardware.
add a comment |
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
9
down vote
accepted
Method 2016.
First of all, you need to create a partition for Windows installation files. It should be 2gb bigger than Windows iso.
Install a tool, that help you install Windows directly from the hard drive:
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install winusb
Install a tool for work with NTFS:
sudo apt-get install ntfs-3g
Format partition in NTFS:
sudo mkfs.ntfs /dev/sdxx
Copy installation files to partition:
sudo winusb --install iso_name /dev/sdxx
Reboot and you will be able to install Windows.
Update:
winusb
is deprecated now, use woeusb
instead. Type woeusb --help
for more information.
Huh, not that I still have this problem, but this definitely sounds like the best solution! Thanks for answering!
– Victor Bjelkholm
Sep 16 '16 at 12:57
update woeusb: sudo woeusb -d ~/Downloads/filename.iso /dev/sdb
– vuhung3990
Feb 19 at 10:41
Any way to installwoeusb
on Endless OS? apt commands aren't available.
– cdlvcdlv
Aug 8 at 11:35
@cdlvcdlv you could always build it from source: github.com/slacka/WoeUSB#build-from-source
– Victor Bjelkholm
Aug 8 at 14:12
@VictorBjelkholm Just to build dependencies you need apt-get, dpkg, etc:sudo apt-get install devscripts equivs gdebi-core
. I'm not even sure you can use gcc.
– cdlvcdlv
Aug 8 at 18:47
add a comment |
up vote
9
down vote
accepted
Method 2016.
First of all, you need to create a partition for Windows installation files. It should be 2gb bigger than Windows iso.
Install a tool, that help you install Windows directly from the hard drive:
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install winusb
Install a tool for work with NTFS:
sudo apt-get install ntfs-3g
Format partition in NTFS:
sudo mkfs.ntfs /dev/sdxx
Copy installation files to partition:
sudo winusb --install iso_name /dev/sdxx
Reboot and you will be able to install Windows.
Update:
winusb
is deprecated now, use woeusb
instead. Type woeusb --help
for more information.
Huh, not that I still have this problem, but this definitely sounds like the best solution! Thanks for answering!
– Victor Bjelkholm
Sep 16 '16 at 12:57
update woeusb: sudo woeusb -d ~/Downloads/filename.iso /dev/sdb
– vuhung3990
Feb 19 at 10:41
Any way to installwoeusb
on Endless OS? apt commands aren't available.
– cdlvcdlv
Aug 8 at 11:35
@cdlvcdlv you could always build it from source: github.com/slacka/WoeUSB#build-from-source
– Victor Bjelkholm
Aug 8 at 14:12
@VictorBjelkholm Just to build dependencies you need apt-get, dpkg, etc:sudo apt-get install devscripts equivs gdebi-core
. I'm not even sure you can use gcc.
– cdlvcdlv
Aug 8 at 18:47
add a comment |
up vote
9
down vote
accepted
up vote
9
down vote
accepted
Method 2016.
First of all, you need to create a partition for Windows installation files. It should be 2gb bigger than Windows iso.
Install a tool, that help you install Windows directly from the hard drive:
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install winusb
Install a tool for work with NTFS:
sudo apt-get install ntfs-3g
Format partition in NTFS:
sudo mkfs.ntfs /dev/sdxx
Copy installation files to partition:
sudo winusb --install iso_name /dev/sdxx
Reboot and you will be able to install Windows.
Update:
winusb
is deprecated now, use woeusb
instead. Type woeusb --help
for more information.
Method 2016.
First of all, you need to create a partition for Windows installation files. It should be 2gb bigger than Windows iso.
Install a tool, that help you install Windows directly from the hard drive:
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install winusb
Install a tool for work with NTFS:
sudo apt-get install ntfs-3g
Format partition in NTFS:
sudo mkfs.ntfs /dev/sdxx
Copy installation files to partition:
sudo winusb --install iso_name /dev/sdxx
Reboot and you will be able to install Windows.
Update:
winusb
is deprecated now, use woeusb
instead. Type woeusb --help
for more information.
edited Nov 17 at 7:06
answered Sep 16 '16 at 7:36
TaPO4eg3D
10613
10613
Huh, not that I still have this problem, but this definitely sounds like the best solution! Thanks for answering!
– Victor Bjelkholm
Sep 16 '16 at 12:57
update woeusb: sudo woeusb -d ~/Downloads/filename.iso /dev/sdb
– vuhung3990
Feb 19 at 10:41
Any way to installwoeusb
on Endless OS? apt commands aren't available.
– cdlvcdlv
Aug 8 at 11:35
@cdlvcdlv you could always build it from source: github.com/slacka/WoeUSB#build-from-source
– Victor Bjelkholm
Aug 8 at 14:12
@VictorBjelkholm Just to build dependencies you need apt-get, dpkg, etc:sudo apt-get install devscripts equivs gdebi-core
. I'm not even sure you can use gcc.
– cdlvcdlv
Aug 8 at 18:47
add a comment |
Huh, not that I still have this problem, but this definitely sounds like the best solution! Thanks for answering!
– Victor Bjelkholm
Sep 16 '16 at 12:57
update woeusb: sudo woeusb -d ~/Downloads/filename.iso /dev/sdb
– vuhung3990
Feb 19 at 10:41
Any way to installwoeusb
on Endless OS? apt commands aren't available.
– cdlvcdlv
Aug 8 at 11:35
@cdlvcdlv you could always build it from source: github.com/slacka/WoeUSB#build-from-source
– Victor Bjelkholm
Aug 8 at 14:12
@VictorBjelkholm Just to build dependencies you need apt-get, dpkg, etc:sudo apt-get install devscripts equivs gdebi-core
. I'm not even sure you can use gcc.
– cdlvcdlv
Aug 8 at 18:47
Huh, not that I still have this problem, but this definitely sounds like the best solution! Thanks for answering!
– Victor Bjelkholm
Sep 16 '16 at 12:57
Huh, not that I still have this problem, but this definitely sounds like the best solution! Thanks for answering!
– Victor Bjelkholm
Sep 16 '16 at 12:57
update woeusb: sudo woeusb -d ~/Downloads/filename.iso /dev/sdb
– vuhung3990
Feb 19 at 10:41
update woeusb: sudo woeusb -d ~/Downloads/filename.iso /dev/sdb
– vuhung3990
Feb 19 at 10:41
Any way to install
woeusb
on Endless OS? apt commands aren't available.– cdlvcdlv
Aug 8 at 11:35
Any way to install
woeusb
on Endless OS? apt commands aren't available.– cdlvcdlv
Aug 8 at 11:35
@cdlvcdlv you could always build it from source: github.com/slacka/WoeUSB#build-from-source
– Victor Bjelkholm
Aug 8 at 14:12
@cdlvcdlv you could always build it from source: github.com/slacka/WoeUSB#build-from-source
– Victor Bjelkholm
Aug 8 at 14:12
@VictorBjelkholm Just to build dependencies you need apt-get, dpkg, etc:
sudo apt-get install devscripts equivs gdebi-core
. I'm not even sure you can use gcc.– cdlvcdlv
Aug 8 at 18:47
@VictorBjelkholm Just to build dependencies you need apt-get, dpkg, etc:
sudo apt-get install devscripts equivs gdebi-core
. I'm not even sure you can use gcc.– cdlvcdlv
Aug 8 at 18:47
add a comment |
up vote
4
down vote
If you are familiar with grub, try the first way.
Install with Windows PE
- Make a windows partition with NFS as filesystem, put your Windows Install Image there.
- Download an Windows PE image with virtual cd-rom software to some where your grub can access.
- Boot the Windows PE with grub, load your Windows Install Image and install it.
- Fix your grub.
Install with help of another computer
- Install windows on another computer
- Run C:WindowsSystem32sysprep.exe and reboot into a live linux
- Make a image of drive C with dd of some other tool on linux
- Restore the image to the active partition of your computer on your linux
- Update your grub.cfg to boot that partition, If you are using ubuntu, you can use
sudo update-grub
to update your grub.cfg automatically.
add a comment |
up vote
4
down vote
If you are familiar with grub, try the first way.
Install with Windows PE
- Make a windows partition with NFS as filesystem, put your Windows Install Image there.
- Download an Windows PE image with virtual cd-rom software to some where your grub can access.
- Boot the Windows PE with grub, load your Windows Install Image and install it.
- Fix your grub.
Install with help of another computer
- Install windows on another computer
- Run C:WindowsSystem32sysprep.exe and reboot into a live linux
- Make a image of drive C with dd of some other tool on linux
- Restore the image to the active partition of your computer on your linux
- Update your grub.cfg to boot that partition, If you are using ubuntu, you can use
sudo update-grub
to update your grub.cfg automatically.
add a comment |
up vote
4
down vote
up vote
4
down vote
If you are familiar with grub, try the first way.
Install with Windows PE
- Make a windows partition with NFS as filesystem, put your Windows Install Image there.
- Download an Windows PE image with virtual cd-rom software to some where your grub can access.
- Boot the Windows PE with grub, load your Windows Install Image and install it.
- Fix your grub.
Install with help of another computer
- Install windows on another computer
- Run C:WindowsSystem32sysprep.exe and reboot into a live linux
- Make a image of drive C with dd of some other tool on linux
- Restore the image to the active partition of your computer on your linux
- Update your grub.cfg to boot that partition, If you are using ubuntu, you can use
sudo update-grub
to update your grub.cfg automatically.
If you are familiar with grub, try the first way.
Install with Windows PE
- Make a windows partition with NFS as filesystem, put your Windows Install Image there.
- Download an Windows PE image with virtual cd-rom software to some where your grub can access.
- Boot the Windows PE with grub, load your Windows Install Image and install it.
- Fix your grub.
Install with help of another computer
- Install windows on another computer
- Run C:WindowsSystem32sysprep.exe and reboot into a live linux
- Make a image of drive C with dd of some other tool on linux
- Restore the image to the active partition of your computer on your linux
- Update your grub.cfg to boot that partition, If you are using ubuntu, you can use
sudo update-grub
to update your grub.cfg automatically.
answered Aug 5 '12 at 3:40
codable
14624
14624
add a comment |
add a comment |
up vote
3
down vote
If you're comfortable doing it, you might be able to create a small partition on your hard drive, extract the Windows ISO contents to it, then install it from there.
I found a thread about how to do it from within Windows, but it shouldn't be too hard to do it in Linux: http://www.neowin.net/forum/topic/1093625-trying-to-install-windows-8-consumer-preview-but-no-dvd-burner/ (though it doesn't look like they ever did figure out how to get it working, it looks like a good place to start)
But it would probably be easier just to purchase a bigger USB drive :)
Sounds like a possible solution to me. I will try something similar tomorrow. Thanks!
– Victor Bjelkholm
Aug 4 '12 at 22:07
This will probably work but take some fiddling :).
– davidtbernal
Aug 5 '12 at 3:41
add a comment |
up vote
3
down vote
If you're comfortable doing it, you might be able to create a small partition on your hard drive, extract the Windows ISO contents to it, then install it from there.
I found a thread about how to do it from within Windows, but it shouldn't be too hard to do it in Linux: http://www.neowin.net/forum/topic/1093625-trying-to-install-windows-8-consumer-preview-but-no-dvd-burner/ (though it doesn't look like they ever did figure out how to get it working, it looks like a good place to start)
But it would probably be easier just to purchase a bigger USB drive :)
Sounds like a possible solution to me. I will try something similar tomorrow. Thanks!
– Victor Bjelkholm
Aug 4 '12 at 22:07
This will probably work but take some fiddling :).
– davidtbernal
Aug 5 '12 at 3:41
add a comment |
up vote
3
down vote
up vote
3
down vote
If you're comfortable doing it, you might be able to create a small partition on your hard drive, extract the Windows ISO contents to it, then install it from there.
I found a thread about how to do it from within Windows, but it shouldn't be too hard to do it in Linux: http://www.neowin.net/forum/topic/1093625-trying-to-install-windows-8-consumer-preview-but-no-dvd-burner/ (though it doesn't look like they ever did figure out how to get it working, it looks like a good place to start)
But it would probably be easier just to purchase a bigger USB drive :)
If you're comfortable doing it, you might be able to create a small partition on your hard drive, extract the Windows ISO contents to it, then install it from there.
I found a thread about how to do it from within Windows, but it shouldn't be too hard to do it in Linux: http://www.neowin.net/forum/topic/1093625-trying-to-install-windows-8-consumer-preview-but-no-dvd-burner/ (though it doesn't look like they ever did figure out how to get it working, it looks like a good place to start)
But it would probably be easier just to purchase a bigger USB drive :)
answered Aug 4 '12 at 22:03
MatthewSot
2,65231934
2,65231934
Sounds like a possible solution to me. I will try something similar tomorrow. Thanks!
– Victor Bjelkholm
Aug 4 '12 at 22:07
This will probably work but take some fiddling :).
– davidtbernal
Aug 5 '12 at 3:41
add a comment |
Sounds like a possible solution to me. I will try something similar tomorrow. Thanks!
– Victor Bjelkholm
Aug 4 '12 at 22:07
This will probably work but take some fiddling :).
– davidtbernal
Aug 5 '12 at 3:41
Sounds like a possible solution to me. I will try something similar tomorrow. Thanks!
– Victor Bjelkholm
Aug 4 '12 at 22:07
Sounds like a possible solution to me. I will try something similar tomorrow. Thanks!
– Victor Bjelkholm
Aug 4 '12 at 22:07
This will probably work but take some fiddling :).
– davidtbernal
Aug 5 '12 at 3:41
This will probably work but take some fiddling :).
– davidtbernal
Aug 5 '12 at 3:41
add a comment |
up vote
0
down vote
You could do it via PXE booting, but that requires at least one other computer on your network. It would also take you several hours to set it up.
USB sticks are cheap; you should be able to get a 4GB or 8GB stick for just a few euros. Much cheaper than spending all your time trying to set up a PXE boot environment for a single installation.
Yeah, another computer is not a solution for me either. I know that usb sticks are cheap but I rather not buy something that I only use once. And also, almost no stores are open in Spain on sundays...
– Victor Bjelkholm
Aug 4 '12 at 19:43
add a comment |
up vote
0
down vote
You could do it via PXE booting, but that requires at least one other computer on your network. It would also take you several hours to set it up.
USB sticks are cheap; you should be able to get a 4GB or 8GB stick for just a few euros. Much cheaper than spending all your time trying to set up a PXE boot environment for a single installation.
Yeah, another computer is not a solution for me either. I know that usb sticks are cheap but I rather not buy something that I only use once. And also, almost no stores are open in Spain on sundays...
– Victor Bjelkholm
Aug 4 '12 at 19:43
add a comment |
up vote
0
down vote
up vote
0
down vote
You could do it via PXE booting, but that requires at least one other computer on your network. It would also take you several hours to set it up.
USB sticks are cheap; you should be able to get a 4GB or 8GB stick for just a few euros. Much cheaper than spending all your time trying to set up a PXE boot environment for a single installation.
You could do it via PXE booting, but that requires at least one other computer on your network. It would also take you several hours to set it up.
USB sticks are cheap; you should be able to get a 4GB or 8GB stick for just a few euros. Much cheaper than spending all your time trying to set up a PXE boot environment for a single installation.
answered Aug 4 '12 at 19:41
Michael Hampton
10.8k33366
10.8k33366
Yeah, another computer is not a solution for me either. I know that usb sticks are cheap but I rather not buy something that I only use once. And also, almost no stores are open in Spain on sundays...
– Victor Bjelkholm
Aug 4 '12 at 19:43
add a comment |
Yeah, another computer is not a solution for me either. I know that usb sticks are cheap but I rather not buy something that I only use once. And also, almost no stores are open in Spain on sundays...
– Victor Bjelkholm
Aug 4 '12 at 19:43
Yeah, another computer is not a solution for me either. I know that usb sticks are cheap but I rather not buy something that I only use once. And also, almost no stores are open in Spain on sundays...
– Victor Bjelkholm
Aug 4 '12 at 19:43
Yeah, another computer is not a solution for me either. I know that usb sticks are cheap but I rather not buy something that I only use once. And also, almost no stores are open in Spain on sundays...
– Victor Bjelkholm
Aug 4 '12 at 19:43
add a comment |
up vote
0
down vote
You could always look at running windows 7 within a virtual machine.
If you go that route it wouldn't take any additional hardware.
add a comment |
up vote
0
down vote
You could always look at running windows 7 within a virtual machine.
If you go that route it wouldn't take any additional hardware.
add a comment |
up vote
0
down vote
up vote
0
down vote
You could always look at running windows 7 within a virtual machine.
If you go that route it wouldn't take any additional hardware.
You could always look at running windows 7 within a virtual machine.
If you go that route it wouldn't take any additional hardware.
answered Aug 4 '12 at 20:06
Tim Brigham
1,029614
1,029614
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f457640%2fhow-can-i-install-windows-7-without-dvd-or-usb-on-linux%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
In the end, what did you do?
– cdlvcdlv
Aug 7 at 19:21
@cdlvcdlv now this was 6 years ago, I don't remember what I did in the end. Probably just got a bigger USB. But the answer below does sound like a solution in case you don't have access to a larger USB stick.
– Victor Bjelkholm
Aug 8 at 9:35
I supposed you'd say something like that but I had to try... I have Endless OS right now and I cannot use apt commands. I tried several USB boot makers but my W7 DVD won't boot on UEFI when installed on USB (it stop with error about winload.efi and that). Well, thanks anyway.
– cdlvcdlv
Aug 8 at 10:49