Solved xfce4-terminal - new tab is not opened in current working directory

I've been using x11/xfce4-terminal recently and every time I open a new tab or a new window, it is opened at home directory not at current working directory. Is there a way to change this behavior. Sometimes it's really annoying.
 
Not tested, but you need to enable the Linux compatibility (I think).

1. Add linux_enable="YES" to /etc/rc.conf

2. Load the linprocfs(5) module

Code:
kldload linprocfs

3. Create /usr/compat/linux/proc

Code:
mkdir -p /usr/compat/linux/proc

4. Add this line in /etc/fstab

Code:
linproc         /usr/compat/linux/proc         linprocfs         rw    0 0
 
Back
Top