Skip to main content

Posts

Flash Nexus7 like a rock star

Are you tired of typing a hostname, username, password and WiFi password every time you flash Nexus7 with Ubuntu Core images? Do you wish to automate those boring steps? Do you wish you could reboot into fastboot mode over ssh without reaching and fiddling with volume down and power keys? Now you can! $ bzr branch lp:~ubuntu-nexus7/ubuntu-nexus7/preseed Has a nifty command called $ ./prepare-preseed By default it takes preseed.cfg, attempts to copy wifi.cfg or fetch current active WiFi connection settings from Network Manager's /etc/NetworkManager/system-connections/* downloads latest bootimg and twiddles it to include all of the above. After that you can fastboot flash standard user-data image + this cusom bootimg and voila, upon fastboot reboot ubiquity will come up and will automatically answer all the questions for you and boot into desktop with wifi connected. If you want to customize settings simply edit the sample preseed.cfg. If you do not want to a...

X-Chat power-user upload

xchat (2.8.8-7ubuntu2) raring; urgency=low * Optimise default settings for efficient chatting + Make tab completion by default use last-used order, not alphabetical. This way for example if one is chatting with cjwatson, typing "cj " will complete to cjwatson and not cjohnston. Manual migration: ~/.xchat/xchat.conf: completion_sort = 1 + Do not focus channel upon entering, as that clears highlights when using a znc proxy. To be honest, there should be a distinction between manually joining new channels & auto-joining. (LP: #189222 ) Manual migration: ~/.xchat/xchat.conf: tab_new_to_front = 0 + Do not clear buffer with Ctrl-L shortcut. (LP: #304477 ) That shortcut is dominated by web-browsers changing URLs and causes context loss if the focus was accidently left on xchat. * Fix ftbfs, should link against gmodule. * Add xchat-indicator to recommends. (LP: #1048335 ) * Include svg icon (LP: #840673 ) --...

Android Debug Bridge (adb) update for 4.2.2

To use adb against android 4.2.2 device one needs updated adb tool. This is now published in raring archive. If you are using quantal or precise, there is a backport published in the usual location of the nexus7-installer. add-apt-ppa -y ppa:ubuntu-nexus7/ubuntu-nexus7-installer Here are the instructions about the new adb from the android development website: When you connect a device running Android 4.2.2 or higher to your computer, the system shows a dialog asking whether to accept an RSA key that allows debugging through this computer. This security mechanism protects user devices because it ensures that USB debugging and other adb commands cannot be executed unless you're able to unlock the device and acknowledge the dialog. This requires that you have adb version 1.0.31 (available with SDK Platform-tools r16.0.1 and higher) in order to debug on a device running Android 4.2.2 or higher.  -- ADB 

Help pick a motherboard for a desktop

I want a desktop computer and I am struggling with all the manufacturers website to find a motherboard with following requirements: supports UEFI Secure Boot has Intel Matrix Storage Technology  (aka Intel Raid) supports Ivy Bridge 22nm CPUs supports up to 32GB or RAM supports dual screens and 3D acceleration using preferably onboard Intel graphics Many manufacturers do state UEFI, but do not say if SecureBoot is available (either out of the box or via firmware upgrade). The Intel Rapid Storage comes with a few chipsets, but in most series it's an optional feature that may or may not be present. Any recommendations? Or ways on how to find these details about motherboards?

Thoughts on Debian package policies

configure, Makefile.in, config.guess & config.sub Are static, included copies of code that should always be rebuild during build. If they are not rebuild at build time, it should be documented/automated the relevant helpers that are needed to rebuild the package. If they are failing to rebuild it's RC since source code is provided that is effectively cannot be modified in the preferred form. They also should not be modified in patch form, as editing generated code is not preferred form of modification. Also it constantly hurts us when bringing up new kernels and architectures (recently kfreebsd, armhf, aarch64). dh_autoreconf is a great tool to achieve thiis s. no native packages Generally if software is useful in Debian Project it can be useful for other debian-like and unlike projects. In particular native packages do not offer the same patching flexibility as 3.0 (quilt), thus forcing downstream distributions to inline modify packages without DEP-3 headers. This hurts u...

#takethestage

#stagetaken I have now permanently settled in the UK.

Android FS Utils - now in the archives near you!

Previously on Ubuntu Planet, Matt Fischer described how to build Ubuntu Nexus7 images . It did involve using simg2img & make_ext4fs binaries which you can get from: android sdk download hand compiled binaries from Matt's http server But now, there are more usual ways as well: Ubuntu Raring archive  Ubuntu Nexus7 Installer PPA for Quantal and Precise It's the same PPA used in the current Nexus7 installation instructions . sudo add-apt-repository ppa:ubuntu-nexus7/ubuntu-nexus7-installer sudo apt-get update sudo apt-get install android-tools-fsutils android-tools-fastboot Enjoy and happy hacking the images =)