Pasang perangkat Android [Menggunakan MTPF Sederhana] di Linux

# Clone repo
git clone https://github.com/phatina/simple-mtpfs/
cd simple-mtpfs
./autogen.sh
mkdir build && cd build
../configure --with-tmpdir=TMPDIR
make
make install (as root)

# connect your android-device with your linux-pc
# turn on usb-debugging mode on your android phone

# list connected android devices
 simple-mtpfs -l

# mounting particualr number device
 simple-mtpfs --device [number] [mountpoint]

# unmounting 
fusermount -u [mountpoint]

Dexter