Why is my packer exe not running? [closed]
I am running my Kali machine. I downloaded packer for Linux
I made sym link
`~/Downloads ls -s packer /usr/local/bin/packer
From root,I try
packer
bash: packer: command not found
Why?
system-installation debian
closed as off-topic by DK Bose, mook765, karel, N0rbert, guiverc Jan 9 at 10:41
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This is not about Ubuntu. Questions about other Linux distributions can be asked on Unix & Linux, those about Windows on Super User, those about Apple products on Ask Different and generic programming questions on Stack Overflow." – DK Bose, mook765, karel, N0rbert, guiverc
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I am running my Kali machine. I downloaded packer for Linux
I made sym link
`~/Downloads ls -s packer /usr/local/bin/packer
From root,I try
packer
bash: packer: command not found
Why?
system-installation debian
closed as off-topic by DK Bose, mook765, karel, N0rbert, guiverc Jan 9 at 10:41
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This is not about Ubuntu. Questions about other Linux distributions can be asked on Unix & Linux, those about Windows on Super User, those about Apple products on Ask Different and generic programming questions on Stack Overflow." – DK Bose, mook765, karel, N0rbert, guiverc
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I am running my Kali machine. I downloaded packer for Linux
I made sym link
`~/Downloads ls -s packer /usr/local/bin/packer
From root,I try
packer
bash: packer: command not found
Why?
system-installation debian
I am running my Kali machine. I downloaded packer for Linux
I made sym link
`~/Downloads ls -s packer /usr/local/bin/packer
From root,I try
packer
bash: packer: command not found
Why?
system-installation debian
system-installation debian
asked Jan 9 at 7:06
MikiBelavistaMikiBelavista
2822921
2822921
closed as off-topic by DK Bose, mook765, karel, N0rbert, guiverc Jan 9 at 10:41
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This is not about Ubuntu. Questions about other Linux distributions can be asked on Unix & Linux, those about Windows on Super User, those about Apple products on Ask Different and generic programming questions on Stack Overflow." – DK Bose, mook765, karel, N0rbert, guiverc
If this question can be reworded to fit the rules in the help center, please edit the question.
closed as off-topic by DK Bose, mook765, karel, N0rbert, guiverc Jan 9 at 10:41
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This is not about Ubuntu. Questions about other Linux distributions can be asked on Unix & Linux, those about Windows on Super User, those about Apple products on Ask Different and generic programming questions on Stack Overflow." – DK Bose, mook765, karel, N0rbert, guiverc
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Maybe a typing error, but use
ln
(notls
)
I think you intend to use
ln [OPTION]... [-T] TARGET LINK_NAME (1st form)
according to
man ln
, and I think you need a full path to the target
Try
ln -s "$HOME"/Downloads/packer /usr/local/bin/packer
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Maybe a typing error, but use
ln
(notls
)
I think you intend to use
ln [OPTION]... [-T] TARGET LINK_NAME (1st form)
according to
man ln
, and I think you need a full path to the target
Try
ln -s "$HOME"/Downloads/packer /usr/local/bin/packer
add a comment |
Maybe a typing error, but use
ln
(notls
)
I think you intend to use
ln [OPTION]... [-T] TARGET LINK_NAME (1st form)
according to
man ln
, and I think you need a full path to the target
Try
ln -s "$HOME"/Downloads/packer /usr/local/bin/packer
add a comment |
Maybe a typing error, but use
ln
(notls
)
I think you intend to use
ln [OPTION]... [-T] TARGET LINK_NAME (1st form)
according to
man ln
, and I think you need a full path to the target
Try
ln -s "$HOME"/Downloads/packer /usr/local/bin/packer
Maybe a typing error, but use
ln
(notls
)
I think you intend to use
ln [OPTION]... [-T] TARGET LINK_NAME (1st form)
according to
man ln
, and I think you need a full path to the target
Try
ln -s "$HOME"/Downloads/packer /usr/local/bin/packer
answered Jan 9 at 7:25
sudodussudodus
23.3k32874
23.3k32874
add a comment |
add a comment |