tcsh and bashrc conflict





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







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.










share|improve this question































    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.










    share|improve this question



























      0












      0








      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.










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jul 13 '17 at 1:09









      muru

      1




      1










      asked Jul 12 '17 at 22:09









      mehmetmehmet

      11




      11






















          2 Answers
          2






          active

          oldest

          votes


















          0














          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?






          share|improve this answer































            0














            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:




            1. Installation and next process seems to rely on the versions of the softwares.

            2. I installed Ubuntu 16.04 on a VMware virtual machine(4 CPUs, 4 GB RAM).

            3. Install netcdf(libnetcdf-dev) and gdal(libgdal1-dev).

            4. Download GMT-4.5.14, GSHHG-GMT-2.3.4, GMT4param.txt, and install_gmt4.sh

            5. Change the parameters on GMT4param.txt:
              GSHHG_ftp=n
              GSHHG_path= (installation path)
              GMT_ftp=n
              GMT_prefix= (installation path)
              GMT_delete=n

            6. Install these files, using: sudo sh install_gmt4.sh GMT4param.txt

            7. Add PATH of GMT to your .bashrc file.


            These steps are for GMT.



            For TDEFNODE:




            1. Download and compile TDEFNODE.

            2. Put all the files in a directory.

            3. Specify the PATHs for TDEFNODE and td_plot in .bashrc

            4. Install tcsh package.


            Now the software runs and works with GMT. Seems no error so far.






            share|improve this answer
























              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
              });


              }
              });














              draft saved

              draft discarded


















              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









              0














              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?






              share|improve this answer




























                0














                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?






                share|improve this answer


























                  0












                  0








                  0







                  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?






                  share|improve this answer













                  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?







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jul 13 '17 at 22:05









                  mehmetmehmet

                  11




                  11

























                      0














                      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:




                      1. Installation and next process seems to rely on the versions of the softwares.

                      2. I installed Ubuntu 16.04 on a VMware virtual machine(4 CPUs, 4 GB RAM).

                      3. Install netcdf(libnetcdf-dev) and gdal(libgdal1-dev).

                      4. Download GMT-4.5.14, GSHHG-GMT-2.3.4, GMT4param.txt, and install_gmt4.sh

                      5. Change the parameters on GMT4param.txt:
                        GSHHG_ftp=n
                        GSHHG_path= (installation path)
                        GMT_ftp=n
                        GMT_prefix= (installation path)
                        GMT_delete=n

                      6. Install these files, using: sudo sh install_gmt4.sh GMT4param.txt

                      7. Add PATH of GMT to your .bashrc file.


                      These steps are for GMT.



                      For TDEFNODE:




                      1. Download and compile TDEFNODE.

                      2. Put all the files in a directory.

                      3. Specify the PATHs for TDEFNODE and td_plot in .bashrc

                      4. Install tcsh package.


                      Now the software runs and works with GMT. Seems no error so far.






                      share|improve this answer




























                        0














                        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:




                        1. Installation and next process seems to rely on the versions of the softwares.

                        2. I installed Ubuntu 16.04 on a VMware virtual machine(4 CPUs, 4 GB RAM).

                        3. Install netcdf(libnetcdf-dev) and gdal(libgdal1-dev).

                        4. Download GMT-4.5.14, GSHHG-GMT-2.3.4, GMT4param.txt, and install_gmt4.sh

                        5. Change the parameters on GMT4param.txt:
                          GSHHG_ftp=n
                          GSHHG_path= (installation path)
                          GMT_ftp=n
                          GMT_prefix= (installation path)
                          GMT_delete=n

                        6. Install these files, using: sudo sh install_gmt4.sh GMT4param.txt

                        7. Add PATH of GMT to your .bashrc file.


                        These steps are for GMT.



                        For TDEFNODE:




                        1. Download and compile TDEFNODE.

                        2. Put all the files in a directory.

                        3. Specify the PATHs for TDEFNODE and td_plot in .bashrc

                        4. Install tcsh package.


                        Now the software runs and works with GMT. Seems no error so far.






                        share|improve this answer


























                          0












                          0








                          0







                          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:




                          1. Installation and next process seems to rely on the versions of the softwares.

                          2. I installed Ubuntu 16.04 on a VMware virtual machine(4 CPUs, 4 GB RAM).

                          3. Install netcdf(libnetcdf-dev) and gdal(libgdal1-dev).

                          4. Download GMT-4.5.14, GSHHG-GMT-2.3.4, GMT4param.txt, and install_gmt4.sh

                          5. Change the parameters on GMT4param.txt:
                            GSHHG_ftp=n
                            GSHHG_path= (installation path)
                            GMT_ftp=n
                            GMT_prefix= (installation path)
                            GMT_delete=n

                          6. Install these files, using: sudo sh install_gmt4.sh GMT4param.txt

                          7. Add PATH of GMT to your .bashrc file.


                          These steps are for GMT.



                          For TDEFNODE:




                          1. Download and compile TDEFNODE.

                          2. Put all the files in a directory.

                          3. Specify the PATHs for TDEFNODE and td_plot in .bashrc

                          4. Install tcsh package.


                          Now the software runs and works with GMT. Seems no error so far.






                          share|improve this answer













                          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:




                          1. Installation and next process seems to rely on the versions of the softwares.

                          2. I installed Ubuntu 16.04 on a VMware virtual machine(4 CPUs, 4 GB RAM).

                          3. Install netcdf(libnetcdf-dev) and gdal(libgdal1-dev).

                          4. Download GMT-4.5.14, GSHHG-GMT-2.3.4, GMT4param.txt, and install_gmt4.sh

                          5. Change the parameters on GMT4param.txt:
                            GSHHG_ftp=n
                            GSHHG_path= (installation path)
                            GMT_ftp=n
                            GMT_prefix= (installation path)
                            GMT_delete=n

                          6. Install these files, using: sudo sh install_gmt4.sh GMT4param.txt

                          7. Add PATH of GMT to your .bashrc file.


                          These steps are for GMT.



                          For TDEFNODE:




                          1. Download and compile TDEFNODE.

                          2. Put all the files in a directory.

                          3. Specify the PATHs for TDEFNODE and td_plot in .bashrc

                          4. Install tcsh package.


                          Now the software runs and works with GMT. Seems no error so far.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Jul 24 '17 at 13:40









                          mehmetmehmet

                          11




                          11






























                              draft saved

                              draft discarded




















































                              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.




                              draft saved


                              draft discarded














                              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





















































                              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







                              Popular posts from this blog

                              How did Captain America manage to do this?

                              迪纳利

                              南乌拉尔铁路局