120 | | as per the [http://netfpga.org/netfpgawiki/index.php/Guide#Verify_the_software_and_hardware Guide], however you might need to edit the last line of ser_account_setup.pl to point to the exact location of bashrc_addon : |
121 | | {{{ |
122 | | print "Adding the NetFPGA Enviornment Variables to your .bashrc\n"; |
123 | | `cat /home/netfpga/test/NF2/bashrc_addon >> ~/.bashrc\n`; |
124 | | }}} |
| 120 | as per the [http://netfpga.org/netfpgawiki/index.php/Guide#Verify_the_software_and_hardware Guide], however you might need to edit /usr/local/NF2 in user_account_setup.pl to specify the exact path to your NF2 directory: |
| 121 | {{{ |
| 122 | else |
| 123 | { |
| 124 | print "Copying the NF2 directory to your user account\n"; |
| 125 | `cp -r /home/netfpga/test/NF2 ~`; |
| 126 | } |
| 127 | |
| 128 | print "Adding the NetFPGA Enviornment Variables to your .bashrc\n"; |
| 129 | `cat /home/netfpga/test/NF2/bashrc_addon >> ~/.bashrc\n`; |
| 130 | }}} |