12

Is there a way I have an integrated terminal within a file manager in Ubuntu (like the way terminal opens up with VSCode) so that when I trigger this inbuilt terminal from any folder, it shows the prompt in the same window.

For example: VSCode integrated terminal looks like this:

VSCode integrated terminal

Now this is achieved by right-clicking and selecting the 'open in Terminal' option, which opens a new window.

DK Bose
  • 41,240
  • 22
  • 121
  • 214
Rahul
  • 385
  • 3
  • 12
  • 2
    It depends on how 'integrated' it needs to be. In Nautilus you can click right on a folder, or click right on the "empty space" between files, and choose "Open in Terminal". The terminal that opens will be in a separate window, though. – Henning Kockerbeck Oct 31 '19 at 09:18
  • 1
    https://github.com/linuxmint/nemo-extensions/tree/master/nemo-terminal nemo terminal. and https://projects.flogisoft.com/nautilus-terminal/ nautilus terminal – Rinzwind Oct 31 '19 at 10:59
  • Technically, nautilus is not "integrated". It is essentially a third party app that comes pre installed on Ubuntu. – progyammer Nov 10 '19 at 09:34

4 Answers4

17

This is the standard behavior of dolphin, the stock KDE file manager (which is by itself a sufficient reason to use KDE). However, to use dolphin under Gnome, I think you will also need to install Konsole and it feels a little out of place on Gnome.

An alternative seems to be Nautilusterminal 3. Though, I have not tested this myself, as I am a KDE user. You can install it by:

sudo add-apt-repository ppa:flozz/nautilus-terminal
sudo apt update
sudo apt install nautilus-terminal

Since, as of writing this, no Ubuntu 19.10 version is included in the ppa, you can use pip:

sudo apt install python-pip python-nautilus python-psutil
python2 -m pip install --user nautilus_terminal

The project is hosted here. A deb package can be found here.

Bruni
  • 10,180
  • 7
  • 55
  • 97
1

File manager nnn has options to open a shell or just the command prompt in the current directory.

Arun
  • 131
  • 3
1

In Thunar you can click FileOpen Terminal Here or the same by right-clicking any empty space in a folder.

BeastOfCaerbannog
  • 12,964
  • 10
  • 49
  • 77
-1

You should see an option to to open a terminal in the Nautilus menu. If not, use 'synaptic' and enter 'nautilus' into the synaptic search bar. Scan the list for the plugins you wish to install.

rob grune
  • 989
  • 1
  • 8
  • 17
  • Synaptic didn't find that option. Maybe that package was added by a PPA. – karel Nov 01 '19 at 06:32
  • the latest synaptic should show a menu box item when you right click an open space in the directory. have you the latest revision? – rob grune Nov 02 '19 at 04:02
  • I have the same version of Synaptic in 18.04 as the default version to be released in 20.04, which I assume to be the latest version, but there is still no package to open a terminal in the Nautilus menu in the list of the plugins to install. – karel Nov 02 '19 at 05:54