I am using Filezilla on Ubuntu which suddenly became unable to connect to a usual remote ftp server anymore.
I noticed that Filezilla try's to run:
open "user@server" 22
so I tried executing it on a terminal:
open "user@server" 22
which gives:
Couldn't get a file descriptor referring to the console
However, using sudo
gives:
sudo open "user@server" 22
seems to work ok.
Is there a file that open
uses that its permissions needs to be changed??