YUMI Ubuntu 16.04 64 Bit USB to SSD
up vote
0
down vote
favorite
long time Windows user here. Last week I got fed up with Windows 10 and so I used YUMI to create a bootable Ubuntu 16.04 64 Bit USB stick.
So far, I love what I see!
I installed some software and tried a few things...
Now my question is, can I buy myself a new SSD and install/transfer my YUMI USB Ubuntu on it...
So that I do not need to install all the software again and setup all the things I have done so far on the USB Ubuntu...
Any advise / help would be welcome!
Thank you!
ubuntu system-installation live-usb
add a comment |
up vote
0
down vote
favorite
long time Windows user here. Last week I got fed up with Windows 10 and so I used YUMI to create a bootable Ubuntu 16.04 64 Bit USB stick.
So far, I love what I see!
I installed some software and tried a few things...
Now my question is, can I buy myself a new SSD and install/transfer my YUMI USB Ubuntu on it...
So that I do not need to install all the software again and setup all the things I have done so far on the USB Ubuntu...
Any advise / help would be welcome!
Thank you!
ubuntu system-installation live-usb
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
long time Windows user here. Last week I got fed up with Windows 10 and so I used YUMI to create a bootable Ubuntu 16.04 64 Bit USB stick.
So far, I love what I see!
I installed some software and tried a few things...
Now my question is, can I buy myself a new SSD and install/transfer my YUMI USB Ubuntu on it...
So that I do not need to install all the software again and setup all the things I have done so far on the USB Ubuntu...
Any advise / help would be welcome!
Thank you!
ubuntu system-installation live-usb
long time Windows user here. Last week I got fed up with Windows 10 and so I used YUMI to create a bootable Ubuntu 16.04 64 Bit USB stick.
So far, I love what I see!
I installed some software and tried a few things...
Now my question is, can I buy myself a new SSD and install/transfer my YUMI USB Ubuntu on it...
So that I do not need to install all the software again and setup all the things I have done so far on the USB Ubuntu...
Any advise / help would be welcome!
Thank you!
ubuntu system-installation live-usb
ubuntu system-installation live-usb
asked Apr 18 '17 at 21:40
knowledge-seeker
13
13
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
0
down vote
I don't have enough rep to comment asking for clarification, so I'll assume that you're going to put the SSD inside the PC, rather than connect it as an external disk.
First, boot from your bootable USB and double-click the install icon. Select the SSD as the target disk and install Ubuntu onto it. Once it's done installing, don't restart the computer.
Open the /var/cache/apt/archives
folder and copy its contents to somewhere on the SSD, for example /home/user/Desktop/
. Then, go to the home folder on the USB, push Ctrl-H to show hidden files, and copy all the files in the home folder to /home/user/
on the SSD. As well as your personal files, this will also copy application settings, caches and the like.
Now all the files are on the SSD, you just need to reinstall your software.
Reboot the machine and start from the SSD. Navigate to /home/user/Desktop
(or wherever you saved the .deb
files to) in the file manager. Right-click the window and choose "Open in Terminal". Once the terminal opens, enter the command
sudo dpkg -i *.deb
and press enter. All your software will be installed onto the SSD. Once the command finishes, you can delete all the .deb
files that you copied: you very likely won't need to use them again.
You shouldn't need to restart the computer after installing the software.
I will try this once I can logon to my linux again :(
– knowledge-seeker
Apr 24 '17 at 13:31
unix.stackexchange.com/questions/360974/…
– knowledge-seeker
Apr 24 '17 at 13:39
Install Ubuntu on the SSD, mount the casper-rw file and copy over the files that way. If you're having trouble doing that, or if you're now not sure where to put them, comment and I'll edit my answer.
– user171641
Apr 25 '17 at 8:29
thanks, i will get to that part once I figure out what I want to start with...
– knowledge-seeker
Apr 25 '17 at 21:43
I'm sorry, but this is not a great idea. Simply copying over the deb archives may not be representative of every package that has been installed. Much easier to capture the installed packages with this at the Terminal:dpkg --get-selections | grep -w install$ > dpkg-get-selection.txt
then installing fresh onto the SSD, then install the required packages at the new install's Terminal:sudo dpkg --set-selections | grep -w install$ < /path/to/dpkg-get-selection.txt && sudo apt-get -u dselect-upgrade
– neuro
Aug 20 at 16:09
add a comment |
up vote
0
down vote
I installed some software and tried a few things
I'll assume you didn't use a persistent Live CD.
In which case, once you restart, everything you did will be gone.
can I buy myself a new SSD and install/transfer my YUMI USB Ubuntu on it
Sure. OR, you could install & use GParted (might already be there), and make a partition alongside Windows to install Ubuntu (or another Linux distro of your choice)
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I don't have enough rep to comment asking for clarification, so I'll assume that you're going to put the SSD inside the PC, rather than connect it as an external disk.
First, boot from your bootable USB and double-click the install icon. Select the SSD as the target disk and install Ubuntu onto it. Once it's done installing, don't restart the computer.
Open the /var/cache/apt/archives
folder and copy its contents to somewhere on the SSD, for example /home/user/Desktop/
. Then, go to the home folder on the USB, push Ctrl-H to show hidden files, and copy all the files in the home folder to /home/user/
on the SSD. As well as your personal files, this will also copy application settings, caches and the like.
Now all the files are on the SSD, you just need to reinstall your software.
Reboot the machine and start from the SSD. Navigate to /home/user/Desktop
(or wherever you saved the .deb
files to) in the file manager. Right-click the window and choose "Open in Terminal". Once the terminal opens, enter the command
sudo dpkg -i *.deb
and press enter. All your software will be installed onto the SSD. Once the command finishes, you can delete all the .deb
files that you copied: you very likely won't need to use them again.
You shouldn't need to restart the computer after installing the software.
I will try this once I can logon to my linux again :(
– knowledge-seeker
Apr 24 '17 at 13:31
unix.stackexchange.com/questions/360974/…
– knowledge-seeker
Apr 24 '17 at 13:39
Install Ubuntu on the SSD, mount the casper-rw file and copy over the files that way. If you're having trouble doing that, or if you're now not sure where to put them, comment and I'll edit my answer.
– user171641
Apr 25 '17 at 8:29
thanks, i will get to that part once I figure out what I want to start with...
– knowledge-seeker
Apr 25 '17 at 21:43
I'm sorry, but this is not a great idea. Simply copying over the deb archives may not be representative of every package that has been installed. Much easier to capture the installed packages with this at the Terminal:dpkg --get-selections | grep -w install$ > dpkg-get-selection.txt
then installing fresh onto the SSD, then install the required packages at the new install's Terminal:sudo dpkg --set-selections | grep -w install$ < /path/to/dpkg-get-selection.txt && sudo apt-get -u dselect-upgrade
– neuro
Aug 20 at 16:09
add a comment |
up vote
0
down vote
I don't have enough rep to comment asking for clarification, so I'll assume that you're going to put the SSD inside the PC, rather than connect it as an external disk.
First, boot from your bootable USB and double-click the install icon. Select the SSD as the target disk and install Ubuntu onto it. Once it's done installing, don't restart the computer.
Open the /var/cache/apt/archives
folder and copy its contents to somewhere on the SSD, for example /home/user/Desktop/
. Then, go to the home folder on the USB, push Ctrl-H to show hidden files, and copy all the files in the home folder to /home/user/
on the SSD. As well as your personal files, this will also copy application settings, caches and the like.
Now all the files are on the SSD, you just need to reinstall your software.
Reboot the machine and start from the SSD. Navigate to /home/user/Desktop
(or wherever you saved the .deb
files to) in the file manager. Right-click the window and choose "Open in Terminal". Once the terminal opens, enter the command
sudo dpkg -i *.deb
and press enter. All your software will be installed onto the SSD. Once the command finishes, you can delete all the .deb
files that you copied: you very likely won't need to use them again.
You shouldn't need to restart the computer after installing the software.
I will try this once I can logon to my linux again :(
– knowledge-seeker
Apr 24 '17 at 13:31
unix.stackexchange.com/questions/360974/…
– knowledge-seeker
Apr 24 '17 at 13:39
Install Ubuntu on the SSD, mount the casper-rw file and copy over the files that way. If you're having trouble doing that, or if you're now not sure where to put them, comment and I'll edit my answer.
– user171641
Apr 25 '17 at 8:29
thanks, i will get to that part once I figure out what I want to start with...
– knowledge-seeker
Apr 25 '17 at 21:43
I'm sorry, but this is not a great idea. Simply copying over the deb archives may not be representative of every package that has been installed. Much easier to capture the installed packages with this at the Terminal:dpkg --get-selections | grep -w install$ > dpkg-get-selection.txt
then installing fresh onto the SSD, then install the required packages at the new install's Terminal:sudo dpkg --set-selections | grep -w install$ < /path/to/dpkg-get-selection.txt && sudo apt-get -u dselect-upgrade
– neuro
Aug 20 at 16:09
add a comment |
up vote
0
down vote
up vote
0
down vote
I don't have enough rep to comment asking for clarification, so I'll assume that you're going to put the SSD inside the PC, rather than connect it as an external disk.
First, boot from your bootable USB and double-click the install icon. Select the SSD as the target disk and install Ubuntu onto it. Once it's done installing, don't restart the computer.
Open the /var/cache/apt/archives
folder and copy its contents to somewhere on the SSD, for example /home/user/Desktop/
. Then, go to the home folder on the USB, push Ctrl-H to show hidden files, and copy all the files in the home folder to /home/user/
on the SSD. As well as your personal files, this will also copy application settings, caches and the like.
Now all the files are on the SSD, you just need to reinstall your software.
Reboot the machine and start from the SSD. Navigate to /home/user/Desktop
(or wherever you saved the .deb
files to) in the file manager. Right-click the window and choose "Open in Terminal". Once the terminal opens, enter the command
sudo dpkg -i *.deb
and press enter. All your software will be installed onto the SSD. Once the command finishes, you can delete all the .deb
files that you copied: you very likely won't need to use them again.
You shouldn't need to restart the computer after installing the software.
I don't have enough rep to comment asking for clarification, so I'll assume that you're going to put the SSD inside the PC, rather than connect it as an external disk.
First, boot from your bootable USB and double-click the install icon. Select the SSD as the target disk and install Ubuntu onto it. Once it's done installing, don't restart the computer.
Open the /var/cache/apt/archives
folder and copy its contents to somewhere on the SSD, for example /home/user/Desktop/
. Then, go to the home folder on the USB, push Ctrl-H to show hidden files, and copy all the files in the home folder to /home/user/
on the SSD. As well as your personal files, this will also copy application settings, caches and the like.
Now all the files are on the SSD, you just need to reinstall your software.
Reboot the machine and start from the SSD. Navigate to /home/user/Desktop
(or wherever you saved the .deb
files to) in the file manager. Right-click the window and choose "Open in Terminal". Once the terminal opens, enter the command
sudo dpkg -i *.deb
and press enter. All your software will be installed onto the SSD. Once the command finishes, you can delete all the .deb
files that you copied: you very likely won't need to use them again.
You shouldn't need to restart the computer after installing the software.
answered Apr 18 '17 at 23:55
user171641
I will try this once I can logon to my linux again :(
– knowledge-seeker
Apr 24 '17 at 13:31
unix.stackexchange.com/questions/360974/…
– knowledge-seeker
Apr 24 '17 at 13:39
Install Ubuntu on the SSD, mount the casper-rw file and copy over the files that way. If you're having trouble doing that, or if you're now not sure where to put them, comment and I'll edit my answer.
– user171641
Apr 25 '17 at 8:29
thanks, i will get to that part once I figure out what I want to start with...
– knowledge-seeker
Apr 25 '17 at 21:43
I'm sorry, but this is not a great idea. Simply copying over the deb archives may not be representative of every package that has been installed. Much easier to capture the installed packages with this at the Terminal:dpkg --get-selections | grep -w install$ > dpkg-get-selection.txt
then installing fresh onto the SSD, then install the required packages at the new install's Terminal:sudo dpkg --set-selections | grep -w install$ < /path/to/dpkg-get-selection.txt && sudo apt-get -u dselect-upgrade
– neuro
Aug 20 at 16:09
add a comment |
I will try this once I can logon to my linux again :(
– knowledge-seeker
Apr 24 '17 at 13:31
unix.stackexchange.com/questions/360974/…
– knowledge-seeker
Apr 24 '17 at 13:39
Install Ubuntu on the SSD, mount the casper-rw file and copy over the files that way. If you're having trouble doing that, or if you're now not sure where to put them, comment and I'll edit my answer.
– user171641
Apr 25 '17 at 8:29
thanks, i will get to that part once I figure out what I want to start with...
– knowledge-seeker
Apr 25 '17 at 21:43
I'm sorry, but this is not a great idea. Simply copying over the deb archives may not be representative of every package that has been installed. Much easier to capture the installed packages with this at the Terminal:dpkg --get-selections | grep -w install$ > dpkg-get-selection.txt
then installing fresh onto the SSD, then install the required packages at the new install's Terminal:sudo dpkg --set-selections | grep -w install$ < /path/to/dpkg-get-selection.txt && sudo apt-get -u dselect-upgrade
– neuro
Aug 20 at 16:09
I will try this once I can logon to my linux again :(
– knowledge-seeker
Apr 24 '17 at 13:31
I will try this once I can logon to my linux again :(
– knowledge-seeker
Apr 24 '17 at 13:31
unix.stackexchange.com/questions/360974/…
– knowledge-seeker
Apr 24 '17 at 13:39
unix.stackexchange.com/questions/360974/…
– knowledge-seeker
Apr 24 '17 at 13:39
Install Ubuntu on the SSD, mount the casper-rw file and copy over the files that way. If you're having trouble doing that, or if you're now not sure where to put them, comment and I'll edit my answer.
– user171641
Apr 25 '17 at 8:29
Install Ubuntu on the SSD, mount the casper-rw file and copy over the files that way. If you're having trouble doing that, or if you're now not sure where to put them, comment and I'll edit my answer.
– user171641
Apr 25 '17 at 8:29
thanks, i will get to that part once I figure out what I want to start with...
– knowledge-seeker
Apr 25 '17 at 21:43
thanks, i will get to that part once I figure out what I want to start with...
– knowledge-seeker
Apr 25 '17 at 21:43
I'm sorry, but this is not a great idea. Simply copying over the deb archives may not be representative of every package that has been installed. Much easier to capture the installed packages with this at the Terminal:
dpkg --get-selections | grep -w install$ > dpkg-get-selection.txt
then installing fresh onto the SSD, then install the required packages at the new install's Terminal: sudo dpkg --set-selections | grep -w install$ < /path/to/dpkg-get-selection.txt && sudo apt-get -u dselect-upgrade
– neuro
Aug 20 at 16:09
I'm sorry, but this is not a great idea. Simply copying over the deb archives may not be representative of every package that has been installed. Much easier to capture the installed packages with this at the Terminal:
dpkg --get-selections | grep -w install$ > dpkg-get-selection.txt
then installing fresh onto the SSD, then install the required packages at the new install's Terminal: sudo dpkg --set-selections | grep -w install$ < /path/to/dpkg-get-selection.txt && sudo apt-get -u dselect-upgrade
– neuro
Aug 20 at 16:09
add a comment |
up vote
0
down vote
I installed some software and tried a few things
I'll assume you didn't use a persistent Live CD.
In which case, once you restart, everything you did will be gone.
can I buy myself a new SSD and install/transfer my YUMI USB Ubuntu on it
Sure. OR, you could install & use GParted (might already be there), and make a partition alongside Windows to install Ubuntu (or another Linux distro of your choice)
add a comment |
up vote
0
down vote
I installed some software and tried a few things
I'll assume you didn't use a persistent Live CD.
In which case, once you restart, everything you did will be gone.
can I buy myself a new SSD and install/transfer my YUMI USB Ubuntu on it
Sure. OR, you could install & use GParted (might already be there), and make a partition alongside Windows to install Ubuntu (or another Linux distro of your choice)
add a comment |
up vote
0
down vote
up vote
0
down vote
I installed some software and tried a few things
I'll assume you didn't use a persistent Live CD.
In which case, once you restart, everything you did will be gone.
can I buy myself a new SSD and install/transfer my YUMI USB Ubuntu on it
Sure. OR, you could install & use GParted (might already be there), and make a partition alongside Windows to install Ubuntu (or another Linux distro of your choice)
I installed some software and tried a few things
I'll assume you didn't use a persistent Live CD.
In which case, once you restart, everything you did will be gone.
can I buy myself a new SSD and install/transfer my YUMI USB Ubuntu on it
Sure. OR, you could install & use GParted (might already be there), and make a partition alongside Windows to install Ubuntu (or another Linux distro of your choice)
answered Apr 19 '17 at 3:19
cricket_007
5551412
5551412
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2funix.stackexchange.com%2fquestions%2f359794%2fyumi-ubuntu-16-04-64-bit-usb-to-ssd%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