Re: GCC Fails to Recognize Parameters Programming by toneewa While I haven't used DJGPP for a couple decades, I decided to install the ffmpeg library and do a test program another way. For me, the declarations worked changing: #include "os_support.h" #include "avformat.h" #include "internal.h" #if CONFIG_NETWORK #include "network.h" #… GCC Fails to Recognize Parameters Programming by snah19 RE: ffmpeg-4.4 Andrew Wu DJGPP CROSS COMPILER, GCC v12.2.0 Host Macbook Pro, macOS Monterey [Click Here](https://ffmpeg.org/platform.html#DOS) DJGPP Cross Compiler 12.2.0 Fails to Recognize "certain" Parameters in FFmpeg Source Code Hi, I am using the DJGPP cross compiler 12.2.0, developed by Andrew Wu, github, to build the … Re: GCC Fails to Recognize Parameters Programming by Reverend Jim I can't offer any suggestions other than to just download the compiled app for your system instead of building it yourself. Re: GCC Fails to Recognize Parameters Programming by rproffitt Here's another problem. When we change the OS not only must we setup the compiler, environment and such but sometimes an OS API could be deprecated or removed. You made mention of a possible OS change so that's a possibility. You obtained this code from somewhere. Go back there and see if they updated it for your new OS. Need help php exec() Programming Web Development by ksyz_1 Hello, I am trying to connect a unix server using ssh (phpseclib) and running an external program like 'C' program. I am using exec() to run .exe. My code looks this way [CODE]echo $ssh->exec('./demo.exe');[/CODE] demo.exe is a executable for program to add two numbers and the inputs are hardcoded within the 'C' program. This … Re: how to connect to remote server usin ssh Programming Web Development by hoanhuynh We can use phpseclib library with an example as below: [CODE] <?php include('Net/SSH2.php'); $ssh = new Net_SSH2('domain.com'); if (!$ssh->login('username', 'password')) { exit('Login Failed'); } echo $ssh->exec('ls'); ?> [/CODE] with more information here: [URL="http://4rapiddev.com/php/php-ssh-to-remote-… ssh: Permission denied, please try again. Community Center by williebens ssh: Permission denied, please try again. #1 14 Hours Ago Hello guys: I am trying to ssh from box1 to box2. The user is user1 and IPbox2 is the IP of box2 (not the real thing though, but you get the idea). This is the command I am using from the command line: box1#ssh -l user1 IPbox2 user1@IPbox2's password: After entering the … Re: Warning: iPhone exploit in the wild and stealing user data Hardware and Software macOS by kurtharriger SSH is not automatically installed simply by jailbreaking your phone. It is an app available in the cydia app store that makes your phone listen for incoming ssh connections. Now it would probably better if the software would generate a new random default password during installation, but the software is doing exactly what it is designed to do --… Re: Problem with ImageMagick Programming Web Development by ShawnCplus exec only returns the response code, use shell_exec, that'll get all of the output so if imagemagick is producing errors you'll be able to see them. Re: video file conversion from avi,mpeg to flv with php & ffmpeg Programming Web Development by cereal exec() won't give you TRUE or FALSE on the command executed, will simply return an output, and only if you add a second parameter. For example: [code]<?php echo exec('ls',&$ot) . "\n"; print_r($ot) . "\n"; ?>[/code] So, you need to see what is going on during the conversion. Try to use system(), you will get all the … Re: Putty Equivalent for Mac OS X? Hardware and Software macOS by jamillion ssh is originally a Unix tool and is included in the Mac OS X Terminal. gdb and gcc/g++ are included with the Apple Developer Tools which can be found at developer.apple.com. As always, google is your friend! And, don't be hesitant to call 1-800-APL-CARE to get 1-1 help with your Mac. Re: Help needed to retrieve files Hardware and Software Linux and Unix by Slavi ssh root@`IP` address should create connection, although I would expect it to require root password before log in in fact for any case. Could you maybe share some of the instructions? Re: How to call stored procedure? Programming Software Development by ChhayaDeshmukh exec <name of the procedure> if you have parameterized stored procedure then exec <name of the procedure> <'param1'> <param2> ....etc Note single quote for char value and no quotes for int parameter Re: Exchange files between 2 computers with 2 different internet connections Hardware and Software Networking by TheOgre SSH (SCP, sFTP), password-protected webserver directory, rsync, cvs, stunnel, etc. If they're Winblows boxen, your best bet might be stunnel. Re: serial numbers??? Community Center by chris5126 ssh, telnet, rlogin all through putty and then a remote desktop connection through exceede so i have both gui or terminal avilable to me Re: how to reset router automaticaly............ Hardware and Software Networking by rnyamonga SSH or Telnet into the router and then say [B]reload in ... minutes[/B] ! the cursor should show Router# Re: Telnet connection problems Hardware and Software Microsoft Windows by portoman ssh ? Re: Telnet connection problems Hardware and Software Microsoft Windows by shibblez SSH - secure shell. Telnet is generally considered to be 'a bad thing' as the username and password are not encrypted. Try PuTTY, available from http://www.chiark.greenend.org.uk/~sgtatham/putty/ Re: Which is the best application to connect Linux remotely Hardware and Software Linux and Unix by Gribouillis ssh maybe ... Re: Which is the best application to connect Linux remotely Hardware and Software Linux and Unix by giridhar786 ssh through putty app Re: Encryption Example Programming Software Development by pty SSH with keys is the way to go. Written and vetted by cryptography experts, battle tested, hugely widespread and supported by all modern deployment mechanisms. Rolling your own encryption routine can be fun, but it [probably won't be that secure](https://security.stackexchange.com/questions/18197/why-shouldnt-we-roll-our-own). Re: Wondering about execve command Programming Software Development by Salem exec is your basic function. A 'v' means that the args are a vector, exactly like argv you get in main. [ICODE]execv( argv[0], argv );[/ICODE] is a good way of restarting yourself. A 'l' means that the args are a list, ending with a (char*)NULL [ICODE]execl( "/bin/ls", "/bin/ls", "-1", (char*)NULL);[/ICODE]… Re: Procedure Taking Longer Time Programming Databases by moone009 exec sp_recompile sp_Trade_Book exec in java Programming Software Development by prateeksalian hi, how to call exe file with some parameters from java and save the output of the exe file in a specified path. Please let me know immediately..its urgent!!! I am using the following code : I want to save the file after running this DPAnalysis.exe on jan.xls into my file system. The .exe file is running properly by taking jan.xls but … exec not work in php Programming Web Development by naraza hello! i use this command and run it on localhost in my pc <?php exec('mspaint "C:\path\to\image.jpg"'); ?> and this $cme='notepad.exe'; passthru($cme); Re: ssh connection refused Hardware and Software Linux and Unix by Tinnin Hi guys. Sorry about my late reply to your answers. Busy busy. So this is my current setup (not changed since before my opening post). /etc/ssh/sshd_config: # Package generated configuration file # See the sshd_config(5) manpage for details # What ports, IPs and protocols we listen for Port 123 # Use these options to … Re: ssh connection refused Hardware and Software Linux and Unix by Tinnin I've changed the port forwarding public port to 55555. This points to port 22 on my local server. I've followed the instructions [here](http://www.cyberciti.biz/faq/turn-on-turn-off-firewall-in-linux/) to disable any firewall settings. Though I'm not sure how necessary that was as there was nothing there to begin with anyway. iptable settings:… SSH process ID Programming Software Development by np complete In our college we practice python on ssh. This command prints all the computers ( processes ) logged in. ps -A | grep bash I was wondering how to obtain my process ID for that session. ssh connection refused Hardware and Software Linux and Unix by Tinnin Hi All, I have a server that I'm using as a Git repository. I'm trying to clone from this repository to a GoDaddy server. I am getting the error "ssh: connect to host <my git server ip and port>: connection refused. I have checked the ssh_configs, sshd running, rsa keys, openssh-server/client, some stuff I forget, ... I haven't been … Re: ssh connection refused Hardware and Software Linux and Unix by rubberman If you can, post the contents of /etc/ssh/sshd_config here.