返回列表 發帖

【角色茶桌】—— 怎样把Linux与Windows之间的files互传?

我角色的办法是用USB手指,估计还有别的方法。

1)在Linux系统,cd /mnt, 如果没有/mnt directory 就create一个,然后mkdir /mnt/usb

2)  插入USB手指,一般手指的device name是/dev/sdb1

3)  用Linux指令把它mount上,copy files,之后离开
  1. [root@leo asterisk-complete]# mount -t vfat /dev/sdb1 /mnt/usb
  2. [root@leo asterisk-complete]# cp speex-1.2rc1.tar.gz /mnt/usb
  3. [root@leo asterisk-complete]# umount /dev/sdb1
複製代碼
角色

簡單的話,可以在你的 Linux server起個 samba share,這樣就不需要換"手指"

TOP

另外還可以將linux 設定作 NFS share,不過係Windows 要有client。

當然 FTP 是可以的。

總結,Samba 係最方便

TOP

回復 3# ckleea

我提出的一个笨的方法,你说samba是怎样体现呢?

角色

TOP

在网上看了一下,要用samba share 出来的文件,估计跟下面的差不多。

http://www.linuxsir.org/main/node/158

不知道ckleea是否有一些实例说明呢?

角色

TOP

Sambe provides CIFS shares.

Installation of samba is simple. Just type yum install samba

After that I have samba, sambe-client and sambe server installed.
Samba server provides file serving function.

configuration file can be located at /etc/samba

You need to create user and rights for the directory to be shared.
Forr me I create separate directory for file sharing
e.g. a /data for file backup, a /picture for gallery and music, etc

Configuration can be done via webmin. Once you are in, start the smb service, in webmin, you first convert some unix users into samba users, then change the smb.conf to suit your need.

In my case, I always have my home windows PC maps some linux directories for file sharing.

TOP

Many thanks。

YH

TOP

Please try to see if you can make it work

TOP

我角色的办法是用USB手指,估计还有别的方法。

1)在Linux系统,cd /mnt, 如果没有/mnt directory 就creat ...
角色 發表於 2011-9-19 07:32



    其实直接用WCP客户端互传资料很方便
只需要linux安装ssh服务器

TOP

如果你只有一台电脑的话,哪怎样做呢?

角色

TOP

如果你只有一台电脑的话,哪怎样做呢?

角色
角色 發表於 2011-10-6 09:04



在linux下直接mount windows分区
往windows分区中拷贝文件就可以了

TOP

怎样mount呢?

角色

TOP

回復 12# 角色

Depending on your setup
1. in your partition table, you need to be visible for linux and windows partition
2. if using centos or redhat, if your windows partition is vfat (fat32), you can mount it without problem. For NTFS, you use additional package to allow mounting
3. if using ubuntu, mounting of vfat and NTFS is built in and straight forward.

Remark: I normally won't write to a NTFS partition because in centos, writing may cause problem (at least in the past)

Remote access to windows partition is different. You can use NFS

TOP

怎样mount呢?

角色
角色 發表於 2011-10-7 07:16



    在Linux下mount windows分区可以用到一下的文章
很简单的
http://www.docin.com/p-44073660.html

TOP

明白,谢谢。

角色

TOP

返回列表