You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am creating a new template docker "alpine" with an alpine image.
I'm configuring this image with the persistent folder "/link"
I'm creating the new project "untitled"
I'm running the VM "alpine"
In the console, i'm creating a symbolic link :
cd /link
ln -s ../etc/os-release os-release
(This is the type of syntax in /etc/network of Debian)
I'm stopping the VM
With GNS3, i'm renaming the project with this new name : newname
I have this error message : 2024-10-05 13:13:44 ERROR project:336 Error while duplicating project: Cannot duplicate project: [('/home/user/projects/untitled/project-files/docker/ec050da8-26c0-4012-b254-3a304385c6d9/link/os-release', '/home/user/projects/43087ed0-73d8-4841-9c97-a78fe212c6b3/project-files/docker/ec050da8-26c0-4012-b254-3a304385c6d9/link/os-release', "[Errno 2] No such file or directory: '/home/user/projects/untitled/project-files/docker/ec050da8-26c0-4012-b254-3a304385c6d9/link/os-release'")]
No error if the symbolic link is created with the command
cd /link
ln -s /etc/os-release os-release
But the file /link/os-release is no longer a symbolic link but a standard file
The text was updated successfully, but these errors were encountered:
I think the reason is because use the zipfile module in Python https://docs.python.org/3/library/zipfile.html which does not support symbolic links. I could try to implement an alternative.
Hi
I am creating a new template docker "alpine" with an alpine image.
I'm configuring this image with the persistent folder "/link"
I'm creating the new project "untitled"
I'm running the VM "alpine"
In the console, i'm creating a symbolic link :
(This is the type of syntax in /etc/network of Debian)
I'm stopping the VM
With GNS3, i'm renaming the project with this new name : newname
I have this error message :
2024-10-05 13:13:44 ERROR project:336 Error while duplicating project: Cannot duplicate project: [('/home/user/projects/untitled/project-files/docker/ec050da8-26c0-4012-b254-3a304385c6d9/link/os-release', '/home/user/projects/43087ed0-73d8-4841-9c97-a78fe212c6b3/project-files/docker/ec050da8-26c0-4012-b254-3a304385c6d9/link/os-release', "[Errno 2] No such file or directory: '/home/user/projects/untitled/project-files/docker/ec050da8-26c0-4012-b254-3a304385c6d9/link/os-release'")]
No error if the symbolic link is created with the command
But the file /link/os-release is no longer a symbolic link but a standard file
The text was updated successfully, but these errors were encountered: