In modern research workflows, we often find ourselves working across different operating systems. For me, this meant wanting to access my powerful Windows machine (Insurgent) directly from my portable Ubuntu laptop (Divergent).
After some trial and error, I’ve established a setup that feels like the Windows drive is actually inside my Ubuntu laptop. Here is how I did it.
The objective was simple:
The biggest hurdle was authentication. Microsoft accounts and PINs often cause issues with SSH. The fix? A dedicated local account.
insurgent_user with a standard password.icacls to grant this user full control over my main profile (C:\Users\paul).insurgent_user to the “Remote Desktop Users” and “Administrators” groups.Once Windows was ready, I used two key tools on Ubuntu:
To mount the Windows C: drive to ~/insurgent:
sshfs insurgent_user@192.168.0.85:/C:/ ~/insurgent -o allow_other
What if I’m not at home? I installed Tailscale on both machines. This creates a secure, private tunnel that works anywhere in the world. I just replaced the home IP with my Tailscale IP, and it worked like a charm!
fusermount3 -uz ~/insurgent is your best friend to reset the link.This setup has completely streamlined my workflow. No more manual file syncing or carrying two laptops—just one seamless, integrated research environment.
Happy Hacking! 🚀
Powered by Jekyll and Minimal Light theme.