How to remove error in cent os7 while using ansys 18.2 ic engine module [duplicate]
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
This question already has an answer here:
What is `^M` and how do I get rid of it?
11 answers
I am using Ansys 18.2 (Ansys IC Engine (fluent)) in CentOS 7. I am adding valve.prof
(a profile file) before opening the Ansys Design Modeler. However, during the decomposition step I get this error message:
All lift valves are zero. Check valve lift profile format. TIP: Try using dos2unix command to convert the file to unix format.
I've only worked on Windows before; what does this mean? How do I use dos2unix
here?
untagged
marked as duplicate by G-Man, thrig, Jesse_b, Romeo Ninov, Archemar Feb 25 at 19:03
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |Â
up vote
1
down vote
favorite
This question already has an answer here:
What is `^M` and how do I get rid of it?
11 answers
I am using Ansys 18.2 (Ansys IC Engine (fluent)) in CentOS 7. I am adding valve.prof
(a profile file) before opening the Ansys Design Modeler. However, during the decomposition step I get this error message:
All lift valves are zero. Check valve lift profile format. TIP: Try using dos2unix command to convert the file to unix format.
I've only worked on Windows before; what does this mean? How do I use dos2unix
here?
untagged
marked as duplicate by G-Man, thrig, Jesse_b, Romeo Ninov, Archemar Feb 25 at 19:03
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
1
I'm voting to put on hold as unclear but I have a suspicion that this question will help you: unix.stackexchange.com/q/32001/237982
â Jesse_b
Feb 25 at 12:46
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
This question already has an answer here:
What is `^M` and how do I get rid of it?
11 answers
I am using Ansys 18.2 (Ansys IC Engine (fluent)) in CentOS 7. I am adding valve.prof
(a profile file) before opening the Ansys Design Modeler. However, during the decomposition step I get this error message:
All lift valves are zero. Check valve lift profile format. TIP: Try using dos2unix command to convert the file to unix format.
I've only worked on Windows before; what does this mean? How do I use dos2unix
here?
untagged
This question already has an answer here:
What is `^M` and how do I get rid of it?
11 answers
I am using Ansys 18.2 (Ansys IC Engine (fluent)) in CentOS 7. I am adding valve.prof
(a profile file) before opening the Ansys Design Modeler. However, during the decomposition step I get this error message:
All lift valves are zero. Check valve lift profile format. TIP: Try using dos2unix command to convert the file to unix format.
I've only worked on Windows before; what does this mean? How do I use dos2unix
here?
This question already has an answer here:
What is `^M` and how do I get rid of it?
11 answers
untagged
edited Feb 17 at 9:03
Kusalananda
103k13202318
103k13202318
asked Feb 16 at 14:14
bibhu b John
83
83
marked as duplicate by G-Man, thrig, Jesse_b, Romeo Ninov, Archemar Feb 25 at 19:03
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by G-Man, thrig, Jesse_b, Romeo Ninov, Archemar Feb 25 at 19:03
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
1
I'm voting to put on hold as unclear but I have a suspicion that this question will help you: unix.stackexchange.com/q/32001/237982
â Jesse_b
Feb 25 at 12:46
add a comment |Â
1
I'm voting to put on hold as unclear but I have a suspicion that this question will help you: unix.stackexchange.com/q/32001/237982
â Jesse_b
Feb 25 at 12:46
1
1
I'm voting to put on hold as unclear but I have a suspicion that this question will help you: unix.stackexchange.com/q/32001/237982
â Jesse_b
Feb 25 at 12:46
I'm voting to put on hold as unclear but I have a suspicion that this question will help you: unix.stackexchange.com/q/32001/237982
â Jesse_b
Feb 25 at 12:46
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
3
down vote
accepted
The error message asks you to run dos2unix
on (presumably) the valve.conf
file since it may be a DOS text file. Unix text files have an ever so slightly different format from DOS text files and many programs that expects Unix formatted text files have issues reading DOS text files properly.
To install dos2unix
on CentOS, if it is not already installed, open a terminal window and type the command
sudo yum install dos2unix
(this assumes that you are allowed to use the sudo
command to execute things as the root administrative superuser).
Then, to hopefully fix the error, you would run the command
dos2unix valve.conf
(assuming that the file is located in the current directory).
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
The error message asks you to run dos2unix
on (presumably) the valve.conf
file since it may be a DOS text file. Unix text files have an ever so slightly different format from DOS text files and many programs that expects Unix formatted text files have issues reading DOS text files properly.
To install dos2unix
on CentOS, if it is not already installed, open a terminal window and type the command
sudo yum install dos2unix
(this assumes that you are allowed to use the sudo
command to execute things as the root administrative superuser).
Then, to hopefully fix the error, you would run the command
dos2unix valve.conf
(assuming that the file is located in the current directory).
add a comment |Â
up vote
3
down vote
accepted
The error message asks you to run dos2unix
on (presumably) the valve.conf
file since it may be a DOS text file. Unix text files have an ever so slightly different format from DOS text files and many programs that expects Unix formatted text files have issues reading DOS text files properly.
To install dos2unix
on CentOS, if it is not already installed, open a terminal window and type the command
sudo yum install dos2unix
(this assumes that you are allowed to use the sudo
command to execute things as the root administrative superuser).
Then, to hopefully fix the error, you would run the command
dos2unix valve.conf
(assuming that the file is located in the current directory).
add a comment |Â
up vote
3
down vote
accepted
up vote
3
down vote
accepted
The error message asks you to run dos2unix
on (presumably) the valve.conf
file since it may be a DOS text file. Unix text files have an ever so slightly different format from DOS text files and many programs that expects Unix formatted text files have issues reading DOS text files properly.
To install dos2unix
on CentOS, if it is not already installed, open a terminal window and type the command
sudo yum install dos2unix
(this assumes that you are allowed to use the sudo
command to execute things as the root administrative superuser).
Then, to hopefully fix the error, you would run the command
dos2unix valve.conf
(assuming that the file is located in the current directory).
The error message asks you to run dos2unix
on (presumably) the valve.conf
file since it may be a DOS text file. Unix text files have an ever so slightly different format from DOS text files and many programs that expects Unix formatted text files have issues reading DOS text files properly.
To install dos2unix
on CentOS, if it is not already installed, open a terminal window and type the command
sudo yum install dos2unix
(this assumes that you are allowed to use the sudo
command to execute things as the root administrative superuser).
Then, to hopefully fix the error, you would run the command
dos2unix valve.conf
(assuming that the file is located in the current directory).
edited Feb 16 at 21:12
answered Feb 16 at 14:28
Kusalananda
103k13202318
103k13202318
add a comment |Â
add a comment |Â
1
I'm voting to put on hold as unclear but I have a suspicion that this question will help you: unix.stackexchange.com/q/32001/237982
â Jesse_b
Feb 25 at 12:46