Debian desktop share diretories or files

来源:互联网 发布:win7网络0个对象 编辑:程序博客网 时间:2024/06/09 05:00

Debian linux 桌面共享
您可以连接到一个服务器或网络共享文件夹上,浏览和查看里面的文件,就像是查看本地计算机一样。这在互联网中下载和上传文件很方便,或者在局域网中跟其他人共享文件。
要浏览网络上的文件,在活动概览中打开文件,然后在左侧栏中点击浏览网络。文件管理器会列出所有局域网中提供文件共享的计算机,如果您没有找到想访问的机子,可以通过手动输入它的 IP 地址或网址来连接。
连接到一台文件服务器
In the file manager, click Connect to Server in the sidebar.
在服务器地址栏中,输入服务器的网址,可用的网址列表如下。
如果您之前连接过那个服务器,还可以点击最近的服务器列表。
连接按钮,将会打开一个新窗口,里面显示服务器文件夹内容。您可以像浏览自己电脑一样访问它们,服务器也会添加到侧栏中,以便于您下次快速访问。
这里写图片描述
这里写图片描述

URL 或 统一资源定位符,是一个指向网络位置或文件的地址,网址格式如下:
scheme://servername.example.com/folder
The scheme specifies the protocol or type of server. The example.com portion of the address is called the domain name. If a username is required, it is inserted before the server name:
scheme://username@servername.example.com/folder
一些服务需要指定端口号,插在域名之后。
scheme://servername.example.com:port/folder
下面列出了支持的各种服务类型范例。
服务器类型
You can connect to different types of servers. Some servers are public, and allow anybody to connect. Other servers require you to log in with a username and password.
在服务器上您可能没有权限去执行特定的操作,比如在一个公共 FTP 站点上,您不大可能被允许删除文件。
您输入的网址,取决于服务器使用的文件共享方式。
SSH
如果您有服务器的SSH帐号,您可以使用它来连接。许多网络主机提供 SSH 帐户,成员可以安全上传文件,SSH 服务器总是需要用户登录。
典型的 SSH 网址如下所示:
ssh://username@servername.example.com/folder
在使用 SSH 时,您发送的所有数据(包括密码)都是经过加密的,因此网络中的其他人不能截获它。
FTP (需登录)
使用 FTP 是一种在因特网上传输文件的流行方法。因为通过 FTP 传输的数据未经加密,所以许多服务器现在都提供 SSH 访问。但是,对某些服务器仍可以或要求使用 FTP 上传或下载文件。通过要求登录的 FTP 站点,通常可以删除和上载文件。
典型的 FTP 网址如下所示:
ftp://username@ftp.example.com/path/
公开的 FTP
Sites that allow you to download files will sometimes provide public or anonymous FTP access. These servers do not require a username and password, and will usually not allow you to delete or upload files.
典型的匿名 FTP 服务器网址如下所示:
ftp://ftp.example.com/path/
Some anonymous FTP sites require you to log in with a public username and password, or with a public username using your email address as the password. For these servers, use the FTP (with login) method, and use the credentials specified by the FTP site.
Windows 共享
Windows 系统使用一个私有协议在局域网上共享文件,Windows 网络中的计算机有用域来分组,用于更好地组织和控制访问。如果您有访问远程计算机的权限,您可以通过文件管理器来连接一个 Windows 共享。
典型的 Windows 共享网址如下所示:
smb://servername/Share
WebDAV 和安全 WebDAV
WebDAV 基于 HTTP 协议,它有时用于局域网中共享文件,或者在互联网中存储文件。如果您连接的服务器支持加密连接,您可以选中此项。安全 WebDAV 使用更强的 SSL 加密,因此他人无法查看您的密码。
典型的 WebDAV 网址如下所示:
http://example.hostname.com/path

more please look up for debian desktop helping

0 0