我有一个带有以下分区表的硬盘
12Gb 主分区 (ntfs) 140Gb 扩展分区 (ntfs)
我想安装 Windows 7,我需要更多空间用于主分区。
问题是,当我调整分区大小时,我得到:
12Gb 主分区 (ntfs) 110Gb 扩展分区 (ntfs) 30Gb 可用空间
所以我无法将可用空间分配给主分区,因为可用空间在磁盘的末尾。
是否有将主分区扩展为:42Gb 主分区 (ntfs) 110Gb 扩展分区 (ntfs) 而不重新分区整个磁盘的解决方案?
我使用了分区魔法,gparted-live-0.4.6-4 和其他没有成功。使用 Vista 的磁盘管理,我设法扩展了主分区,但使我的分区动态化。
我有一个服务器配置为运行 rsync 作为恶魔 /etc/rsyncd.conf 文件:
log file = /var/log/rsyncd.log
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsync.lock
[documents]
path = /home/user/work
comment = User's Documents folder
uid = user
gid = user
read only = no
auth users = user
secrets file = /etc/rsyncd.secrets
Run Code Online (Sandbox Code Playgroud)
/etc/rsyncd.secrets 文件:
user:more
Run Code Online (Sandbox Code Playgroud)
在客户端我运行:
rsync my_file user@ip_address::documents
Run Code Online (Sandbox Code Playgroud)
我收到以下错误:
@ERROR: auth failed on module documents
rsync error: error starting client-server protocol (code 5) at main.c(1524) [sender=3.0.7]
Run Code Online (Sandbox Code Playgroud)
在服务器上,我有一个名为 user 的 root 用户,具有不同的密码。在客户端,我尝试了两个密码,结果相同。
我做错了什么?