|
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.
Subscribe to All DLN Shows in ONE Feed!
https://destinationlinux.network/feed/allshows
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
Want to Support the Show?
Support us on Patreon = https://destinationlinux.org/patreon Support us on Sponsus = https://destinationlinux.org/sponsus Destination Linux Network Store = http://dlnstore.com
Want to follow the show and hosts on social media?
You can find all of our social accounts at https://destinationlinux.org/contact
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 |