tcsh and bashrc conflict
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I'm a new user to Ubuntu and confront a problem through some process:
- There's a freeware called TDEFNODE coded with Fortran and runs under Ubuntu. So I've just installed Ubuntu 14 on a virtual drive.
- My friend compiled the program, download "gfortran" and "tcsh", and put some syntax in the .bashrc to show the shell that the program is in some folder.
- The software runs fine from the terminal and creates a lot of result files. Some of these files are used to draw some certain shapes and vectors.
- Program needs another program called GMT so I downloaded it with all packages from the Ubuntu software center.
The real problem I encounter is that; a file which is called "td_plot". This is another file in the software folder and uses the output files and GMT software together to draw certain type of files, like .ps. A sample command is like this:
td_plot -p map -m aaaa -obsv -calc
And this means : Plot a map which results are in the ".aaaa" files. And show the "observation" and "calculated" vectors on this map.
This command produce files, but files include maps without these vectors.
As I understood, this td_plot file having commands used under "tcsh" and the misdrawing issue is about that.
All the process I've done until here is made under bashrc.
Any ideas to run this tcsh file properly?
Thanks.
bashrc tcsh
add a comment |
I'm a new user to Ubuntu and confront a problem through some process:
- There's a freeware called TDEFNODE coded with Fortran and runs under Ubuntu. So I've just installed Ubuntu 14 on a virtual drive.
- My friend compiled the program, download "gfortran" and "tcsh", and put some syntax in the .bashrc to show the shell that the program is in some folder.
- The software runs fine from the terminal and creates a lot of result files. Some of these files are used to draw some certain shapes and vectors.
- Program needs another program called GMT so I downloaded it with all packages from the Ubuntu software center.
The real problem I encounter is that; a file which is called "td_plot". This is another file in the software folder and uses the output files and GMT software together to draw certain type of files, like .ps. A sample command is like this:
td_plot -p map -m aaaa -obsv -calc
And this means : Plot a map which results are in the ".aaaa" files. And show the "observation" and "calculated" vectors on this map.
This command produce files, but files include maps without these vectors.
As I understood, this td_plot file having commands used under "tcsh" and the misdrawing issue is about that.
All the process I've done until here is made under bashrc.
Any ideas to run this tcsh file properly?
Thanks.
bashrc tcsh
add a comment |
I'm a new user to Ubuntu and confront a problem through some process:
- There's a freeware called TDEFNODE coded with Fortran and runs under Ubuntu. So I've just installed Ubuntu 14 on a virtual drive.
- My friend compiled the program, download "gfortran" and "tcsh", and put some syntax in the .bashrc to show the shell that the program is in some folder.
- The software runs fine from the terminal and creates a lot of result files. Some of these files are used to draw some certain shapes and vectors.
- Program needs another program called GMT so I downloaded it with all packages from the Ubuntu software center.
The real problem I encounter is that; a file which is called "td_plot". This is another file in the software folder and uses the output files and GMT software together to draw certain type of files, like .ps. A sample command is like this:
td_plot -p map -m aaaa -obsv -calc
And this means : Plot a map which results are in the ".aaaa" files. And show the "observation" and "calculated" vectors on this map.
This command produce files, but files include maps without these vectors.
As I understood, this td_plot file having commands used under "tcsh" and the misdrawing issue is about that.
All the process I've done until here is made under bashrc.
Any ideas to run this tcsh file properly?
Thanks.
bashrc tcsh
I'm a new user to Ubuntu and confront a problem through some process:
- There's a freeware called TDEFNODE coded with Fortran and runs under Ubuntu. So I've just installed Ubuntu 14 on a virtual drive.
- My friend compiled the program, download "gfortran" and "tcsh", and put some syntax in the .bashrc to show the shell that the program is in some folder.
- The software runs fine from the terminal and creates a lot of result files. Some of these files are used to draw some certain shapes and vectors.
- Program needs another program called GMT so I downloaded it with all packages from the Ubuntu software center.
The real problem I encounter is that; a file which is called "td_plot". This is another file in the software folder and uses the output files and GMT software together to draw certain type of files, like .ps. A sample command is like this:
td_plot -p map -m aaaa -obsv -calc
And this means : Plot a map which results are in the ".aaaa" files. And show the "observation" and "calculated" vectors on this map.
This command produce files, but files include maps without these vectors.
As I understood, this td_plot file having commands used under "tcsh" and the misdrawing issue is about that.
All the process I've done until here is made under bashrc.
Any ideas to run this tcsh file properly?
Thanks.
bashrc tcsh
bashrc tcsh
edited Jul 13 '17 at 1:09
muru
1
1
asked Jul 12 '17 at 22:09
mehmetmehmet
11
11
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
As I understand until now, the problem is that the script is full of commands from "tcsh" shell. Scripts starts with a "#!/bin/tcsh -f", which means to run the script with the tcsh shell(which is installed).
But the problem remains the same, output files are incorrect and missing some properties.
Is there a way around to change the shell to tcsh and run this script with it?
add a comment |
Finally, I figured out to work with these softwares. I don't want this topic to be a dead end, so I'll simply explain the installation process. Maybe it'll be useful somehow:
- Installation and next process seems to rely on the versions of the softwares.
- I installed Ubuntu 16.04 on a VMware virtual machine(4 CPUs, 4 GB RAM).
- Install netcdf(libnetcdf-dev) and gdal(libgdal1-dev).
- Download GMT-4.5.14, GSHHG-GMT-2.3.4, GMT4param.txt, and install_gmt4.sh
- Change the parameters on GMT4param.txt:
GSHHG_ftp=n
GSHHG_path= (installation path)
GMT_ftp=n
GMT_prefix= (installation path)
GMT_delete=n - Install these files, using: sudo sh install_gmt4.sh GMT4param.txt
- Add PATH of GMT to your .bashrc file.
These steps are for GMT.
For TDEFNODE:
- Download and compile TDEFNODE.
- Put all the files in a directory.
- Specify the PATHs for TDEFNODE and td_plot in .bashrc
- Install tcsh package.
Now the software runs and works with GMT. Seems no error so far.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f935594%2ftcsh-and-bashrc-conflict%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
As I understand until now, the problem is that the script is full of commands from "tcsh" shell. Scripts starts with a "#!/bin/tcsh -f", which means to run the script with the tcsh shell(which is installed).
But the problem remains the same, output files are incorrect and missing some properties.
Is there a way around to change the shell to tcsh and run this script with it?
add a comment |
As I understand until now, the problem is that the script is full of commands from "tcsh" shell. Scripts starts with a "#!/bin/tcsh -f", which means to run the script with the tcsh shell(which is installed).
But the problem remains the same, output files are incorrect and missing some properties.
Is there a way around to change the shell to tcsh and run this script with it?
add a comment |
As I understand until now, the problem is that the script is full of commands from "tcsh" shell. Scripts starts with a "#!/bin/tcsh -f", which means to run the script with the tcsh shell(which is installed).
But the problem remains the same, output files are incorrect and missing some properties.
Is there a way around to change the shell to tcsh and run this script with it?
As I understand until now, the problem is that the script is full of commands from "tcsh" shell. Scripts starts with a "#!/bin/tcsh -f", which means to run the script with the tcsh shell(which is installed).
But the problem remains the same, output files are incorrect and missing some properties.
Is there a way around to change the shell to tcsh and run this script with it?
answered Jul 13 '17 at 22:05
mehmetmehmet
11
11
add a comment |
add a comment |
Finally, I figured out to work with these softwares. I don't want this topic to be a dead end, so I'll simply explain the installation process. Maybe it'll be useful somehow:
- Installation and next process seems to rely on the versions of the softwares.
- I installed Ubuntu 16.04 on a VMware virtual machine(4 CPUs, 4 GB RAM).
- Install netcdf(libnetcdf-dev) and gdal(libgdal1-dev).
- Download GMT-4.5.14, GSHHG-GMT-2.3.4, GMT4param.txt, and install_gmt4.sh
- Change the parameters on GMT4param.txt:
GSHHG_ftp=n
GSHHG_path= (installation path)
GMT_ftp=n
GMT_prefix= (installation path)
GMT_delete=n - Install these files, using: sudo sh install_gmt4.sh GMT4param.txt
- Add PATH of GMT to your .bashrc file.
These steps are for GMT.
For TDEFNODE:
- Download and compile TDEFNODE.
- Put all the files in a directory.
- Specify the PATHs for TDEFNODE and td_plot in .bashrc
- Install tcsh package.
Now the software runs and works with GMT. Seems no error so far.
add a comment |
Finally, I figured out to work with these softwares. I don't want this topic to be a dead end, so I'll simply explain the installation process. Maybe it'll be useful somehow:
- Installation and next process seems to rely on the versions of the softwares.
- I installed Ubuntu 16.04 on a VMware virtual machine(4 CPUs, 4 GB RAM).
- Install netcdf(libnetcdf-dev) and gdal(libgdal1-dev).
- Download GMT-4.5.14, GSHHG-GMT-2.3.4, GMT4param.txt, and install_gmt4.sh
- Change the parameters on GMT4param.txt:
GSHHG_ftp=n
GSHHG_path= (installation path)
GMT_ftp=n
GMT_prefix= (installation path)
GMT_delete=n - Install these files, using: sudo sh install_gmt4.sh GMT4param.txt
- Add PATH of GMT to your .bashrc file.
These steps are for GMT.
For TDEFNODE:
- Download and compile TDEFNODE.
- Put all the files in a directory.
- Specify the PATHs for TDEFNODE and td_plot in .bashrc
- Install tcsh package.
Now the software runs and works with GMT. Seems no error so far.
add a comment |
Finally, I figured out to work with these softwares. I don't want this topic to be a dead end, so I'll simply explain the installation process. Maybe it'll be useful somehow:
- Installation and next process seems to rely on the versions of the softwares.
- I installed Ubuntu 16.04 on a VMware virtual machine(4 CPUs, 4 GB RAM).
- Install netcdf(libnetcdf-dev) and gdal(libgdal1-dev).
- Download GMT-4.5.14, GSHHG-GMT-2.3.4, GMT4param.txt, and install_gmt4.sh
- Change the parameters on GMT4param.txt:
GSHHG_ftp=n
GSHHG_path= (installation path)
GMT_ftp=n
GMT_prefix= (installation path)
GMT_delete=n - Install these files, using: sudo sh install_gmt4.sh GMT4param.txt
- Add PATH of GMT to your .bashrc file.
These steps are for GMT.
For TDEFNODE:
- Download and compile TDEFNODE.
- Put all the files in a directory.
- Specify the PATHs for TDEFNODE and td_plot in .bashrc
- Install tcsh package.
Now the software runs and works with GMT. Seems no error so far.
Finally, I figured out to work with these softwares. I don't want this topic to be a dead end, so I'll simply explain the installation process. Maybe it'll be useful somehow:
- Installation and next process seems to rely on the versions of the softwares.
- I installed Ubuntu 16.04 on a VMware virtual machine(4 CPUs, 4 GB RAM).
- Install netcdf(libnetcdf-dev) and gdal(libgdal1-dev).
- Download GMT-4.5.14, GSHHG-GMT-2.3.4, GMT4param.txt, and install_gmt4.sh
- Change the parameters on GMT4param.txt:
GSHHG_ftp=n
GSHHG_path= (installation path)
GMT_ftp=n
GMT_prefix= (installation path)
GMT_delete=n - Install these files, using: sudo sh install_gmt4.sh GMT4param.txt
- Add PATH of GMT to your .bashrc file.
These steps are for GMT.
For TDEFNODE:
- Download and compile TDEFNODE.
- Put all the files in a directory.
- Specify the PATHs for TDEFNODE and td_plot in .bashrc
- Install tcsh package.
Now the software runs and works with GMT. Seems no error so far.
answered Jul 24 '17 at 13:40
mehmetmehmet
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f935594%2ftcsh-and-bashrc-conflict%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown