SlideShare une entreprise Scribd logo
1  sur  37
Télécharger pour lire hors ligne
FreeBSD: The next 10 
years 
Jordan Hubbard 
MeetBSD 2014
But first 
A look back at where we came from!
FreeBSD 1.0 
From jkh@whisker.lotus.ie Tue Nov 2 14:51:38 1993 
Path: sran230!sranhd!sranha!wnoc-tyo-news!nec-tyo!nec-gw!sgiblab! 
spool.mu.edu!agate!agate!usenet 
From: jkh@whisker.lotus.ie (Jordan K. Hubbard) 
Newsgroups: comp.os.386bsd.announce 
Subject: FreeBSD 1.0 RELEASE now available 
Followup-To: poster 
Date: 1 Nov 1993 16:12:20 -0800 
Organization: Lotus Development Ireland 
Lines: 61 
Sender: cgd@agate.berkeley.edu 
Approved: 386bsd-announce-request@agate.berkeley.edu 
Message-ID: <JKH.93Oct31223943@whisker.lotus.ie> 
NNTP-Posting-Host: agate.berkeley.edu 
The first "official" release of FreeBSD 1.0 is now available, no more 
greek letters - this is the "production" release ...
Happy 21st Anniversary! 
FreeBSD will be 21 years old tomorrow 
(and can drink legally)
FreeBSD 1.0 
Our first distribution media 
(OK, I’m lying)
Our actual distribution media 
1.2 MB 
FreeBSD 1.0
Some of the consequences...
The 1.0 ports collection
My first FreeBSD dream build machine... 
I paid $1600 for my first 1Gb hard drive to do builds...
My first FreeBSD dream laptop 
<= Warner 
Losh 
Windows->
First conference (1999)
Commercial interests 
20 years ago 
• Internet Service Providers (large and small) 
• SOHO web servers / routers (very DIY) 
• Major services like Yahoo!, Hotmail, etc. 
• Basic developer desktop machines 
• Majority of FreeBSD machines were physical PCs 
that ran off of AC power 
Key take-away: FreeBSD’s role was fairly overt
20 years later... 
New install media: 64GB USB thumb drive. Holy crap!
20 years later... 
RB-Pi: SBC Far more powerful than my first FreeBSD 
machine. Cost: Under $50 (with storage card)
20 years later... 
My dream laptop has evolved (BSD instead of Windows)
20 years later... 
• FreeBSD release version is up to 10.1 
• Over 24000 ports (vs 70!) 
• Hundreds of committers, from both academia and 
commercial backgrounds 
• Sources of long-term funding (Foundation, other 
sponsors) 
• … But the commercial interests and overall market 
have changed significantly
Hey BSD: Let’s see that license again! 
The GPL experience 
The GPLv3: Scaring the crap out of lawyers since 2007
Commercial interests 
Today 
• FreeBSD is the underlying OS technology for routers, 
load balancers, security monitors, file servers, etc. 
• Basis for “software appliances” like pfSense, FreeNAS 
and quite a few others 
• Even the base OS for a very popular gaming console 
• “Embedded” market is morphing and exploding 
Key take-away: FreeBSD’s role, and even its name, is now fairly covert
Biggest Unix deployments now 
(wat?)
Even in the Enterprise… 
• “BYOD” movement has slowed desktop growth 
and fundamentally changed IT department mission 
• “Cloud” software / storage / computational 
resource consolidation have all but killed the DIY 
datacenter 
• Much better automation choices (*stack, chef, 
puppet) gives rise to the “2 guys with their laptops 
in a coffee shop” startup model
The rise of virtualization 
• VMWare, Xenserver, Hyper-v, bhyve - all acceptable 
hypervisors. Majority of OS deployments (and 
devices) are no longer physical 
• Automation tools work hardest to erase the notion 
of machine personality (and put it elsewhere) 
• Being virtual and/or automated means the entire 
environment becoming far less human-centric
What is an Operating System? 
A set of lego blocks
What do OS designers like to build? 
Things they think are cool
We have to change our 
definition of what is cool 
(Building blocks are cool)
More about mobile 
• More Unix machines are running on batteries than 
are plugged into AC by several orders of magnitude 
• Talking to one or more radios has replaced physical 
cables 
• The obvious: Power consumption and dynamic 
interface / connection management is important 
• Less obvious: High-level debugging and telemetry 
technology become critical to success
Ubuntu’s changing face
What does this all mean? 
• We need to be open to fundamentally new 
approaches and ruthlessly cull what is no longer 
demonstrably useful to the 99% 
• We need to be willing to shamelessly steal^H^H^H^H 
adopt things that are working well for others 
• We need to take on some big-picture challenges that 
will appeal to the next generation of hackers (where’s 
the next mountain?)
One Project Idea 
All OS / App configuration data 
• We need a lingua franca format yesterday! 
• Whether it be XML, YAML or JSON, we also 
need a single API to read / write / abstract away 
the details of finding config data. 
• Existing tools /services need to convert their 
legacy formats into this one and use the same 
API or the tower of babel will persist
Working Example 
• All OS and app configuration data in OS X and iOS are XML 
plist files, even GNU emacs and X11.org’s preferences! 
<?xml version="1.0" encoding="UTF-8"?> 
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/ 
PropertyList-1.0.dtd"> 
<plist version="1.0"> 
<dict> 
<key>SULastCheckTime</key> 
<date>2014-02-09T02:45:56Z</date> 
<key>cache_fonts</key> 
<true/> 
<key>done_xinit_check</key> 
<true/> 
<key>no_auth</key> 
<false/> 
<key>nolisten_tcp</key> 
<true/> 
</dict> 
</plist>
One Project Idea 
A centralized event notification system 
• You just can’t deal with: 
• Radios powering up and down at odd times 
• Network configuration changing rapidly 
• A node changing its identity almost entirely on the fly 
• Critical system caches needing invalidation 
… without a centralized way of being able to know about 
these sorts of events!
Working Example 
• notify(3) APIs in OS X / iOS and corresponding notifyd daemon 
• Send it a SIGUSR1 on OS X and you will see a huge number of notification names 
and their subscribers in /var/run/notifyd_pid.status - it has become insanely useful! 
"com.apple.system.lowdiskspace.system" uid=0 gid=0 333 
17 32 port 
"com.apple.system.timezone" uid=0 gid=0 333 slot 7 = 1 
1018 1 memory 
1011 10 port 
1011 8 memory 
1011 6 port 
"com.apple.system.powermanagement.SystemLoadAdvisory" uid=0 gid=0 333 slot 13 = 19 
406 44 port 
944 12 port 
406 35 memory 
"com.apple.system.config.network_change" uid=0 gid=0 333 slot 39 = 129 
190 17 memory 
845 28 memory 
845 26 memory 
"ids-device-nearby-0FC85E3A-7779-4EAA-AD02-70292707A33C" uid=0 gid=0 333 
229 30 port 
402 19 port 
257 30 port 
242 23 port
One Project Idea 
Service startup and wrangling 
• /etc/rc.d is quite sophisticated for what it does, 
but the paint on /etc/rc is obvious 
• Too many things need to know explicitly about 
dependencies (when can I start? What has to 
start before me?) 
• Power wrangling and automation depend on being 
able to start and stop services easily and at will
Working Example 
• I’m trying really hard not to suggest launchd here (so I won’t) 
• The idea of registering everything up-front with a broker and 
then letting IPC / timers / HW events start things from there (in 
cascade fashion) is still the right architecture 
• Even the linux die-hards have essentially grasped the necessity 
of systemd (even though they’re going to hate on it for awhile 
longer)
One Project Idea 
Telemetry & Remote Debugging 
• We really need a centralized way of being able 
to collect data from appliances / mobile devices 
• The NSA don’t need our help (they already do 
this upstream) but FreeBSD downstream end-users 
DO 
• Debugging the software stack on mobile devices 
is hard. It’s time for remote debugging support
One Project Idea 
Reference phone / tablet ports 
• Running on SBCs is excellent for bootstrapping, 
but there’s no “real world” hardware to support 
(displays, radios, accelerometers, etc) 
• Running on hardware you can actually use and 
carry around validates power / telemetry work 
• Real Hardware forces you to think about the 
entire software stack
In summary 
• We need to become more lego-like (and toss those 
legos we don’t need out of the box) in our 
architecture 
• The hardware platforms we choose need to be 
genuinely relevant in terms of mass appeal 
• We need to be more willing to learn from those 
who have gone before us in these emerging markets 
(BSD has a bit of a “rep” there)
FreeBSD: The future is ours if we want it! 
FreeBSD 20th Anniversary Party

Contenu connexe

Tendances

XPDS14: Xen 4.5 Roadmap - Konrad Wilk, Oracle
XPDS14: Xen 4.5 Roadmap - Konrad Wilk, OracleXPDS14: Xen 4.5 Roadmap - Konrad Wilk, Oracle
XPDS14: Xen 4.5 Roadmap - Konrad Wilk, OracleThe Linux Foundation
 
QNAP COSCUP Container Station
QNAP COSCUP Container StationQNAP COSCUP Container Station
QNAP COSCUP Container StationWu Fan-Cheng
 
Introduction to Docker & CoreOS - Symfony User Group Cologne
Introduction to Docker & CoreOS - Symfony User Group CologneIntroduction to Docker & CoreOS - Symfony User Group Cologne
Introduction to Docker & CoreOS - Symfony User Group CologneD
 
UCL All of the Things (MeetBSD California 2014 Lightning Talk)
UCL All of the Things (MeetBSD California 2014 Lightning Talk)UCL All of the Things (MeetBSD California 2014 Lightning Talk)
UCL All of the Things (MeetBSD California 2014 Lightning Talk)iXsystems
 
PaaSTA: Running applications at Yelp
PaaSTA: Running applications at YelpPaaSTA: Running applications at Yelp
PaaSTA: Running applications at YelpNathan Handler
 
Docker: the road ahead
Docker: the road aheadDocker: the road ahead
Docker: the road aheadshykes
 
Container Torture: Run any binary, in any container
Container Torture: Run any binary, in any containerContainer Torture: Run any binary, in any container
Container Torture: Run any binary, in any containerDocker, Inc.
 
Docker + GCE + etcd + ray tracing
Docker + GCE + etcd + ray tracingDocker + GCE + etcd + ray tracing
Docker + GCE + etcd + ray tracingSyoyo Fujita
 
Docker Internals - Twilio talk November 14th, 2013
Docker Internals - Twilio talk November 14th, 2013Docker Internals - Twilio talk November 14th, 2013
Docker Internals - Twilio talk November 14th, 2013Guillaume Charmes
 
linux minimal os tutorial - by shatrix
linux minimal os tutorial - by shatrixlinux minimal os tutorial - by shatrix
linux minimal os tutorial - by shatrixSherif Mousa
 
Cobbler - Fast and reliable multi-OS provisioning
Cobbler - Fast and reliable multi-OS provisioningCobbler - Fast and reliable multi-OS provisioning
Cobbler - Fast and reliable multi-OS provisioningRUDDER
 
Docker Meetup: Docker Networking 1.11, by Madhu Venugopal
Docker Meetup: Docker Networking 1.11, by Madhu VenugopalDocker Meetup: Docker Networking 1.11, by Madhu Venugopal
Docker Meetup: Docker Networking 1.11, by Madhu VenugopalMichelle Antebi
 
Containers are the future of the Cloud
Containers are the future of the CloudContainers are the future of the Cloud
Containers are the future of the CloudPavel Odintsov
 
KVM and docker LXC Benchmarking with OpenStack
KVM and docker LXC Benchmarking with OpenStackKVM and docker LXC Benchmarking with OpenStack
KVM and docker LXC Benchmarking with OpenStackBoden Russell
 
Presentation for RHCE in linux
Presentation  for  RHCE in linux Presentation  for  RHCE in linux
Presentation for RHCE in linux Kuldeep Tiwari
 
Application-Based Routing
Application-Based RoutingApplication-Based Routing
Application-Based RoutingHungWei Chiu
 
Inside Docker for Fedora20/RHEL7
Inside Docker for Fedora20/RHEL7Inside Docker for Fedora20/RHEL7
Inside Docker for Fedora20/RHEL7Etsuji Nakai
 

Tendances (20)

XPDS14: Xen 4.5 Roadmap - Konrad Wilk, Oracle
XPDS14: Xen 4.5 Roadmap - Konrad Wilk, OracleXPDS14: Xen 4.5 Roadmap - Konrad Wilk, Oracle
XPDS14: Xen 4.5 Roadmap - Konrad Wilk, Oracle
 
QNAP COSCUP Container Station
QNAP COSCUP Container StationQNAP COSCUP Container Station
QNAP COSCUP Container Station
 
Introduction to Docker & CoreOS - Symfony User Group Cologne
Introduction to Docker & CoreOS - Symfony User Group CologneIntroduction to Docker & CoreOS - Symfony User Group Cologne
Introduction to Docker & CoreOS - Symfony User Group Cologne
 
NkSIP: The Erlang SIP application server
NkSIP: The Erlang SIP application serverNkSIP: The Erlang SIP application server
NkSIP: The Erlang SIP application server
 
UCL All of the Things (MeetBSD California 2014 Lightning Talk)
UCL All of the Things (MeetBSD California 2014 Lightning Talk)UCL All of the Things (MeetBSD California 2014 Lightning Talk)
UCL All of the Things (MeetBSD California 2014 Lightning Talk)
 
PaaSTA: Running applications at Yelp
PaaSTA: Running applications at YelpPaaSTA: Running applications at Yelp
PaaSTA: Running applications at Yelp
 
Docker: the road ahead
Docker: the road aheadDocker: the road ahead
Docker: the road ahead
 
Container Torture: Run any binary, in any container
Container Torture: Run any binary, in any containerContainer Torture: Run any binary, in any container
Container Torture: Run any binary, in any container
 
Docker + GCE + etcd + ray tracing
Docker + GCE + etcd + ray tracingDocker + GCE + etcd + ray tracing
Docker + GCE + etcd + ray tracing
 
OpenZFS at LinuxCon
OpenZFS at LinuxConOpenZFS at LinuxCon
OpenZFS at LinuxCon
 
Docker Internals - Twilio talk November 14th, 2013
Docker Internals - Twilio talk November 14th, 2013Docker Internals - Twilio talk November 14th, 2013
Docker Internals - Twilio talk November 14th, 2013
 
linux minimal os tutorial - by shatrix
linux minimal os tutorial - by shatrixlinux minimal os tutorial - by shatrix
linux minimal os tutorial - by shatrix
 
Cobbler - Fast and reliable multi-OS provisioning
Cobbler - Fast and reliable multi-OS provisioningCobbler - Fast and reliable multi-OS provisioning
Cobbler - Fast and reliable multi-OS provisioning
 
Docker Meetup: Docker Networking 1.11, by Madhu Venugopal
Docker Meetup: Docker Networking 1.11, by Madhu VenugopalDocker Meetup: Docker Networking 1.11, by Madhu Venugopal
Docker Meetup: Docker Networking 1.11, by Madhu Venugopal
 
005 skyeye
005 skyeye005 skyeye
005 skyeye
 
Containers are the future of the Cloud
Containers are the future of the CloudContainers are the future of the Cloud
Containers are the future of the Cloud
 
KVM and docker LXC Benchmarking with OpenStack
KVM and docker LXC Benchmarking with OpenStackKVM and docker LXC Benchmarking with OpenStack
KVM and docker LXC Benchmarking with OpenStack
 
Presentation for RHCE in linux
Presentation  for  RHCE in linux Presentation  for  RHCE in linux
Presentation for RHCE in linux
 
Application-Based Routing
Application-Based RoutingApplication-Based Routing
Application-Based Routing
 
Inside Docker for Fedora20/RHEL7
Inside Docker for Fedora20/RHEL7Inside Docker for Fedora20/RHEL7
Inside Docker for Fedora20/RHEL7
 

En vedette

History of ZFS (MeetBSD California 2016)
History of ZFS (MeetBSD California 2016)History of ZFS (MeetBSD California 2016)
History of ZFS (MeetBSD California 2016)iXsystems
 
FreeNAS 10: Challenges of Building a Modern Storage Appliance based on FreeBS...
FreeNAS 10: Challenges of Building a Modern Storage Appliance based on FreeBS...FreeNAS 10: Challenges of Building a Modern Storage Appliance based on FreeBS...
FreeNAS 10: Challenges of Building a Modern Storage Appliance based on FreeBS...iXsystems
 
BayLISA - FreeNAS 10 by Jordan Hubbard
BayLISA - FreeNAS 10 by Jordan HubbardBayLISA - FreeNAS 10 by Jordan Hubbard
BayLISA - FreeNAS 10 by Jordan HubbardiXsystems
 
PCI Pass-through - FreeBSD VM on Hyper-V (MeetBSD California 2016)
PCI Pass-through - FreeBSD VM on Hyper-V (MeetBSD California 2016)PCI Pass-through - FreeBSD VM on Hyper-V (MeetBSD California 2016)
PCI Pass-through - FreeBSD VM on Hyper-V (MeetBSD California 2016)iXsystems
 
نصيحتی چند برای سعادت زندگی زن و شوهر
نصيحتی چند برای سعادت زندگی زن و شوهرنصيحتی چند برای سعادت زندگی زن و شوهر
نصيحتی چند برای سعادت زندگی زن و شوهرhemayata
 
Evaluation Question 2
Evaluation Question 2Evaluation Question 2
Evaluation Question 2AngrySmurf1
 
Presentation kelas 9 bab 3 -MENAMBAH TABEL,GRAFIK DAN DIAGRAM
Presentation kelas 9 bab 3  -MENAMBAH TABEL,GRAFIK DAN DIAGRAMPresentation kelas 9 bab 3  -MENAMBAH TABEL,GRAFIK DAN DIAGRAM
Presentation kelas 9 bab 3 -MENAMBAH TABEL,GRAFIK DAN DIAGRAMamaliadhea
 
Automazione dei processi con SharePoint e josh
Automazione dei processi con SharePoint e joshAutomazione dei processi con SharePoint e josh
Automazione dei processi con SharePoint e joshit Consult
 
Digital Revolution in Bangladesh - 23 Expert Predictions for 2014
Digital Revolution in Bangladesh - 23 Expert Predictions for 2014Digital Revolution in Bangladesh - 23 Expert Predictions for 2014
Digital Revolution in Bangladesh - 23 Expert Predictions for 2014WebAble Digital
 
Technology and Protest
Technology and ProtestTechnology and Protest
Technology and Protesttgambee
 
BrainStorm. Методика "+, -, ?".
BrainStorm. Методика "+, -, ?".BrainStorm. Методика "+, -, ?".
BrainStorm. Методика "+, -, ?".Tanya Ryzhaya
 
Presentation materi kelas 9 bab 2
Presentation materi kelas 9 bab 2Presentation materi kelas 9 bab 2
Presentation materi kelas 9 bab 2amaliadhea
 
Boost sales with_cnam
Boost sales with_cnamBoost sales with_cnam
Boost sales with_cnamFlowroute
 
Media studies Presentation
Media studies Presentation Media studies Presentation
Media studies Presentation Michael Day
 
Edgar J Ortiz II Prubea Int. a la Ing. Civil
Edgar J Ortiz II Prubea Int. a la Ing. CivilEdgar J Ortiz II Prubea Int. a la Ing. Civil
Edgar J Ortiz II Prubea Int. a la Ing. CivilEdgar Ortiz
 

En vedette (20)

History of ZFS (MeetBSD California 2016)
History of ZFS (MeetBSD California 2016)History of ZFS (MeetBSD California 2016)
History of ZFS (MeetBSD California 2016)
 
FreeNAS 10: Challenges of Building a Modern Storage Appliance based on FreeBS...
FreeNAS 10: Challenges of Building a Modern Storage Appliance based on FreeBS...FreeNAS 10: Challenges of Building a Modern Storage Appliance based on FreeBS...
FreeNAS 10: Challenges of Building a Modern Storage Appliance based on FreeBS...
 
BayLISA - FreeNAS 10 by Jordan Hubbard
BayLISA - FreeNAS 10 by Jordan HubbardBayLISA - FreeNAS 10 by Jordan Hubbard
BayLISA - FreeNAS 10 by Jordan Hubbard
 
PCI Pass-through - FreeBSD VM on Hyper-V (MeetBSD California 2016)
PCI Pass-through - FreeBSD VM on Hyper-V (MeetBSD California 2016)PCI Pass-through - FreeBSD VM on Hyper-V (MeetBSD California 2016)
PCI Pass-through - FreeBSD VM on Hyper-V (MeetBSD California 2016)
 
SERVICIOS DE GOOGLE
SERVICIOS DE GOOGLESERVICIOS DE GOOGLE
SERVICIOS DE GOOGLE
 
نصيحتی چند برای سعادت زندگی زن و شوهر
نصيحتی چند برای سعادت زندگی زن و شوهرنصيحتی چند برای سعادت زندگی زن و شوهر
نصيحتی چند برای سعادت زندگی زن و شوهر
 
Evaluation Question 2
Evaluation Question 2Evaluation Question 2
Evaluation Question 2
 
Presentation kelas 9 bab 3 -MENAMBAH TABEL,GRAFIK DAN DIAGRAM
Presentation kelas 9 bab 3  -MENAMBAH TABEL,GRAFIK DAN DIAGRAMPresentation kelas 9 bab 3  -MENAMBAH TABEL,GRAFIK DAN DIAGRAM
Presentation kelas 9 bab 3 -MENAMBAH TABEL,GRAFIK DAN DIAGRAM
 
Crawford,unit 2
Crawford,unit 2Crawford,unit 2
Crawford,unit 2
 
Automazione dei processi con SharePoint e josh
Automazione dei processi con SharePoint e joshAutomazione dei processi con SharePoint e josh
Automazione dei processi con SharePoint e josh
 
Digital Revolution in Bangladesh - 23 Expert Predictions for 2014
Digital Revolution in Bangladesh - 23 Expert Predictions for 2014Digital Revolution in Bangladesh - 23 Expert Predictions for 2014
Digital Revolution in Bangladesh - 23 Expert Predictions for 2014
 
Technology and Protest
Technology and ProtestTechnology and Protest
Technology and Protest
 
BrainStorm. Методика "+, -, ?".
BrainStorm. Методика "+, -, ?".BrainStorm. Методика "+, -, ?".
BrainStorm. Методика "+, -, ?".
 
question three
question threequestion three
question three
 
Presentation materi kelas 9 bab 2
Presentation materi kelas 9 bab 2Presentation materi kelas 9 bab 2
Presentation materi kelas 9 bab 2
 
Trichuris trichiura
Trichuris trichiuraTrichuris trichiura
Trichuris trichiura
 
Boost sales with_cnam
Boost sales with_cnamBoost sales with_cnam
Boost sales with_cnam
 
Media studies Presentation
Media studies Presentation Media studies Presentation
Media studies Presentation
 
Edgar J Ortiz II Prubea Int. a la Ing. Civil
Edgar J Ortiz II Prubea Int. a la Ing. CivilEdgar J Ortiz II Prubea Int. a la Ing. Civil
Edgar J Ortiz II Prubea Int. a la Ing. Civil
 
Redes sociales
Redes socialesRedes sociales
Redes sociales
 

Similaire à FreeBSD: The Next 10 Years (MeetBSD 2014)

FreeBSD: Looking forward to another 10 years by Jordan Hubbard
FreeBSD: Looking forward to another 10 years by Jordan HubbardFreeBSD: Looking forward to another 10 years by Jordan Hubbard
FreeBSD: Looking forward to another 10 years by Jordan Hubbardeurobsdcon
 
The Internet-of-things: Architecting for the deluge of data
The Internet-of-things: Architecting for the deluge of dataThe Internet-of-things: Architecting for the deluge of data
The Internet-of-things: Architecting for the deluge of databcantrill
 
Other distributed systems
Other distributed systemsOther distributed systems
Other distributed systemsSri Prasanna
 
Bursting into the public Cloud - Sharing my experience doing it at large scal...
Bursting into the public Cloud - Sharing my experience doing it at large scal...Bursting into the public Cloud - Sharing my experience doing it at large scal...
Bursting into the public Cloud - Sharing my experience doing it at large scal...Igor Sfiligoi
 
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...Larry Smarr
 
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...Larry Smarr
 
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...Larry Smarr
 
Bit_Bucket_x31_Final
Bit_Bucket_x31_FinalBit_Bucket_x31_Final
Bit_Bucket_x31_FinalSam Knutson
 
Evolution of unix environments and the road to faster deployments
Evolution of unix environments and the road to faster deploymentsEvolution of unix environments and the road to faster deployments
Evolution of unix environments and the road to faster deploymentsRakuten Group, Inc.
 
History of ICT @ DDVE
History of ICT @ DDVEHistory of ICT @ DDVE
History of ICT @ DDVEAlvar Lumberg
 
Big Data Approaches to Cloud Security
Big Data Approaches to Cloud SecurityBig Data Approaches to Cloud Security
Big Data Approaches to Cloud SecurityPaul Morse
 
Sioux Hot-or-Not: The future of Linux (Alan Cox)
Sioux Hot-or-Not: The future of Linux (Alan Cox)Sioux Hot-or-Not: The future of Linux (Alan Cox)
Sioux Hot-or-Not: The future of Linux (Alan Cox)siouxhotornot
 
Network Stack in Userspace (NUSE)
Network Stack in Userspace (NUSE)Network Stack in Userspace (NUSE)
Network Stack in Userspace (NUSE)Hajime Tazaki
 
SDN - a new security paradigm?
SDN - a new security paradigm?SDN - a new security paradigm?
SDN - a new security paradigm?Sophos Benelux
 
The internet of $h1t
The internet of $h1tThe internet of $h1t
The internet of $h1tAmit Serper
 
Distributech_Presentation DTECH_2013
Distributech_Presentation DTECH_2013Distributech_Presentation DTECH_2013
Distributech_Presentation DTECH_2013Dorian Hernandez
 
Iot presentation and hand on building tools
Iot presentation and hand on building toolsIot presentation and hand on building tools
Iot presentation and hand on building toolsAhmedMostafa787
 
Basics of tcp ip
Basics of tcp ipBasics of tcp ip
Basics of tcp ipKumar
 

Similaire à FreeBSD: The Next 10 Years (MeetBSD 2014) (20)

FreeBSD: Looking forward to another 10 years by Jordan Hubbard
FreeBSD: Looking forward to another 10 years by Jordan HubbardFreeBSD: Looking forward to another 10 years by Jordan Hubbard
FreeBSD: Looking forward to another 10 years by Jordan Hubbard
 
The Internet-of-things: Architecting for the deluge of data
The Internet-of-things: Architecting for the deluge of dataThe Internet-of-things: Architecting for the deluge of data
The Internet-of-things: Architecting for the deluge of data
 
Other distributed systems
Other distributed systemsOther distributed systems
Other distributed systems
 
Bursting into the public Cloud - Sharing my experience doing it at large scal...
Bursting into the public Cloud - Sharing my experience doing it at large scal...Bursting into the public Cloud - Sharing my experience doing it at large scal...
Bursting into the public Cloud - Sharing my experience doing it at large scal...
 
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...
 
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...
 
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...
Panel: Open Infrastructure for an Open Society: OSG, Commercial Clouds, and B...
 
Bit_Bucket_x31_Final
Bit_Bucket_x31_FinalBit_Bucket_x31_Final
Bit_Bucket_x31_Final
 
Evolution of unix environments and the road to faster deployments
Evolution of unix environments and the road to faster deploymentsEvolution of unix environments and the road to faster deployments
Evolution of unix environments and the road to faster deployments
 
History of ICT @ DDVE
History of ICT @ DDVEHistory of ICT @ DDVE
History of ICT @ DDVE
 
Big Data Approaches to Cloud Security
Big Data Approaches to Cloud SecurityBig Data Approaches to Cloud Security
Big Data Approaches to Cloud Security
 
Sioux Hot-or-Not: The future of Linux (Alan Cox)
Sioux Hot-or-Not: The future of Linux (Alan Cox)Sioux Hot-or-Not: The future of Linux (Alan Cox)
Sioux Hot-or-Not: The future of Linux (Alan Cox)
 
Network Stack in Userspace (NUSE)
Network Stack in Userspace (NUSE)Network Stack in Userspace (NUSE)
Network Stack in Userspace (NUSE)
 
Explore Android Internals
Explore Android InternalsExplore Android Internals
Explore Android Internals
 
SDN - a new security paradigm?
SDN - a new security paradigm?SDN - a new security paradigm?
SDN - a new security paradigm?
 
The internet of $h1t
The internet of $h1tThe internet of $h1t
The internet of $h1t
 
Distributech_Presentation DTECH_2013
Distributech_Presentation DTECH_2013Distributech_Presentation DTECH_2013
Distributech_Presentation DTECH_2013
 
Iot presentation and hand on building tools
Iot presentation and hand on building toolsIot presentation and hand on building tools
Iot presentation and hand on building tools
 
Routing_Article
Routing_ArticleRouting_Article
Routing_Article
 
Basics of tcp ip
Basics of tcp ipBasics of tcp ip
Basics of tcp ip
 

Dernier

Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructureitnewsafrica
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
Glenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security ObservabilityGlenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security Observabilityitnewsafrica
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Kaya Weers
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS:  6 Ways to Automate Your Data IntegrationBridging Between CAD & GIS:  6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integrationmarketing932765
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 

Dernier (20)

Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
Glenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security ObservabilityGlenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security Observability
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS:  6 Ways to Automate Your Data IntegrationBridging Between CAD & GIS:  6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 

FreeBSD: The Next 10 Years (MeetBSD 2014)

  • 1. FreeBSD: The next 10 years Jordan Hubbard MeetBSD 2014
  • 2. But first A look back at where we came from!
  • 3. FreeBSD 1.0 From jkh@whisker.lotus.ie Tue Nov 2 14:51:38 1993 Path: sran230!sranhd!sranha!wnoc-tyo-news!nec-tyo!nec-gw!sgiblab! spool.mu.edu!agate!agate!usenet From: jkh@whisker.lotus.ie (Jordan K. Hubbard) Newsgroups: comp.os.386bsd.announce Subject: FreeBSD 1.0 RELEASE now available Followup-To: poster Date: 1 Nov 1993 16:12:20 -0800 Organization: Lotus Development Ireland Lines: 61 Sender: cgd@agate.berkeley.edu Approved: 386bsd-announce-request@agate.berkeley.edu Message-ID: <JKH.93Oct31223943@whisker.lotus.ie> NNTP-Posting-Host: agate.berkeley.edu The first "official" release of FreeBSD 1.0 is now available, no more greek letters - this is the "production" release ...
  • 4. Happy 21st Anniversary! FreeBSD will be 21 years old tomorrow (and can drink legally)
  • 5. FreeBSD 1.0 Our first distribution media (OK, I’m lying)
  • 6. Our actual distribution media 1.2 MB FreeBSD 1.0
  • 7. Some of the consequences...
  • 8. The 1.0 ports collection
  • 9. My first FreeBSD dream build machine... I paid $1600 for my first 1Gb hard drive to do builds...
  • 10. My first FreeBSD dream laptop <= Warner Losh Windows->
  • 12. Commercial interests 20 years ago • Internet Service Providers (large and small) • SOHO web servers / routers (very DIY) • Major services like Yahoo!, Hotmail, etc. • Basic developer desktop machines • Majority of FreeBSD machines were physical PCs that ran off of AC power Key take-away: FreeBSD’s role was fairly overt
  • 13. 20 years later... New install media: 64GB USB thumb drive. Holy crap!
  • 14. 20 years later... RB-Pi: SBC Far more powerful than my first FreeBSD machine. Cost: Under $50 (with storage card)
  • 15. 20 years later... My dream laptop has evolved (BSD instead of Windows)
  • 16. 20 years later... • FreeBSD release version is up to 10.1 • Over 24000 ports (vs 70!) • Hundreds of committers, from both academia and commercial backgrounds • Sources of long-term funding (Foundation, other sponsors) • … But the commercial interests and overall market have changed significantly
  • 17. Hey BSD: Let’s see that license again! The GPL experience The GPLv3: Scaring the crap out of lawyers since 2007
  • 18. Commercial interests Today • FreeBSD is the underlying OS technology for routers, load balancers, security monitors, file servers, etc. • Basis for “software appliances” like pfSense, FreeNAS and quite a few others • Even the base OS for a very popular gaming console • “Embedded” market is morphing and exploding Key take-away: FreeBSD’s role, and even its name, is now fairly covert
  • 20. Even in the Enterprise… • “BYOD” movement has slowed desktop growth and fundamentally changed IT department mission • “Cloud” software / storage / computational resource consolidation have all but killed the DIY datacenter • Much better automation choices (*stack, chef, puppet) gives rise to the “2 guys with their laptops in a coffee shop” startup model
  • 21. The rise of virtualization • VMWare, Xenserver, Hyper-v, bhyve - all acceptable hypervisors. Majority of OS deployments (and devices) are no longer physical • Automation tools work hardest to erase the notion of machine personality (and put it elsewhere) • Being virtual and/or automated means the entire environment becoming far less human-centric
  • 22. What is an Operating System? A set of lego blocks
  • 23. What do OS designers like to build? Things they think are cool
  • 24. We have to change our definition of what is cool (Building blocks are cool)
  • 25. More about mobile • More Unix machines are running on batteries than are plugged into AC by several orders of magnitude • Talking to one or more radios has replaced physical cables • The obvious: Power consumption and dynamic interface / connection management is important • Less obvious: High-level debugging and telemetry technology become critical to success
  • 27. What does this all mean? • We need to be open to fundamentally new approaches and ruthlessly cull what is no longer demonstrably useful to the 99% • We need to be willing to shamelessly steal^H^H^H^H adopt things that are working well for others • We need to take on some big-picture challenges that will appeal to the next generation of hackers (where’s the next mountain?)
  • 28. One Project Idea All OS / App configuration data • We need a lingua franca format yesterday! • Whether it be XML, YAML or JSON, we also need a single API to read / write / abstract away the details of finding config data. • Existing tools /services need to convert their legacy formats into this one and use the same API or the tower of babel will persist
  • 29. Working Example • All OS and app configuration data in OS X and iOS are XML plist files, even GNU emacs and X11.org’s preferences! <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/ PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>SULastCheckTime</key> <date>2014-02-09T02:45:56Z</date> <key>cache_fonts</key> <true/> <key>done_xinit_check</key> <true/> <key>no_auth</key> <false/> <key>nolisten_tcp</key> <true/> </dict> </plist>
  • 30. One Project Idea A centralized event notification system • You just can’t deal with: • Radios powering up and down at odd times • Network configuration changing rapidly • A node changing its identity almost entirely on the fly • Critical system caches needing invalidation … without a centralized way of being able to know about these sorts of events!
  • 31. Working Example • notify(3) APIs in OS X / iOS and corresponding notifyd daemon • Send it a SIGUSR1 on OS X and you will see a huge number of notification names and their subscribers in /var/run/notifyd_pid.status - it has become insanely useful! "com.apple.system.lowdiskspace.system" uid=0 gid=0 333 17 32 port "com.apple.system.timezone" uid=0 gid=0 333 slot 7 = 1 1018 1 memory 1011 10 port 1011 8 memory 1011 6 port "com.apple.system.powermanagement.SystemLoadAdvisory" uid=0 gid=0 333 slot 13 = 19 406 44 port 944 12 port 406 35 memory "com.apple.system.config.network_change" uid=0 gid=0 333 slot 39 = 129 190 17 memory 845 28 memory 845 26 memory "ids-device-nearby-0FC85E3A-7779-4EAA-AD02-70292707A33C" uid=0 gid=0 333 229 30 port 402 19 port 257 30 port 242 23 port
  • 32. One Project Idea Service startup and wrangling • /etc/rc.d is quite sophisticated for what it does, but the paint on /etc/rc is obvious • Too many things need to know explicitly about dependencies (when can I start? What has to start before me?) • Power wrangling and automation depend on being able to start and stop services easily and at will
  • 33. Working Example • I’m trying really hard not to suggest launchd here (so I won’t) • The idea of registering everything up-front with a broker and then letting IPC / timers / HW events start things from there (in cascade fashion) is still the right architecture • Even the linux die-hards have essentially grasped the necessity of systemd (even though they’re going to hate on it for awhile longer)
  • 34. One Project Idea Telemetry & Remote Debugging • We really need a centralized way of being able to collect data from appliances / mobile devices • The NSA don’t need our help (they already do this upstream) but FreeBSD downstream end-users DO • Debugging the software stack on mobile devices is hard. It’s time for remote debugging support
  • 35. One Project Idea Reference phone / tablet ports • Running on SBCs is excellent for bootstrapping, but there’s no “real world” hardware to support (displays, radios, accelerometers, etc) • Running on hardware you can actually use and carry around validates power / telemetry work • Real Hardware forces you to think about the entire software stack
  • 36. In summary • We need to become more lego-like (and toss those legos we don’t need out of the box) in our architecture • The hardware platforms we choose need to be genuinely relevant in terms of mass appeal • We need to be more willing to learn from those who have gone before us in these emerging markets (BSD has a bit of a “rep” there)
  • 37. FreeBSD: The future is ours if we want it! FreeBSD 20th Anniversary Party