Giter VIP home page Giter VIP logo

Comments (20)

shotab avatar shotab commented on August 19, 2024 3

hi,
you should edit "eve-ng-integration" script, in my case it is located in
/usr/bin/eve-ng-integration

and here is changes you should make

https://ibb.co/esgSpK
https://ibb.co/cwdU3e

from eve-ng-integration.

shotab avatar shotab commented on August 19, 2024 1

if anyone still looking how to use SecureCRT, there is another solution.

echo -e '#!/bin/sh\nSecureCRT /T /TELNET $1 $2' > ~/.local/bin/SecureCRTx
chmod +x ~/.local/bin/SecureCRTx

next update ~/.profile
PATH="$HOME/bin:$HOME/.local/bin:$PATH"

edit following script as it is on picture below /usr/bin/eve-ng-integration
https://transfer.sh/gH4Tz/1.png
https://transfer.sh/bOcOn/2.png

from eve-ng-integration.

dlj2019 avatar dlj2019 commented on August 19, 2024 1

Excellent !!!!

Thanks a lot !!!

from eve-ng-integration.

SmartFinn avatar SmartFinn commented on August 19, 2024

SecureCRT cannot be used as Linux terminal emulator, but you can make a wrapper that replacing telnet command:

echo -e '#!/bin/sh\nSecureCRT /T /TELNET "$@"' > ~/.local/bin/telnet
chmod +x ~/.local/bin/telnet

Make sure that $HOME/.local/bin exist in your PATH. If this not true then add this line to your ~/.profile file and then log out and log back:

PATH="$HOME/bin:$HOME/.local/bin:$PATH"

from eve-ng-integration.

SmartFinn avatar SmartFinn commented on August 19, 2024

Another way is to use this fork https://github.com/jkldgoefgkljefogeg/eve-ng-integration

from eve-ng-integration.

dlj2019 avatar dlj2019 commented on August 19, 2024

Thank you for all of the hard work already provided!

Would you be able to help to get Securecrt working on Manjaro?... I already tried the instructions provided but still not working ...

deepinscreenshot_select-area_20171228193219

Thanks in advance!

DJ

from eve-ng-integration.

SmartFinn avatar SmartFinn commented on August 19, 2024

@dlj2019 my fault. The command for bash should looks like:

echo -e '#!/bin/sh\nSecureCRT /T /TELNET "$@"' > ~/.local/bin/telnet
chmod +x ~/.local/bin/telnet

from eve-ng-integration.

dlj2019 avatar dlj2019 commented on August 19, 2024

For some reason still not working...

deepinscreenshot_select-area_20171229120302

Should i make modifications to the "eve-ng-integration.desktop" file?

deepinscreenshot_select-area_20171229120936

from eve-ng-integration.

SmartFinn avatar SmartFinn commented on August 19, 2024

@dlj2019 make sure that ~/.local/bin/telnet has executable bit chmod +x ~/.local/bin/telnet if it's true add the line to ~/.profile file and than reboot your laptop:

echo 'PATH="$HOME/bin:$HOME/.local/bin:$PATH"' >> ~/.profile

from eve-ng-integration.

dlj2019 avatar dlj2019 commented on August 19, 2024

from eve-ng-integration.

dlj2019 avatar dlj2019 commented on August 19, 2024

from eve-ng-integration.

dlj2019 avatar dlj2019 commented on August 19, 2024

from eve-ng-integration.

shotab avatar shotab commented on August 19, 2024

Thanks...

Can you please tell me how do i get Tilix to work with Eve-NG? i need to
open different "Tab"sessions instead new windows. Would the information
below work ?

[Desktop Entry]
Name=EVE-NG Integration
*Exec=env OVERRIDE_TERMINAL_CMD="tilix --tab -e" eve-ng-integration %u *

If so what's the next steps?

Thanks in advance!

I do not use Tilix so I am not familiar with it.
do you mean something like this one ?
https://mega.nz/#!344ySBDD!yDfJP06lqmNWQpZQkSoRUloNHzuqnKcT4EFTxO_zKKg

from eve-ng-integration.

dlj2019 avatar dlj2019 commented on August 19, 2024

from eve-ng-integration.

shotab avatar shotab commented on August 19, 2024

Yes, that's exactly what i need ... Do you know how i can this done?

This is how I did it, maybe there is better solution which I don't know.

create following script and make it executable:

echo -e '#!/bin/bash\ntilix -a app-new-session $@' > ~/.local/bin/tilixx
chmod +x ~/.local/bin/tilixx

next you must edit "/usr/bin/eve-ng-integration" script and add following code as it is on picture below:

elif self._is_command('tilixx'):
  return ['tilixx', '-e']

https://transfer.sh/aCHYk/tilix1.png
https://transfer.sh/M2qwi/tilix2.png

resources
https://www.mankier.com/1/tilix
https://github.com/gnunn1/tilix/wiki/Command-Line-Actions

from eve-ng-integration.

dlj2019 avatar dlj2019 commented on August 19, 2024

from eve-ng-integration.

shotab avatar shotab commented on August 19, 2024

I am new to Linux.... Executable file has been created but i still not able
to open Tilix.

[Desktop Entry]
Name=EVE-NG Integration
Exec=eve-ng-integration %u
TryExec=eve-ng-integration
Type=Application
Categories=Network;
MimeType=x-scheme-handler/telnet;x-scheme-handler/capture;x-scheme-handler/docker;
X-KDE-Protocols=telnet,capture,docker
NoDisplay=true
def_terminal_emulator_cmd(self):
if self.override_terminal:
return self.override_terminal.split()
elif self._is_command('tilixx'):
return ['tilixx', '-e']
elif url.scheme == 'telnet':
cmd = 'telnet {host} {port}'.format(**data)

here is video.
https://mega.nz/#!j9ZiCYLa!CwFGrcaWN7bDS9C0qIJRfcR7p51k4SvTnErHNp0jA70

from eve-ng-integration.

dlj2019 avatar dlj2019 commented on August 19, 2024

from eve-ng-integration.

dlj2019 avatar dlj2019 commented on August 19, 2024

hi shotab,

Can you please let me know the 2 steps needed (link is not working anymore?

https://transfer.sh/gH4Tz/1.png
https://transfer.sh/bOcOn/2.png

============================================================
"if anyone still looking how to use SecureCRT, there is another solution.

echo -e '#!/bin/sh\nSecureCRT /T /TELNET $1 $2' > ~/.local/bin/SecureCRTx
chmod +x ~/.local/bin/SecureCRTx

next update ~/.profile
PATH="$HOME/bin:$HOME/.local/bin:$PATH"

**edit following script as it is on picture below /usr/bin/eve-ng-integration

https://transfer.sh/gH4Tz/1.png
https://transfer.sh/bOcOn/2.png
================= "==========================================

from eve-ng-integration.

dlj2019 avatar dlj2019 commented on August 19, 2024

if anyone still looking how to use SecureCRT, there is another solution.

echo -e '#!/bin/sh\nSecureCRT /T /TELNET $1 $2' > ~/.local/bin/SecureCRTx
chmod +x ~/.local/bin/SecureCRTx

next update ~/.profile
PATH="$HOME/bin:$HOME/.local/bin:$PATH"

edit following script as it is on picture below /usr/bin/eve-ng-integration
https://transfer.sh/gH4Tz/1.png
https://transfer.sh/bOcOn/2.png

Can you please let me know the last 2 steps ( png pictures) missing. The 2 links are no longer available.

https://transfer.sh/gH4Tz/1.png
https://transfer.sh/bOcOn/2.png

Thanks a lot in advance!

Regards,
DJ

from eve-ng-integration.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.