How to transfer files from unbootable PC over the network?
-
- Ronin
- Posts: 2
- Joined: 04 May 2017, 20:14
- Distribution: Not using any (yet)
- Location: United States
How to transfer files from unbootable PC over the network?
Hello everyone.
I need to transfer files from my unbootable laptop's HDD to another laptop over the network using live USB stick with Porteus on it. I wonder how easily this task can be accomplished.
Does Porteus discover computers on the network automatically similar to Windows or there's some manual setup that needs to take place?
I will appreciate your help in clarifying this.
I need to transfer files from my unbootable laptop's HDD to another laptop over the network using live USB stick with Porteus on it. I wonder how easily this task can be accomplished.
Does Porteus discover computers on the network automatically similar to Windows or there's some manual setup that needs to take place?
I will appreciate your help in clarifying this.
-
- Full of knowledge
- Posts: 2564
- Joined: 25 Jun 2014, 15:21
- Distribution: 3.2.2 Cinnamon & KDE5
- Location: London
Re: How to transfer files from unbootable PC over the networ
Welcome to Porteus. Should be quite easy. One of our network wallahs should be along any moment now to help you out. 

Linux porteus 4.4.0-porteus #3 SMP PREEMPT Sat Jan 23 07:01:55 UTC 2016 i686 AMD Sempron(tm) 140 Processor AuthenticAMD GNU/Linux
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB
-
- White ninja
- Posts: 25
- Joined: 24 Apr 2017, 01:36
- Distribution: puppy
- Location: sudan
Re: How to transfer files from unbootable PC over the networ
yes i was wondering what is the command netdiscover is in slackware cuz i was typing netdiscover on kali and it was working quite good idr if it was a tool or it of the basis of the kernelBogomips wrote:Welcome to Porteus. Should be quite easy. One of our network wallahs should be along any moment now to help you out.
-
- Samurai
- Posts: 134
- Joined: 18 Sep 2012, 20:56
- Distribution: Porteus 64bit KDE4
- Location: Absurdistan
Re: How to transfer files from unbootable PC over the networ
you can use 'ssh' and 'scp' but note you
can not write with root rights
on the unbootable laptop:
look which IP does your Laptop have
start ssh-server
On the other PC:
be carefull do not confuse the computer
can not write with root rights
on the unbootable laptop:
Code: Select all
ifconfig
start ssh-server
Code: Select all
sh /etc/rc.d/rc.sshd start
Code: Select all
ifconfig
# check the IP-Adress
ssh -l guest <IP-of-your-Laptop> # login on the laptop
# now you are working on the laptop
# if you need you can get rootrights on it:
# su -
scp /path/single-file guest@<IP-Of-Your-PC>://home/guest # write single-file from laptop to the PC at /home/guest/single-file
# note you can only write as user guest
scp -r /path/whole-directory guest@<IP-Of-Your-PC>://home/guest # copy the whole directory
exit # go back
-
- Full of knowledge
- Posts: 2564
- Joined: 25 Jun 2014, 15:21
- Distribution: 3.2.2 Cinnamon & KDE5
- Location: London
Re: How to transfer files from unbootable PC over the networ
Was thinking rsync, but then have to have rsync on both machines. If other is windoze, don't know how it plays out. 

Linux porteus 4.4.0-porteus #3 SMP PREEMPT Sat Jan 23 07:01:55 UTC 2016 i686 AMD Sempron(tm) 140 Processor AuthenticAMD GNU/Linux
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB
-
- Samurai
- Posts: 130
- Joined: 10 Mar 2011, 10:50
- Distribution: Windows phone
- Location: Saudi Arabia
Re: How to transfer files from unbootable PC over the networ
If PC unbootable even from usb or live cd, then how transfer services will work ?
If just light lamp and you hear it, then you can take off the harddisk and connect it as external usb.
If just light lamp and you hear it, then you can take off the harddisk and connect it as external usb.
- Ed_P
- Contributor
- Posts: 8908
- Joined: 06 Feb 2013, 22:12
- Distribution: Cinnamon 5.01 ISO
- Location: Western NY, USA
Re: How to transfer files from unbootable PC over the networ
I like your idea hypomania. Another thought would be to put the removed harddrive in a USB external hdd enclosure case. 

-
- Ronin
- Posts: 2
- Joined: 04 May 2017, 20:14
- Distribution: Not using any (yet)
- Location: United States
Re: How to transfer files from unbootable PC over the networ
KnallKopf, thank you very much for the detailed instructions. That's what I was looking for.
In my case the system doesn't boot from HDD and for some reason can't launch setup from DVD-drive (which is surprising) but I suspect a live USB stick would work (although it's yet to be checked).hypomania wrote:If PC unbootable even from usb or live cd, then how transfer services will work ?
I'm saving this option as a last resort since it requires a USB adapter (I don't have) and tempering with internal hardware (to be avoided).hypomania wrote:If just light lamp and you hear it, then you can take off the harddisk and connect it as external usb.
- Ed_P
- Contributor
- Posts: 8908
- Joined: 06 Feb 2013, 22:12
- Distribution: Cinnamon 5.01 ISO
- Location: Western NY, USA
Re: How to transfer files from unbootable PC over the networ
Not expensive and what I have. http://www.staples.com/Insten-POTHSATA2 ... uct_972925bp2017 wrote:a USB adapter (I don't have)

Note the ifconfig and sshd commands require root mode.
KnallKopf would a vnc module help with this?
- brokenman
- Site Admin
- Posts: 6105
- Joined: 27 Dec 2010, 03:50
- Distribution: Porteus v4 all desktops
- Location: Brazil
Re: How to transfer files from unbootable PC over the networ
He is trying to boot from a Porteus USB in order to make the non-booting HD available to the network.
Boot the non-bootable machine into Porteus and then verify that you can access the files through a file manager. If so then you can move to another machine on the network and mount the partition of the HD using mount.cifs (plenty of tutorials on the net). Or simply use the scp file transfer as suggested.
Don't forget to start the ssh daemon after you boot.
Boot the non-bootable machine into Porteus and then verify that you can access the files through a file manager. If so then you can move to another machine on the network and mount the partition of the HD using mount.cifs (plenty of tutorials on the net). Or simply use the scp file transfer as suggested.
Don't forget to start the ssh daemon after you boot.
How do i become super user?
Wear your underpants on the outside and put on a cape.
Wear your underpants on the outside and put on a cape.
-
- Samurai
- Posts: 130
- Joined: 10 Mar 2011, 10:50
- Distribution: Windows phone
- Location: Saudi Arabia
Re: How to transfer files from unbootable PC over the networ
Here is simple way without alot of terminal commands:-
1- Boot first PC with usb stick and second PC too, both any linux.
2- Make first PC as hosting server by install one of these services 'Apache, Nginx, Lighttpd' or 'Xampp if you have good RAM'.
3- Move or copy or link your files to index folder which it can be 'www or htodcs' under /var or /opt/lampp.
4- Connect both PCs with direct Lan wire or Wifi on same router in network.
5- Open broswer on second PC or even mobile phone, then type first PC IP or full directory such as 192.168.1.2/my_folder.
6- Download using save as, or from terminal use wget to download all contents.
You're free to ask for explination more if something defacult.
1- Boot first PC with usb stick and second PC too, both any linux.
2- Make first PC as hosting server by install one of these services 'Apache, Nginx, Lighttpd' or 'Xampp if you have good RAM'.
3- Move or copy or link your files to index folder which it can be 'www or htodcs' under /var or /opt/lampp.
4- Connect both PCs with direct Lan wire or Wifi on same router in network.
5- Open broswer on second PC or even mobile phone, then type first PC IP or full directory such as 192.168.1.2/my_folder.
6- Download using save as, or from terminal use wget to download all contents.
You're free to ask for explination more if something defacult.
- babam
- Warlord
- Posts: 528
- Joined: 16 Nov 2016, 10:30
- Distribution: Porteus 5.0rc3 Xfce K6.1.1
- Location: Rainy city
Re: How to transfer files from unbootable PC over the networ
Install this http://www.zuzuf.net/qshare/files.php on Unbootable PC/Laptop or install on other PC/Laptop.bp2017 wrote:Hello everyone.
I need to transfer files from my unbootable laptop's HDD to another laptop over the network using live USB stick with Porteus on it. I wonder how easily this task can be accomplished.
Does Porteus discover computers on the network automatically similar to Windows or there's some manual setup that needs to take place?
I will appreciate your help in clarifying this.
Sorry, my English is bad.
- Ed_P
- Contributor
- Posts: 8908
- Joined: 06 Feb 2013, 22:12
- Distribution: Cinnamon 5.01 ISO
- Location: Western NY, USA
Re: How to transfer files from unbootable PC over the networ
Interesting. http://www.zuzuf.net/qshare/index.phpbabam wrote:Install this http://www.zuzuf.net/qshare/files.php on Unbootable PC/Laptop or install on other PC/Laptop.
Have you tried it with Porteus?
- babam
- Warlord
- Posts: 528
- Joined: 16 Nov 2016, 10:30
- Distribution: Porteus 5.0rc3 Xfce K6.1.1
- Location: Rainy city
Re: How to transfer files from unbootable PC over the networ
Yes, Qt4 is required.Ed_P wrote:Interesting. http://www.zuzuf.net/qshare/index.phpbabam wrote:Install this http://www.zuzuf.net/qshare/files.php on Unbootable PC/Laptop or install on other PC/Laptop.
Have you tried it with Porteus?
Sorry, my English is bad.
- Ed_P
- Contributor
- Posts: 8908
- Joined: 06 Feb 2013, 22:12
- Distribution: Cinnamon 5.01 ISO
- Location: Western NY, USA
Re: How to transfer files from unbootable PC over the networ
Do you have it and qshare as a Porteus module for someone to download?babam wrote:Yes, Qt4 is required.