So I created 2 separate files using mkdir on the terminal. Ex mkdirA and mkdirB and both folder contain a public key, how can u link these 2 files together. Both folder already contains a separate public.pem and private.pem. when I tried using the command 'ln -s /root/A/publicA.pem' using publicA.pem in file B it says unable to load the file. Any suggestions?
First of all you can't directly link them together while they
both exist in the same space, you need to remove file publicB.pem
before hand with command rm publicB.pem (you should write the
file path as well, i am just giving an example)
, then create
symbolic link with your command ln -s publicA.perm
publicB.perm (again, u should include the directory)
Get Answers For Free
Most questions answered within 1 hours.