5

In ubuntu 18.04 desktop, I used to install gnome-open via:

sudo apt install libgnome2-bin

So that I could open a folder from terminal via command line, e.g:

gnome-open /mnt/star/note

But, seems in ubuntu 20.04, libgnome2-bin is not available, so how can I install gnome-open, or how can I open a folder from terminal via command line?

pomsky
  • 70,557
Eric
  • 510

2 Answers2

9

Another solution found is:

xdg-open /mnt/star/note

Seems xdg-open is available on ubuntu 20.04, by default.

Mark Kirby
  • 18,949
  • 19
  • 79
  • 116
Eric
  • 510
6

Try to use:

gio open /mnt/star/note
raj
  • 11,409