web-dev-qa-db-ja.com

UbuntuドライブをWindowsマシンにマップする

したがって、反対の質問にはたくさんの答えがありますが、Windows 7マシンからUbuntuマシン上のファイルにアクセスして変更できるようにする必要があります。

私はすでに何を試しましたか?

私はSambaをインストールしているようです(何らかの形で)知らないだけでインストールされます! (あなたが見えない場合のために、私は少しUbuntuの初心者です...)

私の/etc/samba/smb.configは次のように変更されました。

#======================= Share Definitions =======================

# Un-comment the following (and Tweak the other settings below to suit)
# to enable the default home directory shares. This will share each 
# user's home director as \\server\username
[homes]
    comment = Home Directories
    browseable = yes

# By default, the home directories are exported read-only. Change the
# next parameter to 'no' if you want to be able to write to them.
    read only = no

...

# This might need tweaking when using external authentication schemes
    valid users = %S

Samba Sudo service smbd restartを再起動します。

Windowsマシンに戻り、\\[my-machine-name]\[my-machines-admin-user]を使用してUbuntuドライブにマップします。ネットワークユーザー名とパスワードを尋ねる小さなダイアログが表示されるので、資格情報aaaaaaを入力します。ログインしているユーザーが[ubuntu-username]だけでなく、[my-windows-machine]\[ubuntu-username]...であることがわかります。

疲れていますか?これに関する情報はウェブ上にはあまりありません。

ありがとう!

5
igneosaur

Ubuntu Machine Openターミナルで

Sudo smbpasswd -a USERNAME

ここで、USERNAMEはユーザー名です

9
One Zero