Avatar of plokij5006
plokij5006
Flag for United Kingdom of Great Britain and Northern Ireland asked on

access to linux server from windows Pc

I have a client who has a windows PC. Is there any free software out there that I can download and configure to directly connect to the Linux server?

The thing is, a new user started and I need to allow her permissions to shares on this Linux server.
So I am hoping I can configure the shares via software on a Windows machine

Thanks
Linux NetworkingLinuxWindows 7

Avatar of undefined
Last Comment
digus

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
woolmilkporc

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
amitnepal

Just download and use Putty as mentioned by wmp. I would not recommend using telnet.

You can use samba to create shares for windows.

/etc/samba/smb.conf  [ it is well documented and should be easy to get it going ]
plokij5006

ASKER
Thanks for that, can samba be used to configure existing shares on the linux server (permissions)
amitnepal

Yes you can use samba  to configure existing shares on the linux server. You just need to set the appropriate permissions. If you want a group to be able to read/write or a user to read / write to the share, you have to have corresponding permission on that share on linux server for that user/group.
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes
digus

If you also want GUI access to the Linux box, Teamviewer is probably the simplest thing (works over Internet too):
http://www.teamviewer.com/en/download/index.aspx

Webmin also has a decent web GUI for configuring Samba:
http://www.webmin.com
DigeratiDave

SAMBA is great for sharing files to Windows PC's from Linux.
I recommend you add SWAT to administer shares if you are new to SAMBA.
It's very helpful and can tell you exactly what your configuration looks like from a web page.

http://www.samba.org/samba/docs/man/Samba-HOWTO-Collection/SWAT.html#id2682074
plokij5006

ASKER
Ok I have installed Putty on my XP machine.
I can connect to the Linux server through this.
How do I change permissions for shares on the linux server?
I want to this by using putty on the xp machine
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
digus

chmod (user rights - read, write, execute) and chown (change ownership)

chmod -R 755 /Directory
chown -R sambauser

There's also chgrp for user groups. 755 is probably the most common setting, but you'll likely want to do some reading about permissions in Linux, before you go too far with this..