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
  • 68,507
Eric
  • 492

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,529
  • 19
  • 78
  • 114
Eric
  • 492
6

Try to use:

gio open /mnt/star/note
raj
  • 10,353
  • 2
    This is good, but I have just found another solution: xdg-open /mnt/star/note, both works. – Eric Jun 29 '20 at 11:28