248: PinePhone Pro: Exclusive Interview with Pine64

This week’s episode of Destination Linux, we’re being joined by Lukasz Ericenski of Pine64 for an Exclusive Interview about the new PinePhone Pro! Then we’re going to talk about NTFS improvements coming to the Linux kernel. Plus we’ve also got our famous tips, tricks and software picks. All of this and so much more this week on Destination Linux. So whether you’re brand new to Linux and open source or a guru of sudo. This is the podcast for you.

Sponsored by: do.co/dln

Sponsored by: bitwarden.com/dln

Hosts of Destination Linux:

Ryan (DasGeek) = dasgeekcommunity.com
Michael Tunnell = tuxdigital.com
Jill Bryant = jilllinuxgirl.com
Noah Chelliah = asknoahshow.com

Segment Index

Tip of the Week:

NFS – Network file system / as a local file system

Better performance than SMB

Manually mount first

sudo mount -t nfs 10.10.0.10:/backups /var/backups

  • Auto Mount (Add to fstab)

sudo apt-get install nfs-common autofs

yum install nfs-utils nfs-utils-lib

add to fstab

10.100.100.100:/path/to/data /local/mount/point nfs auto,nofail,noatime,nolock,intr,tcp,actimeo=1800 0 0

Leave a Comment