Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. JRyanCon

    Cannot access NFS share mounted on Linux client

    Ah, figured it out. I needed to add the user permissions on the Windows side. Since I want test systems to have access to this folder, I set R/W for the "anonymous loggon" group. Now I can view the directory.
  2. JRyanCon

    Cannot access NFS share mounted on Linux client

    I do not think so. Here is a list of all services installed and status. Status Name DisplayName ------ ---- ----------- Running ADWS Active Directory Web Services Stopped AeLookupSvc...
  3. JRyanCon

    Cannot access NFS share mounted on Linux client

    I am trying to mount a Windows Server 2012 NFS shared folder on a RHEL 6.5 client. It looks like I can mount the folder, but I cannot access it. When I try to access the mounted folder I get an “Input/output error”. Any suggestions? When I run “rpcinfo /p” on the Windows Server I get...
  4. JRyanCon

    Parenthesis inside bash function

    Is there a way to include a command that contains parenthesis inside a bash function? I get an error for an unexpected ( found when I try. I am trying to include the following inside of a bash function: cleanup () { shopt -s extglob rm !(FileToKeep) }
  5. JRyanCon

    wget recursive not working like I am expecting it

    they are created, but there is nothing else in those directories but the next folder. I just dont want them. That command you just gave did what I wanted it to! Care to explain it?
  6. JRyanCon

    wget recursive not working like I am expecting it

    The dash issue is just because I typed my message into Outlook first to catch any spelling or grammatical errors. I have tried several different options like: wget -r -np -l1 ftp://10.10.10.10/AAA/BBB/CCC/DDD/* wget -r -np -l1 ftp://10.10.10.10/AAA/BBB/CCC/DDD wget -r -np -l1...
  7. JRyanCon

    wget recursive not working like I am expecting it

    I tried using the -l1 flag, and I get the same behavior. It downloads all of the directories in front of DDD still.
  8. JRyanCon

    wget recursive not working like I am expecting it

    I am trying to download all files and folders from a particular folder. If I turn on recursive, it downloads all of the folders leading up to the folder I want, which I do not want. I tried adding –np or --no-parent, but I get the same behavior, so I don’t think I am using the command...
  9. JRyanCon

    Dual Boot Win/Linux: Change from Linux to Win without Reboot?

    Ya, I have used VMWare. This actually would have to be into an actual windows partition, not a virtual one. Its for testing so that wouldnt work. Good thought though thanks... anyone else?
  10. JRyanCon

    Dual Boot Win/Linux: Change from Linux to Win without Reboot?

    If I had a dual Partition setup with Windows XP and Linux Fedora Core 3 (I would be willing to use any popular version of Linux). Is there a way to be in Linux and then boot to, or change to Windows without a full reboot? A way to maybe Call Lilo or Grub from in linux? Similar to how tiny.exe...
  11. JRyanCon

    Custom Redhat Bootdisk?

    I have made a Redhat AS 3.0 boot disk from the boot.iso on disk 1. If I boot off this disk and at the prompt type: "linux ks=ftp://serverIP/directoryToKickstartFile/ks.cfg" I can start the network install and use a kickstart file on a server in my office. My question is this; can I add "linux...
  12. JRyanCon

    kernel update during install?

    We do linux installs over the network. Fedora Core 3 has a kernel update. Is there a way to include this kernel during the install, that way we dont ahve to do the update after the install is done? Ryan
  13. JRyanCon

    Renaming file not working.

    If you are just opening the file to read from it, "acceptable.txt". ">acceptable.txt" would be used if you want to overwrite the data in that file with new data. ">>acceptable.txt" would be used if you want to add new data to the data thats already in the file, starting your add at the end of...
  14. JRyanCon

    Renaming file not working.

    It it failing to see that the file exists of failing to rename the file?
  15. JRyanCon

    DBI Connect Failed?

    I am trying to use Perl to connect to a MS SQL 2000 Server. I Installed DBI, DBD::ODBC and am using iODBC. When I try and connect I get: [root@localhost mSQL]# perl connect.pl DBI connect('dsnName','userName',...) failed: [iODBC][Driver Manager]Data source name not found and no default driver...
  16. JRyanCon

    Interacting with command line program

    So this command would require some interaction if you were to just execute it outside of perl? Have you looked at using the Expect Module from CPAN? http://search.cpan.org/~rgiersig/Expect-1.15/Expect.pod "Expect.pm is built to either spawn a process or take an existing filehandle and...
  17. JRyanCon

    Interacting with command line program

    Rob - you could use the system() function. What this will do is actually pauses the perl program executes the command outside the program and then starts the program again. For instance. `command`; would become system ("command"); This sould allow you to interact with the command and then...
  18. JRyanCon

    perl and sql

    I started over on a clean install of Fedora Core 2. I installed DBI That seemed to go fine I set Env. Variables: export DBI_DSN=myserver1 export DBI_USER=myUN export DBI_PASS=myPW That seemed fine Installed iodbc to /usr/local/stow/iodbc-3.52.2 That seemed fine export...
  19. JRyanCon

    perl and sql

    '/root/DBD-ODBC-1.13/blib/arch/auto/DBD/ODBC/ODBC.so' Does exists. Could be corrupted, hmmm. What would you suggest? Ryan
  20. JRyanCon

    perl and sql

    Thread hijack? I assume you mean adding my issues to this thread? Well since the other poster is also trying to get perl to connect with MS SQL I thought it would be best to keep this as one thread not add a new one. If this is not the way to do it, then sorry I thought this was the best way...

Part and Inventory Search

Back
Top