Unsolved
This post is more than 5 years old
2 Intern
•
178 Posts
0
1742
February 3rd, 2016 13:00
Dissolve meta device
I am trying to dissolve the meta device which is throwing the below error. Currently we are using Enginuity 5876.
# symconfigure -sid xxx -cmd “dissolve meta dev 00FAF;” PREVIEW
'meta': Invalid action.
-bash: ”: command not found
Is there any different command to dissolve the meta ?
Thank you
No Events found!


dynamox
11 Legend
•
20.4K Posts
•
87.4K Points
0
February 3rd, 2016 14:00
those quotes look like they were copied from a webpage.
KW160
121 Posts
0
February 3rd, 2016 14:00
I agree with echolaughmk, this looks like a problem with your shell misinterpreting the quotes. Try putting the dissolve command in a text file and run using that:
dissolve.txt:
dissolve meta dev 00FAF;
symconfigure -sid xxxx -file dissolve.txt preview
echolaughmk
2 Intern
•
522 Posts
0
February 3rd, 2016 14:00
That looks like the right command at first glance. The -bash error makes it look like a possible shell problem where it maybe isn't interrogating the command correcly.
EvgenyM1
51 Posts
0
February 4th, 2016 01:00
Hello!
Please try to update the $PATH variable for your system (looks like you are using Linux (or Unix)):
# set $PATH=$PATH:/usr/symcli/bin
(/usr/symcli/bin this is default dir for symcli commands, you have to use this one if everything is installed by default or your own path). Please keep in mind this is only for one session for one user only, you need to update also appropriate profile file to save it: for BASH shell /home_dir/user_name/.bashrc_profile this is as example
Then try to run as KW160 suggested from config file, otherwise realize what kind of quote you use (see comment from dynamox)
Thank you