Speak at Automotive Linux Summit & OS Summit Japan — 4 Days Left to Submit a Proposal
-
Share your knowledge and expertise with industry-leading developers, architects and executives at Automotive Linux Summit and Open Source Summit Japan. The deadline to submit your proposal is March 18.
Automotive Linux Summit (ALS) connects the developers, vendors, and users driving innovation in Automotive Linux. Co-located with Open Source Summit Japan, ALS will gather over 1,000 attendees from global companies leading and accelerating the development and adoption of a fully open software stack for the connected vehicle.
Sign up to get the latest updates on Open Source Summit Japan!
Share your knowledge and expertise with industry-leading developers, architects and executives at Automotive Linux Summit and Open Source Summit Japan. Submit your proposal by March 18.
Suggested topics for Automotive Linux Summit include:
- Connected Car, Vehicle-to-Vehicle (V2V), Vehicle-to-Cloud (V2C)
- Security And Privacy
- In-Vehicle Infotainment (IVI) & Advanced Driver Assistance Systems (ADAS)
- Augmented Reality, Heads-Up Display
- Delivering Live Content And Updates To Vehicles In Motion
- Legal Issues
- Functional Safety And Open Source Software
- W3C for Automotive
- Non-AGL Technical Projects (e.g. Smart Roads, Self-Driving Vehicles, CarPlay, Android Auto)
View a full list of suggested topics.
Open Source Summit Japan will cover the cornerstone open source technologies with sub-conferences LinuxCon, ContainerCon and CloudOpen; help ecosystem leaders to navigate open source transformation with tracks on business and compliance; and explore the newest technologies and latest trends touching open source, including networking, serverless, edge computing and AI.
Tracks for Open Source Summit Japan include:
- Cloud Native Apps/Serverless/Microservices
- Infrastructure and Automation (Cloud/Cloud Native/DevOps)
- Artificial Intelligence and Data Analytics
- Linux Systems
- Networking and Orchestration
- Blockchain
- Open Source Leadership, Compliance, Strategy and Governance
View a list of suggested topics.
Get Inspired!
Watch presentations from Automotive Linux Summit & Open Source Summit Japan 2017
- Abby Kearns, Executive Director, Cloud Foundry Foundation
- Brian Behlendorf, Executive Director, The Hyperledger Project
- Tin Hang, Founder & CEO, OSVehicle
- Kenichi Murata, Project General Manager/Group Manager Connected Strategy & Planning Group, Connected Company, Toyota Motor Corp.
- The Future is Cloud Native – Panel Discussion
- Keiko Harada, Program Manager, Microsoft
- Ian Lewis, Developer Advocate, Google
- Eduardo Silva, Open Source Engineer, Treasure Data
- Moderator: Chris Aniszczyk, COO, Cloud Native Computing Foundation
Watch all keynotes from ALS >>
Watch all keynotes from Open Source Summit Japan >>
Planning to attend?
Register now to save $175 before early bird pricing ends!
Linux Foundation members and LF Project members receive an additional 20% discount off current registration pricing. Email events@linuxfoundation.org for discount information.
Academic, student, and non-profit discounts are available. Applications for diversity and needs-based scholarships are also being accepted. Click here for information on eligibility and how to apply.
The post Speak at Automotive Linux Summit & OS Summit Japan — 4 Days Left to Submit a Proposal appeared first on The Linux Foundation.
https://www.linuxfoundation.org/blog/speak-at-automotive-linux-summit-os-summit-japan/

screen and tmux
A comparison of the features (or more-so just a table of notes for accessing some of those features) for GNU screen and BSD-licensed tmux.
The formatting here is simple enough to understand (I would hope). ^ means ctrl+, so ^x is ctrl+x. M- means meta (generally left-alt or escape)+, so M-x is left-alt+x It should be noted that this is no where near a full feature-set of either group. This - being a cheat-sheet - is just to point out the most very basic features to get you on the road. Trust the developers and manpage writers more than me. This document is originally from 2009 when tmux was still new - since then both of these programs have had many updates and features added (not all of which have been dutifully noted here). |
||
Action | tmux | screen |
start a new session | tmux OR tmux new OR tmux new-session |
screen |
re-attach a detached session | tmux attach OR tmux attach-session |
screen-r |
re-attach an attached session (detaching it from elsewhere) | tmux attach -d OR tmux attach-session -d |
screen -dr |
re-attach an attached session (keeping it attached elsewhere) | tmux attach OR tmux attach-session |
screen -x |
detach from currently attached session | ^b d OR ^b :detach |
^a ^d OR ^a :detach |
rename-window to newname | ^b , <newname> OR ^b :rename-window <newn> |
^a A <newname> |
list windows | ^b w | ^a w |
list windows in chooseable menu | ^a " | |
go to window # | ^b # | ^a # |
go to last-active window | ^b l | ^a ^a |
go to next window | ^b n | ^a n |
go to previous window | ^b p | ^a p |
see keybindings | ^b ? | ^a ? |
list sessions | ^b s OR tmux ls OR tmux list-sessions |
screen -ls |
toggle visual bell | ^a ^g | |
create another window | ^b c | ^a c |
exit current shell/window | ^d | ^d |
split window/pane horizontally | ^b " | ^a S |
split window/pane vertically | ^b % | ^a | |
switch to other pane | ^b o | ^a <tab> |
kill the current pane | ^b x OR (logout/^D) | |
collapse the current pane/split (but leave processes running) | ^a X | |
cycle location of panes | ^b ^o | |
swap current pane with previous | ^b { | |
swap current pane with next | ^b } | |
show time | ^b t | |
show numeric values of panes | ^b q | |
toggle zoom-state of current pane (maximize/return current pane) | ^b z | |
break the current pane out of its window (to form new window) | ^b ! | |
re-arrange current panels within same window (different layouts) | ^b [space] | |
Kill the current window (and all panes within) | ^b killw [target-window] |