Revisiting Storage for Smartphones

Total Page:16

File Type:pdf, Size:1020Kb

Revisiting Storage for Smartphones Revisiting Storage for Smartphones Hyojun Kim ,∗ Nitin Agrawal, Cristian Ungureanu NEC Laboratories America [email protected], [email protected], [email protected] Abstract Conventional wisdom holds that storage is not a big con- 4096 802.11ad tributor to application performance on mobile devices. 512 Flash storage (the type most commonly used today) draws 802.11ac little power, and its performance is thought to exceed that 64 802.11n 3.5-4G of the network subsystem. In this paper we present ev- 8 802.11a/g idence that storage performance does indeed affect the 802.11b performance of several common applications such as web 1 browsing, Maps, application install, email, and Facebook. Lucent 2.75-3G Peak throughput (MB/s) 0.125 WaveLan Local-Area For several Android smartphones, we find that just by Wide-Area 2.5G varying the underlying flash storage, performance over 2G WiFi can typically vary between 100% to 300% across ap- 1980 1990 2000 2010 2020 plications; in one extreme scenario the variation jumped Peak throughput of wireless networks. Trends to over 2000%. We identify the reasons for the strong cor- Figure 1: relation between storage and application performance to for local and wide-area wireless networks over past three be a combination of poor flash device performance, ran- decades; y-axis is log base 2. dom I/O from application databases, and heavy-handed use of synchronous writes; based on our findings we im- Storage has traditionally not been viewed as a criti- plement and evaluate a set of pilot solutions to address cal component of phones, tablets, and PDAs – at least the storage performance deficiencies in smartphones. in terms of the expected performance. Despite the impe- tus to provide faster mobile access to content locally [40] 1 Introduction and through cloud services [61], performance of the un- derlying storage subsystem on mobile devices is not well Mobile phones, tablets, and ultra-portable laptops are no understood. Our work started with a simple motivating longer viewed as the wimpy siblings of the personal com- question: does storage affect the performance of popular puter; for many users they have become the dominant mobile applications? Conventional wisdom suggests the computing device for a wide variety of applications. Ac- answer to be no, as long as storage performance exceeds cording to a recent Gartner report, within the next three that of the network subsystem. We find evidence to the years, mobile devices will surpass the PC as the most contrary – even interactive applications like web brows- common web access device worldwide [38]. By 2013, ing slow down with slower storage. over 40% of the enhanced phone installed-base will be Storage performance on mobile devices is important equipped with advanced browsers [57]. for end-user experience today, and its impact is expected Research pertaining to mobile devices can be broadly to grow due to several reasons. First, emerging wireless split into applications and services, device architecture, technologies such as 802.11n (600 Mbps peak through- and operating systems. From a systems perspective, re- put) [68] and 802.11ad (or “60 GHz”, 7 Gbps peak search has tackled many important aspects: understanding throughput)offer the potential for significantly higher net- and improving energy management [36, 59, 26], network work throughputto mobile devices [41]. Figure 1 presents middleware [53], application execution models [30, 29], the trends for network performance over the last sev- security and privacy [25, 32, 34, 39], and usability [27]. eral decades; local-area networks are not necessarily the Prior research has also addressed several important issues de-facto bottleneck on modern mobile devices. Second, centered around mobile functionality [55, 65], data man- while network throughput is increasing phenomenally, la- agement [66], and disconnected access [49, 37]. However, tency is not [62]. As a result, access to several cloud one important component is conspicuously missing from services benefits from a split of functionality between the the mobile research landscape – storage performance. cloud and the device [29], placing a greater burden on lo- ∗Work done as an intern, now at Georgia Institute of Technology cal resources including storage [51]. Third, mobile de- 1 vices are increasingly being used as the primary comput- performance of web browsing over WiFi varied by 187% ing device, running more performanceintensive tasks than and over a faster network (setup over USB) by 220%. In previously imagined. Smartphone usage is on the rise; the case of a particularly poor flash device, the variation smartphones and tablet computers are becoming a popular exceeded 2000% for WiFi and 2450% for USB. replacement for laptops [23]. In developing economies, a Speed class considered irrelevant: our benchmarking mobile/enhanced phone is often the only computing de- reveals that the “speed class” marking on SD cards is vice available to a user for a variety of needs. not necessarily indicative of application performance; In this paper, we present a detailed analysis of the I/O although the class rating is meant for sequential perfor- behavior of mobile applications on Android-based smart- mance, we find several cases in which higher-grade SD phones and flash storage drives. We particularly focus on cards performed worse than lower-grade ones overall. popular applications used by the majority of mobile users, Slower storage consumes more CPU: we observe such as, web browsing, app install, Google Maps, Face- higher total CPU consumption for the same application book, and email. Not only are these activities available when using slower cards; the reason can be attributed to on almost all smartphones, but they are done frequently deficiencies in either the network subsystem, the storage enough that performance problems with them negatively subsystem, or both. Unless resolved, lower performing impacts user experience. Further, we provide pilot solu- storage not only makes the application run slower, it also tions to overcome existing limitations. increases the energy consumption of the device. To perform our analysis, we build a measurement in- Application knowledge ensues efficient solutions: frastructure for Android consisting of generic firmware leveraging a small amount of domain or application changes and a custom Linux kernel modified to provide knowledge provides efficiency, such as in the case of our resource usage information. We also develop novel tech- pilot solutions; hardware and software solutions can both niques to enable detailed, automated, and repeatable mea- benefit from a better understanding of how applications surements on the internal and external smartphone flash are using the underlying storage. storage, and with different network configurations that are otherwise not possible with the stock setup; for automated The contributions of this paper are threefold. First, we testing with GUI-based applications, we develop a bench- describe our measurement infrastructure that enables cus- mark harness using MonkeyRunner [16]. tom setup of the firmware and software stack on Android- In our initial efforts, we proposeand developa set of pi- devices to perform in-depth I/O analysis; along with the lot solutions that improve the performance of the storage systems software, we contribute a set of benchmarks that subsystem and consequently mobile applications. Within automate several popular GUI-based applications. Sec- the context of our Android environment, we investigate ond, we present a detailed analysis of storage performance the benefits of employing a small amount of phase-change on real Android smartphones and flash devices; to the memory to store performance critical data, a RAID driver best of our knowledge, no such study currently exists in encompassing the internal flash and external SD card, us- the research literature. We find a strong correlation be- ing a log-structured file system for storing the SQLite tween storage and performance of common applications databases, and changes to the SQLite fsync codepath. and contribute all our research findings. Third, we pro- We find that changes to the storage subsystem can sig- pose and evaluate pilot solutions to address the perfor- nificantly improve user experience; our pilot solutions mance issues on mobile devices. demonstrate possible benefits and serve as references for deployable solutions in the future. Based on our experimental findings and observations As the popularity of Android-based devices surges, the we believe improvements in the mobile storage stack can setup we have examined reflects an increasingly relevant be made along multiple dimensions to keep up with the software and hardware stack used by hundreds of millions increasing demands placed on mobile devices. Storage of users worldwide; understanding and improving the device improvements alone can account for significant experience of mobile users is thus a relevant research improvements to application performance. Device man- thrust for the storage community. Through our analysis ufacturers are actively looking to bring faster devices to and design we make several observations: the mobile market; Samsung announced the launch of a PCM-based multi-chip package for mobile handsets [60]. Storage affects application performance: often in Mobile I/O and memory bus technology needs to evolve unanticipated ways, storage affects performance of as well to sustain higher throughput to the devices. Limi- applications that are traditionally thought
Recommended publications
  • Toshiba's Standard SD Cards Are the Perfect Way to Capture and Store Your Memories. the Series Is Compatible with Cameras
    July 2015 Toshiba’s standard SD cards are the perfect way to capture and store your memories. The series is compatible with cameras, laptops, tablets and other devices that support the SDHC Standard. With 8, 16 and 32GB capacities, it offers enough space for your photos, video and data. High Speed N102 SDHC™ Overview: Capacity 8GB, 16GB, 32GB Interface SD Memory Card standard compatible Speed Class * Warranty 5 Years Physical Specification: Dimensions 32.0 mm (L) × 24.0 mm (W) × 2.1 mm (H) Weight Approx. 2g Environmental: Operating Temp. -25°C to +85°C Storage Temp. -40°C to +85°C 8GB 16GB 32GB Model Numbers: EAN Code 4047999329169 4047999329176 4047999329183 Part Number THN-N102K0080M4 THN-N102K0160M4 THN-N102K0320M4 www.toshiba-memory.com In 1984, Toshiba developed a new type of semiconductor memory called flash memory, leading the industry into the next generation ahead of its competitors. Some time later in 1987, NAND flash memory was developed, and this has since been used in a variety of memory cards and electronic equipments. The NAND flash market has grown rapidly, with flash memory becoming an internationally standardized memory device. Toshiba, the inventor of flash memory, has carved out a path to a new era in which we are all able to carry videos, music and data with us wherever we go. History of Flash Memory 1984 Developed NOR-type Flash Memory 1987 Developed NAND-type Flash Memory Jul. 2000 Released SD™ Memory Card Jun. 2003 Released miniSD™ Memory Card Dec. 2003 Released USB Flash Memory Jul. 2006 Released microSD™ Memory Card Oct.
    [Show full text]
  • Android (Operating System) 1 Android (Operating System)
    Android (operating system) 1 Android (operating system) Android Home screen displayed by Samsung Nexus S with Google running Android 2.3 "Gingerbread" Company / developer Google Inc., Open Handset Alliance [1] Programmed in C (core), C++ (some third-party libraries), Java (UI) Working state Current [2] Source model Free and open source software (3.0 is currently in closed development) Initial release 21 October 2008 Latest stable release Tablets: [3] 3.0.1 (Honeycomb) Phones: [3] 2.3.3 (Gingerbread) / 24 February 2011 [4] Supported platforms ARM, MIPS, Power, x86 Kernel type Monolithic, modified Linux kernel Default user interface Graphical [5] License Apache 2.0, Linux kernel patches are under GPL v2 Official website [www.android.com www.android.com] Android is a software stack for mobile devices that includes an operating system, middleware and key applications.[6] [7] Google Inc. purchased the initial developer of the software, Android Inc., in 2005.[8] Android's mobile operating system is based on a modified version of the Linux kernel. Google and other members of the Open Handset Alliance collaborated on Android's development and release.[9] [10] The Android Open Source Project (AOSP) is tasked with the maintenance and further development of Android.[11] The Android operating system is the world's best-selling Smartphone platform.[12] [13] Android has a large community of developers writing applications ("apps") that extend the functionality of the devices. There are currently over 150,000 apps available for Android.[14] [15] Android Market is the online app store run by Google, though apps can also be downloaded from third-party sites.
    [Show full text]
  • Energy Efficient Wifi Tethering on a Smartphone
    Energy Efficient Wifi Tethering on a Smartphone Kyoung-Hak Jung†, Yuepeng Qi†, Chansu Yu†‡, and Young-Joo Suh† †Department of Computer Science and Engineering & Division of IT Convergence Engineering Pohang Univ. of Science and Tech., Pohang, 790-784, Republic of Korea Email: {yeopki81, yuepengqi, yjsuh}@postech.ac.kr ‡Department of Electrical and Computer Engineering Cleveland State University, Cleveland, Ohio 44115 Email: [email protected] Abstract—While numerous efforts have been made to save energy of “client” devices but it has not been addressed for access points (APs) as they are assumed to be supported by AC power. This paper proposes E-MAP, which is an energy saving algorithm for a tethering smartphone that plays a role of mobile AP (MAP) temporarily. It saves MAP’s energy by introducing the sleep cycle as in power save mode (PSM) in 802.11 but successfully keeps clients from transmitting while it sleeps. One (a) Nexus One with traffic (b) iPhone 4 with traffic important design goal of E-MAP is backward compatibility, i.e., it requires no modification on the client side and supports PSM and adaptive PSM (A-PSM) as well as normal constant awake mode (CAM) clients. Experiments show that E-MAP reduces the energy consumption of a Wifi tethering smartphone by up to 54% with a little impact on packet delay under various traffic patterns derived from real-life traces. (c) Nexus One without traffic (d) iPhone 4 without traffic Fig. 1: Power consumption measurements using Monsoon Power I. INTRODUCTION Monitor [11]. (Each figure compares power consumption of a smart- While the coverage of cellular networks is much larger phone when it is used as a 3G client, a Wifi client, and a MAP with than that of Wifi networks in the US (99% vs.
    [Show full text]
  • SDC420T Memory Card
    SDC420T memory card Description Features Transcend’s 3D flash technology combines the Transcend’s 3D NAND flash technology advantages of high performance and exceptional Excellent endurance endurance. The industrial memory cards can endure Compatible with SD Specification Ver. 5.1 operating temperatures ranging from -25°C to 85°C; UHS-I with Video Speed Class V10 setting a new standard in consistent, long-term Application Performance Class1 (A1) performance even in the harshest conditions. Early move and Read Retry Built-in ECC and Wear leveling RoHS compliant product. Support ESD IEC 61000-4-2 Architecture Pin Definition SD Mode SPI Mode Pin No. Name Description Name Description 1 CD/DAT3 Card Detect/ Data Line [Bit3] CS Chip Select (neg true) 2 CMD Command/ Response DI Data In 3 VSS1 Supply voltage ground VSS Supply voltage ground 4 VDD Supply voltage VDD Supply voltage 5 CLK Clock SCLK Clock 6 VSS2 Supply voltage ground VSS2 Supply voltage ground 7 DAT0 Data Line [Bit0] DO Data out 8 DAT1 Data Line [Bit1] RSV Reserved 9 DAT2 Data Line [ Bit2 ] RSV Reserved Specifications Physical Specification Form Factor SD SD specification SD5.1 (32GB and larger capacity),SD3.01 (16GB) Length 32.00 ± 0.1 Dimensions (mm) Width 24.00 ± 0.1 Height 2.10 ± 0.15 Data Transfer Specification Application Model P/N SD Type Interface* Speed Class Performance Class TS16GSDC420T SDHC UHS-I SDR104 C10/U1 N/A TS32GSDC420T SDHC UHS-I SDR104 V10/U1 A1 TS64GSDC420T SDHC UHS-I SDR104 V10/U1 A1 TS128GSDC420T SDHC UHS-I SDR104 V10/U1 A1 TS256GSDC420T SDHC UHS-I
    [Show full text]
  • Download Rom Motorola Defy Mini Xt320
    Download rom motorola defy mini xt320 CLICK TO DOWNLOAD 09/04/ · ROM Motorola DEFY MINI XT – ROM Android ROM Official: TNBST_4_RPD_flex_LATAM_RTL_Brazil – renuzap.podarokideal.ru ROM For Brazil (for other countries ask me) Backup and Restore Defy Mini IMEI and NV Data. Preparations: •Install Motorola USB driver (Use forum serach button) •Install RSD Lite (Use forum serach /5(10). 09/06/ · Motorola Defy Mini XT Firmware Download In this post, you will find the direct link to download Motorola Defy Mini XT Stock ROM (firmware, flash file). The Firmware package contains Firmware, Driver, Flash Tool, and How-to Flash Manual. Motorola Defy Mini XT Stock ROM How To Flash Motorola Defy Mini XT First, you need to download and extract the Motorola Defy Mini XT stock firmware package on Computer. After extracting the zip package, you will get the Firmware File, Flash Tools, Drivers, and How-to Flash Guide. 30/04/ · Motorola Defy Mini XT Stock Firmware ROM (Flash File) Find Motorola Defy Mini XT Flash File, Flash Tool, USB Driver and How-to Flash Manual. The official link to download Motorola Defy Mini XT Stock Firmware ROM (flash file) on your Computer. Firmware comes in a zip package, which contains are below. 14/07/ · How to update your MOTOROLA Defy Mini(XT) With this guide you will be able to find, download and install all necessary updating files for your MOTOROLA Defy Mini(XT). Hope you can get satisfied with the new device update, enjoy the last Android version and don’t forget to look for new updates frequently. Firstly, you have what you came for: the updates.
    [Show full text]
  • Memory Card Reader • USB 3.0 Cable Compactflash (CF) Card • Quick Setup Guide Insert Label Side Up
    Front view LED indicator QUICK SETUP GUIDE Memory Card microSD, microSDXC Reader Insert label side up. NS-DCR30D3K / NS-DCR30D3K-C SD card Insert label side up. PACKAGE CONTENTS • USB 3.0 multi-format memory card reader • USB 3.0 cable CompactFlash (CF) card • Quick Setup Guide Insert label side up. SYSTEM REQUIREMENTS Back view • Windows® 10, Windows® 8.1, Windows® 8, Windows® 7, Windows Vista®, Mac OS 9.0 or higher, or Linux Kernal 2.4.1 or above FEATURES • Supports USB 3.0 and below • Multi-port and multi-driver letter display USB cable port • Plug & Play • Works with the following card formats: Micro SD/T-FLASH/Micro SDXC/Micro SDHC, SD/SDHC/SDXC/ Mini-SD, CompactFlash (CF) type I Caution: All cards must be inserted into the card reader label side up. Failure to do so could result in damage to the memory card or the card reader. Do not force a memory card into the card reader. Before using your new product, please read these instructions to prevent any damage. CONNECTING THE CARD READER 5 Do not remove your card from the card reader until the data LED Plug one end of a USB cable into the USB port of the card reader and stops blinking and the name of your card disappears from the Finder the other end into an available USB port on your computer. Your window. computer loads the drivers automatically. SPECIFICATIONS USING THE CARD READER • Dimensions: 2.87 × 1.98 × .68 in. (7.3 × 5.05 × 1.75 cm) Cautions: • Transmission port: USB 3.0 • Insert a card, label side up, into the appropriate slot.
    [Show full text]
  • Android-X86 Project Marshmallow Porting
    Android-x86 Project Marshmallow Porting https://drive.google.com/open?id=1mND8K-AXbMMl8- wOTe75NOpM0xOcJbVy8UorryHOWsY 黃志偉 [email protected] 2015/11/28 http://www.android-x86.org Agenda ●Introduction: what, why, how? ●History and milestones ●Current status ●Porting procedure ●Develop android-x86 ●Future plans android-x86.org About Me ●A free software and open source amateur and promoter from Taiwan ■ CLDP / CLE ■ GNU Gatekeeper ■ Android-x86 Open Source Project ●https://zh.wikipedia.org/wiki/Cwhuang android-x86.org Introduction ●What's Android-x86? ●Why needs Android-x86? ●How can we do it? android-x86.org What's Android-x86 ? ●An open source project aimed to provide a complete solution for Android on x86 devices ●Android BSP (Board support Package) for x86 platform ●At first we use ASUS Eee PC and Virtualbox as the reference platform. ●Some vendors donate tablets, like Tegatech Tegav2, 4tiitoo AG WeTab and AMD android-x86.org Why needs Android-x86? ●Android is an open source operating-system originally designed for arm platform ●It's open source, we can port it to other platforms, like mips, PowerPC and x86 ●AOSP officially supports x86 now ● AOSP doesn’t have specific hardware components ● Still a lot of work to do to make it run on a real device android-x86.org But what are the benefits? ●Understanding Android porting process ●The x86 platform is widely available ●A test platform much faster than SDK emulator ●Android-x86 on vbox / vmware ●Suitable for tablet apps android-x86.org Android architecture android-x86.org How to do that? ●Toolchains – already in AOSP, but old..
    [Show full text]
  • Dozyap: Power-Efficient Wi-Fi Tethering
    DozyAP: Power-Efficient Wi-Fi Tethering Hao Han1,2, Yunxin Liu1, Guobin Shen1, Yongguang Zhang1, Qun Li2 1Microsoft Research Asia, Beijing, China 2College of William and Mary, Williamsburg, VA, USA ABSTRACT Wi-Fi tethering (i.e., sharing the Internet connection of a mobile phone via its Wi-Fi interface) is a useful functionali- ty and is widely supported on commercial smartphones. Yet existing Wi-Fi tethering schemes consume excessive power: they keep the Wi-Fi interface in a high power state regard- less if there is ongoing traffic or not. In this paper we pro- pose DozyAP to improve the power efficiency of Wi-Fi tethering. Based on measurements in typical applications, we identify many opportunities that a tethering phone could sleep to save power. We design a simple yet reliable sleep Figure 1: Wi-Fi tethering. protocol to coordinate the sleep schedule of the tethering phone with its clients without requiring tight time synchro- vices can connect to the mobile SoftAP through their Wi-Fi nization. Furthermore, we develop a two-stage, sleep inter- interfaces. The mobile SoftAP routes the data packets be- val adaptation algorithm to automatically adapt the sleep tween its 3G interface and its Wi-Fi interface. Consequent- intervals to ongoing traffic patterns of various applications. ly, all the devices connected to the mobile SoftAP are able DozyAP does not require any changes to the 802.11 proto- to access the Internet. col and is incrementally deployable through software up- Wi-Fi tethering is highly desired. For example, even be- dates. We have implemented DozyAP on commercial fore the Android platform provided built-in support on Wi- smartphones.
    [Show full text]
  • Download Android Os for Phone Open Source Mobile OS Alternatives to Android
    download android os for phone Open Source Mobile OS Alternatives To Android. It’s no exaggeration to say that open source operating systems rule the world of mobile devices. Android is still an open-source project, after all. But, due to the bundle of proprietary software that comes along with Android on consumer devices, many people don’t consider it an open source operating system. So, what are the alternatives to Android? iOS? Maybe, but I am primarily interested in open-source alternatives to Android. I am going to list not one, not two, but several alternatives, Linux-based mobile OSes . Top Open Source alternatives to Android (and iOS) Let’s see what open source mobile operating systems are available. Just to mention, the list is not in any hierarchical or chronological order . 1. Plasma Mobile. A few years back, KDE announced its open source mobile OS, Plasma Mobile. Plasma Mobile is the mobile version of the desktop Plasma user interface, and aims to provide convergence for KDE users. It is being actively developed, and you can even find PinePhone running on Manjaro ARM while using KDE Plasma Mobile UI if you want to get your hands on a smartphone. 2. postmarketOS. PostmarketOS (pmOS for short) is a touch-optimized, pre-configured Alpine Linux with its own packages, which can be installed on smartphones. The idea is to enable a 10-year life cycle for smartphones. You probably already know that, after a few years, Android and iOS stop providing updates for older smartphones. At the same time, you can run Linux on older computers easily.
    [Show full text]
  • Crdroid 3.10.54 Crdroid 3.10.54 * Br Photos and Great Condition That Affects Men Ranked 5 of 18 Archways Prize Wheels
    Crdroid 3.10.54 Crdroid 3.10.54 * Br photos and great condition that affects men ranked 5 of 18 archways prize wheels. Gif beat ladbrokes roulettestrong at lowes. about B2b massage at shah alam2b massage at shah alam Binweevil hangman words Daughter incest.tumblr Speedway gp programme Crdroid 3.10.54 Cheating captions tumblr Menu - Baca komik bleach lengkap bahasa indonesia Maynards wife lei liaynards wife Crdroid 3.10.54. So now introducing our new rom.which is based on lp Friends links What is skypepm ezlog, Sissy kernel ( 3.10.54 ) mt6582 based cm rom which name is Tesla os Previous drawings prim, Wild things foursome post i have given u crDroid rom. Techzbyte is a blog about How to's, Tech full movie worldfree4u.trade, Download anime kindaichi shounen News, Apps, Education, Stock & Custom Roms, Custom recovery, Games no jikenbo tv sub indo and Internet freebies for Smartphones. 22-11-2016 · Hi friends .. introducing our new rom for mmx fire 4. crDroid Rom Based on lp kernel bloggers 3.10.54 Mt 6582 .. Based on cm (5.1) FEATURES : CyanogenMod theme. Hcpcs code for restylane Isabelle blais nue video [ROM][MT6582][LP][ 3.10.54 +] PACMAN V2 FOR GIONEE M3 Many of Trinh hoi s second wife mai thy you might not be aware of PACMan ROM. As the image shows, its a combinati. CRDROID OS-LP-MT6582- 3.10.54 + FOR MMX Q340 BY MANJUNATH YASHU FEATURES CyanogenMod theme supervisor; Power menu customizations; Nav bar tweaks (on/off toggle and. CRDROID OS-LP-MT6582- 3.10.54 + FOR MMX Q340 BY MANJUNATH YASHU CRDROID OS-LP-MT6582- 3.10.54 + FOR MMX Q340 BY MANJUNATH YASHU FEATURES CyanogenMod theme manager; Power.
    [Show full text]
  • Capturemovemanipulates
    CAPTUREMOVEMANIPULATESTORE Flash Memory Cards from Simpletech CompactFlash Secure Digital MultiMediaCard RS-MMC miniSD Flash Memory Cards from SimpleTech Capture your digital photos, music, and files with SimpleTech high-speed flash FLASHMEMORYCARDS memory cards. CompactFlash CompactFlash (CF) flash memory cards are the most popular form factor of flash storage used in consumer devices today. CF cards are ideal storage solutions for digital cameras, MP3 players, PDAs, palmtops, and handheld PCs. Features • Low power consumption • Compatible with all CF devices • Hot Swappable • CFA and PCMCIA Compliant • Highest Capacity Available using IC TowerTM Chip Stacking Capacities 32MB-4GB Dimension 1.69" (w) x 1.43" (l) x 0.13" (t) Weight 11.4g Interface ATA True IDE Operating Temperature 0o - 70o C Power 3.3V or 5V Operation Warranty Lifetime Secure Digital Secure Digital (SD) flash memory cards are next generation memory devices that offer a combination of high storage capacity, fast data transfer rates, great flexibility and excellent security. Features • Copyrights protection function • SD and SPI interface supported • Nonvolatile solid-state storage • Mechanical write protect switch Capacities 32MB - 1GB Dimension 0.94" (w) x 1.26" (l) x 0.08" (t) Weight 1g Interface Secure Digital Mode SPI Mode miniSD card adapter can be use in SD card socket Operating Temperature 0o - 70o C Power 2.7V - 3.6V Warranty Lifetime MultiMediaCard MultiMediaCards (MMC) flash memory cards are highly integrated flash products which let you carry more music, images, data, and voice recordings. MMC cards are small but rugged. They are great for MP3 players, digital cameras, voice recorders, smart phones and digital camcorders.
    [Show full text]
  • Securing Android Devices
    Securing Android Devices Sun City Computer Club Seminar Series May 2021 Revision 1 To view or download a MP4 file of this seminar With audio • Audio Recording of this seminar • Use the link above to access MP4 audio recording Where are Android Devices? • Smart Phones • Smart Tablets • Smart TVs • E-Book Readers • Game consoles • Music players • Home phone machines • Video streamers – Fire, Chromecast, Why Android devices? • Cutting edge technology – Google • User Friendly • User modifications Android Software Development Kit (SDK) Open Source • Huge volume of applications • Google, Samsung, LG, Sony, Huawei, Motorola, Acer, Xiaomi, … • 2003 • CUSTOMIZABLE My Choices • Convenience vs Privacy • Helpful <-> Harmful • Smart devices know more about us than we do Android “flavors” flavours • Android versions and their names • Android 1.5: Android Cupcake • Android 1.6: Android Donut • Android 2.0: Android Eclair • Android 2.2: Android Froyo • Android 2.3: Android Gingerbread • Android 3.0: Android Honeycomb • Android 4.0: Android Ice Cream Sandwich • Android 4.1 to 4.3.1: Android Jelly Bean • Android 4.4 to 4.4.4: Android KitKat • Android 5.0 to 5.1.1: Android Lollipop • Android 6.0 to 6.0.1: Android Marshmallow • Android 7.0 to 7.1: Android Nougat • Android 8.0 to Android 8.1: Android Oreo • Android 9.0: Android Pie • Android 10 Many potential combinations • Each manufacturer “tunes” the Android release to suit #1 Keep up with updates Android Operating System Android firmware (Very vendor specific) Android Applications (Apps) Android settings
    [Show full text]