unix符号链接创建附加目录
我正在尝试创建一个简单的符号链接,其中 /XXX/YYY 指向 /AAA/BBB/logs 目录, 我正在运行此命令:
ln -s /AAA/BBB/logs /XXX/YYY
但我在 /XXX/YYY 目录下又得到了一个名为“logs”的目录 所以我的符号链接现在是,
/XXX/YYY/logs -> /AAA/BBB/logs
而我需要它
/XXX/YYY -> /AAA/BBB/logs
,但我不需要创建这个“logs”目录。 我哪里出错了?
I am trying to create a simple symlink where /XXX/YYY points to /AAA/BBB/logs directory,
I am running this command:
ln -s /AAA/BBB/logs /XXX/YYY
But I am getting one more directory under /XXX/YYY directory called "logs"
So my symlink is now
/XXX/YYY/logs -> /AAA/BBB/logs
whereas I need it to be
/XXX/YYY -> /AAA/BBB/logs
but I don't need this "logs" directory to be created.
Where am I going wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你有一个名为 /XXX/YYY 的文件夹。因此,当您发出命令时:
您会得到:
您不需要让 YYY 文件夹存在。然后该命令将创建名为 YYY 的符号链接,链接到 /AAA/BBB/logs。
I'm guessing you have a folder named /XXX/YYY. So when you issue the command:
You get this:
You need to not have the YYY folder exist. Then the command will create the symlink named YYY that links to /AAA/BBB/logs.