Sharing files and folders between Red Hat Fedora Core 2 and Windows XP
Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Introduction to Linux - A Hands on Guide
This guide was created as an overview of the Linux Operating System, geared toward new users as an exploration tour and getting started guide, with exercises at the end of each chapter.
For more advanced trainees it can be a desktop reference, and a collection of the base knowledge needed to proceed with system and network administration. This book contains many real life examples derived from the author's experience as a Linux system and network administrator, trainer and consultant. They hope these examples will help you to get a better understanding of the Linux system and that you feel encouraged to try out things on your own.
Click Here to receive this Complete Guide absolutely free.
Sharing files and folders between Red Hat Fedora Core 2 and Windows XP
hello, complete Linux newbie here in need of help.
I am a student at the College of New Calidonia in Prince George BC, taking the Computer and Network Electronics Technician program. one of our classes is 'Novell Operating Systems', in which we are learning about Linux, using Red Hat Fedora Core 2.
our assignment is to get a shared folder between our workstation(Windows XP) and our lab computer(Red hat Fedora core 2), before our midterm next week, so we will know how to do our practical.
I have searched all over for an answer to how to do this, and have come up with pretty much no way to get this done.
so far, I have Samba installed on my linux machine, and have heard from classmates who got the assignment done that I need to edit a text file. I am not certian what they are talking about, and the teacher wants us to work independantly on this assignment, so I pretty much can't get help from my classmates. the only thing I am allowed to do is research on the internet, or post in forums (hooray for stumbling across this forum randomly)
can anyone help me with this?
P.S Please note that as of right now, I have a month and a half experience working with Linux so I am probably not the most well educated person in this field (Aka use small and easy to understand words plz :P)
1. "Sharing a folder" between Linux and Windows is actually pretty simple, and Samba is exactly the right way to go.
SUGGESTIONS:
a) Your best bet is to find a fellow student (or teaching assistant) have them them simply *show* you.
b) Failing that, please describe in as much detail as possible:
- What you've tried so far
- Where you got stuck
We'd be happy to help ... but I honestly think five minutes of "face time" with one of your peers and a real PC is the best way to go!
2. "Editing a text file" is absolutely the equivalent of running "notepad" on Windows. Nothing more.
Q: Did your class assignment suggest *which* editor to use, or which file to "edit"?
SUGGESTIONS:
a) Edit some text file locally. You can create a new file, if you wish (e.g. "tmp.txt").
b) Once you've done it with a local file ... you just do the same thing with the shared file.
c) Again, your best bet is to get somebody to *show* you.
But again, if that's not possible/not practical, please tell us (in as much detail as possible):
- What you've tried so far
- Where you got stuck
hello, complete Linux newbie here in need of help.
I am a student at the College of New Calidonia in Prince George BC, taking the Computer and Network Electronics Technician program. one of our classes is 'Novell Operating Systems', in which we are learning about Linux, using Red Hat Fedora Core 2.
our assignment is to get a shared folder between our workstation(Windows XP) and our lab computer(Red hat Fedora core 2), before our midterm next week, so we will know how to do our practical.
I have searched all over for an answer to how to do this, and have come up with pretty much no way to get this done.
so far, I have Samba installed on my linux machine, and have heard from classmates who got the assignment done that I need to edit a text file. I am not certian what they are talking about, and the teacher wants us to work independantly on this assignment, so I pretty much can't get help from my classmates. the only thing I am allowed to do is research on the internet, or post in forums (hooray for stumbling across this forum randomly)
can anyone help me with this?
P.S Please note that as of right now, I have a month and a half experience working with Linux so I am probably not the most well educated person in this field (Aka use small and easy to understand words plz :P)
Are you saying that you need to connect to a share on a windows xp machine are do you need to connect to a share on your linux server. If you are trying to connect from windows to a linux share then you will need to do the following;
edit your /etc/samba/smb.conf
Code:
[ShareName]
path = /path/to/share
comment = My Windows Share
writable = yes
browesable = yes
guest ok = yes
valid users = root, <your user here>
write list = root, <your user here>
now you need to create a samba users. Best to make it a user that is on your windows box. Lets say you took the default user account.
Code:
sudo smbpasswd -a user
then enter the password for that user. now you may need to restart samba /etc/init.d/samba restart for the settings to take effect.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.