Hi. Running things in a console window is usually very simple. If you add a script called 'start.sh' in the rpcemu dir
#!/bin/bash sudo ./rpcemu Nautilus (the filer) will ask if you want to run it in a terminal window. I also have added firewall rules to my start.sh so it can access internet: sudo iptables -I FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT sudo iptables -t nat -A POSTROUTING --source 192.168.49.0/24 -o eth0 -j MASQUERADE sudo "echo 1 > /proc/sys/net/ipv4/ip_forward " sudo "echo 1 > /proc/sys/net/ipv4/ip_dynaddr " In my rpc.cfg: ipaddress = 192.168.49.1 this is an arbitrary class C network that I chose to assign to RPCemu. Hope that helps. Jan Rinze. my script start.sh looks like this: #!/bin/bash sudo iptables -I FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT sudo iptables -t nat -A POSTROUTING --source 192.168.49.0/24 -o eth0 -j MASQUERADE sudo "echo 1 > /proc/sys/net/ipv4/ip_forward " sudo "echo 1 > /proc/sys/net/ipv4/ip_dynaddr " sudo ./rpcemu 2009/6/28 Roel Wagenaar <[email protected]>: > Ian Hamilton <[email protected]> wrote: > >> In article <[email protected]>, Chris Bass >> <[email protected]> wrote: >> > In message <[email protected]> "Terry Duell" >> > <[email protected]> wrote: >> >> >> > > I run RPCemu on a Linux X86_64 system, and to launch RPCemu I open the >> > > RPCemu dir, then open a terminal in that dir (the same as launching a >> > > terminal and then changing directory), then enter ./rpcemu in the >> > > terminal. >> >> [Snip] >> >> > > I have tried using a shell script which does the cd then runs RPCemu, >> > > but I have failed to find a way of opening a terminal within the shell >> > > script and starting things from there. >> >> > > Has anyone sorted out a solution to this? >> >> > I use Ubuntu 8.10 with a GUI. I use the 'File Browser' to find the >> > rpcemu application within the rpcemu folder. I double click on that to >> > run RPCEmu. I've tried to create the equivalent to a Windows shortcut, >> > but being relatively new to Linux not had much success! >> >> I have a desktop launcher to a script but I couldn't find a way to >> automatically force it to run in a terminal. I did find you can configure >> Nautilus to ask you what to do when you double-click a script. This gives >> the options of Run, Run in terminal or Display. >> >> Ian >> > > Don't know why you need it to run in a terminal, but using: > > konsole -e ~/rpcemu/rpcemu > > should do the job. > > In Ubuntu it may be easier to make a desktop link to rpcemu, > > right click on your desktop and choose -> New -> Link to location or -> Link > to program > > A window will open in which you can set it up. > > -- > Roel Wagenaar. > E-mail: [email protected] > Thuis-pagina: http://www.familie-wagenaar.nl > Linux-User #469851 with the Linux Counter > Nothing is fool-proof to a sufficiently talented fool. > > _______________________________________________ > Rpcemu mailing list > [email protected] > http://www.riscos.info/cgi-bin/mailman/listinfo/rpcemu > _______________________________________________ Rpcemu mailing list [email protected] http://www.riscos.info/cgi-bin/mailman/listinfo/rpcemu
