I'm a retired software developer looking to make the switch from Windows 10 to Linux on a small i3 ThinkCenter mini computer. I did try Ubuntu 20 years ago but found it quite tricky with all the command lines required to get it set up. I've noticed that things seem to have changed, and it looks like there's less need for command lines these days. I've tried some distributions like Zorin and Mint, but I've run into issues accessing my NAS drives, which is a big deal for me since they only support SMB 1.0. It's odd because I'm using older hardware and drives, and I hoped to find something that works seamlessly with them. Can anyone recommend a Linux version that would give me similar performance and features to what I'm used to with Windows 10?
5 Answers
I found it a bit weird that a former software developer would be hesitant to use command lines with Linux. Nowadays, you can do a lot without them! Both Zorin and Mint are user-friendly options that should run smoother than Windows on older hardware.
If you're struggling to access your NAS, try entering the NAS address in the file browser like 'smb://your-nas-name/'. It's pretty straightforward, but make sure you've got smb support set up on your system first!
SMB has been around on Linux for ages. For most distros, just navigating to the Network section in your file browser or using 'smb://hostname/share' should do the trick. You might need to install Samba first with something like 'sudo apt install samba'.
Exactly, and often you can just enter your NAS address directly in the file browser to connect, too.
To access SMB 1.0 shares from Linux, you might need to tweak some settings since modern distros disable SMB1 by default for security reasons. When you mount a CIFS share, include 'vers=1.0' in the mount command or fstab entry. On the server side, if you're running Samba, you’ll need to configure the smb.conf file to permit SMB1 connections. Keep in mind that using SMB1 can be risky, so try to isolate those devices on a separate network if you can.
Yeah, newer kernels support SMB2 and up, so distros like Mint might be a better bet if you're looking for compatibility without dealing with SMB1.
You might also consider leveraging AI for help! Tools like Google’s Gemini can assist you, but don’t hesitate to ask the community if you're unsure; some AIs can give incorrect advice that could mess up your system if you’re not careful.
Good point! I always prefer asking real people first.

True! I guess it's just been a while since I touched Linux, and I might be a bit rusty.