I saw ubuntu touch is available for nexus 4 and nexus 7. How about our devices ? Any progress ?
Affichage des articles dont le libellé est Ubuntu. Afficher tous les articles
Affichage des articles dont le libellé est Ubuntu. Afficher tous les articles
dimanche 23 février 2014
mardi 18 février 2014
[Q] Why choose Ubuntu Touch over Android topic
I am wondering why people would want to use Ubuntu Touch over android. I don't see many (if any) benefits of using it over Android.
I see that the section isn't very popular, but I hope someone can answer my question.
Thank you :)
I see that the section isn't very popular, but I hope someone can answer my question.
Thank you :)
mercredi 12 février 2014
Ubuntu Touch = Ubuntu Desktop ? topic
If I install ubuntu touch on Nexus 4 and I will connect my Smartphone to Tv. Is this will look like Ubuntu Desktop or not ?
Or is Ubuntu Touch just modificated verion of android ?
Or is Ubuntu Touch just modificated verion of android ?
mercredi 29 janvier 2014
ubuntu on samsung tab 2 p3100 topic
i have tried many times myself to use complete linux installer app to use ubuntu on my tab 2, but never succeeded. can anybody help me out. i am currently using mokee os 4.4.2
i have:
1- installed complete linux installer
2- have the terminal app
3- have the vnc viewer
4- ubuntu-13.10.SMALL.ext4.v1.zip downloaded from :
sourceforge.net/projects/linuxonandroid/files/Ubuntu/13.10/Small/
somebody please guide me with steps to boot Ubuntu.
Sent from my GT-P3100 using Tapatalk
i have:
1- installed complete linux installer
2- have the terminal app
3- have the vnc viewer
4- ubuntu-13.10.SMALL.ext4.v1.zip downloaded from :
sourceforge.net/projects/linuxonandroid/files/Ubuntu/13.10/Small/
somebody please guide me with steps to boot Ubuntu.
Sent from my GT-P3100 using Tapatalk
[HOW TO] Android Build Environment on Ubuntu 12.04 topic
So my desktop system died after many years and I just finished building my new system. I stopped cooking ROMs some time ago and it was time to setup my Android build environment again. Last time I did that Google's directions were pretty much straight forward and did not run into any issues. Can't say that for this time, AOSP site needs to update their instructions a bit. I made notes during the process and thought to share them in case anyone finds themselves in a spot like me.
Use this guide as you follow the instructions at the AOSP website and you should be fine. You can copy and paste all the terminal commands.
Initializing a Build Environment - Google's Instructions HERE
Python
Python 2.6 -- 2.7 - Install dependencies before installing Python
Download Python
Extract & Change Directory
Install
GNU Make 3.81 -- 3.82
Download GNU Make
Note: If following guide step by step then "cd .." with no quotes from Python-2.7.6 folder
Extract & Change Directory
Install
You most likely can use apt-get install for the Python and GNU Make but I just prefer this way...
Oracle JDK 6
Note: Use arrow keys on keyboard to navigate confirmation dialogues. You can use OpenJDK with some tweaks but I prefer to use Oracle JDK 6
Git
sudo apt-get install git
Installing required packages
If you receive:
Then
And
Note: libgl1-mesa-glx:i386 might be causing the issue so you might be able to omit that in the corresponding sudo apt-get install line so you will not need to do the IF/THEN/AND and then the GUI fix down the road. I did not omit and fixed what it broke after reboot. Instructions are provided below to fix what may break.
Continue
Reboot system here.
If you boot to blank screen with just flashing cursor then:
reboot
CTRL+ALT+F1 as system reboots to enter command line. Type following command:
Reboot when complete. We are not done yet so keep following guide.
Bring up AOSP Guide HERE
Continue from Configuring USB Access
To create /etc/udev/rules.d/51-android.rules file type in terminal
Make sure to follow AOSP instructions on changing "username" to your login name.
Keep following the guide till the end
Make sure to setup .ccache once repo sync (downloading of source) is complete.
When you are done, reboot system. Once booted click on Dash Home (First icon on side bar), if you notice there is nothing in Dash Home then do the following:
Your system is now ready to build AOSP.
Good luck and enjoy!
Use this guide as you follow the instructions at the AOSP website and you should be fine. You can copy and paste all the terminal commands.
Initializing a Build Environment - Google's Instructions HERE
Python
Python 2.6 -- 2.7 - Install dependencies before installing Python
Code:
sudo apt-get install build-essential
sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
Code:
cd ~/Downloads/
wget http://python.org/ftp/python/2.7.6/Python-2.7.6.tgz
Code:
tar -xvf Python-2.7.6.tgz
cd Python-2.7.6
Code:
./configure
make
sudo make install
Download GNU Make
Code:
cd ~/Downloads/
wget http://ftp.gnu.org/gnu/make/make-3.82.tar.gz
Extract & Change Directory
Code:
tar -xvf make-3.82.tar.gz
cd make-3.82
Code:
./configure
make
sudo make install
Oracle JDK 6
Code:
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java6-installer
sudo update-java-alternatives -s java-6-oracle
sudo apt-get install oracle-java6-set-default
Git
sudo apt-get install git
Installing required packages
Code:
sudo apt-get install git gnupg flex bison gperf build-essential
sudo apt-get install zip curl libc6-dev libncurses5-dev:i386 x11proto-core-dev
sudo apt-get install libx11-dev:i386 libreadline6-dev:i386 libgl1-mesa-glx:i386
Code:
The following packages have unmet dependencies:
libgl1-mesa-glx:i386 : Depends: libglapi-mesa:i386 (= 8.0.4-0ubuntu0.7)
Recommends: libgl1-mesa-dri:i386 (>= 7.2)
E: Unable to correct problems, you have held broken packages.
Code:
sudo apt-get install libglapi-mesa
Code:
sudo apt-get install libx11-dev:i386 libreadline6-dev:i386 libgl1-mesa-glx:i386
Continue
Code:
sudo apt-get install libgl1-mesa-dev g++-multilib mingw32 tofrodos
sudo apt-get install python-markdown libxml2-utils xsltproc zlib1g-dev:i386
sudo ln -s /usr/lib/i386-linux-gnu/mesa/libGL.so.1 /usr/lib/i386-linux-gnu/libGL.so
If you boot to blank screen with just flashing cursor then:
reboot
CTRL+ALT+F1 as system reboots to enter command line. Type following command:
Code:
sudo apt-get install ubuntu-desktop xorg
Bring up AOSP Guide HERE
Continue from Configuring USB Access
To create /etc/udev/rules.d/51-android.rules file type in terminal
Code:
sudo gedit /etc/udev/rules.d/51-android.rules
Keep following the guide till the end
Make sure to setup .ccache once repo sync (downloading of source) is complete.
When you are done, reboot system. Once booted click on Dash Home (First icon on side bar), if you notice there is nothing in Dash Home then do the following:
Code:
mv ~/.local/share/zeitgeist ~/.local/share/zeitgeist.bak
kill -s TERM `pidof /usr/lib/unity-lens-applications/unity-applications-daemon`
Good luck and enjoy!
Libellés :
12.04,
Android,
build,
Develope 1,
environment,
topic,
Ubuntu
mardi 28 janvier 2014
Ubuntu touch for Nexus 7 2013!! topic
Finally Ubuntu touch has come for Nexus 7 2013. (flo) :laugh:
It is still in progress. Just flash it to take the taste of Ubuntu Touch!!
Full credit goes to @Tasssadar for his awesome work!
Note- It is only compatible with Multirom.
Installation
1. Update to MultiROM v21a or newer- http://d-h.st/bPS
2. Go to recovery, Add ROM -> select Ubuntu Touch -> Next
3. Two files - one is device specific, second is the Ubuntu Touch system:
Device-specific file- http://d-h.st/3ss
(mirror)- http://goo.im/devs/Tassadar/utouch
System file (this one is from ogra with MIR fixes): http://people.canonical.com/~ogra/ub...otfs-armhf.zip
Ubuntu touch needs 2GB space. :p
Hit thanks button if it works for you!! :victory:
It is still in progress. Just flash it to take the taste of Ubuntu Touch!!
Full credit goes to @Tasssadar for his awesome work!
Note- It is only compatible with Multirom.
Installation
1. Update to MultiROM v21a or newer- http://d-h.st/bPS
2. Go to recovery, Add ROM -> select Ubuntu Touch -> Next
3. Two files - one is device specific, second is the Ubuntu Touch system:
Device-specific file- http://d-h.st/3ss
(mirror)- http://goo.im/devs/Tassadar/utouch
System file (this one is from ogra with MIR fixes): http://people.canonical.com/~ogra/ub...otfs-armhf.zip
Ubuntu touch needs 2GB space. :p
Hit thanks button if it works for you!! :victory:
[Request] Ubuntu touch for Nexus 5 Hammerhead. topic
We have some guys who got it to boot, but is pretty broken. Any help would be awesome
http://forum.xda-developers.com/show...Touch support)
Sent from my Nexus 5 using Tapatalk
http://forum.xda-developers.com/show...Touch support)
Sent from my Nexus 5 using Tapatalk
Libellés :
Develope 1,
Hammerhead,
Nexus,
Request,
topic,
touch,
Ubuntu
lundi 27 janvier 2014
Ubuntu touch - device list topic
Which devices are supported
Sent from my GT-I8730 using xda app-developers app
Sent from my GT-I8730 using xda app-developers app
Ubuntu and the Nexus 10 topic
Hello everyone,
Before you start flaming me for posting a redundant thread, please hear me out.
After bricking my TF300T (had xubuntu installed and had to f*** with partitions..and I f***** it real good) I've decided to get myself a Nexus 10. I've been doing some research on the matter of running Ubuntu Desktop (NOT touch) on it I've seen many tutorials on how to do it I've come across plenty howtos on how to install it on the Nexus 7.
My question is, is it possible to use the same process/images for my brand new Nexus 10? How different are the devices from each other?
I've seen that Canonical has released a Ubuntu Dual Boot Installer compatible with the Nexus 10. Would it be possible to use the Rabbits kernel I used for the TF300T? Also, as far as I've seen Multiboot is only compatible with the Nexus 7.. or have I seen wrong? Did I make a bad purchase and should've gotten an other tablet?
Thanks in advance for your time and help and my advanced apologies for inconveniencing anyone with this thread.
Before you start flaming me for posting a redundant thread, please hear me out.
After bricking my TF300T (had xubuntu installed and had to f*** with partitions..and I f***** it real good) I've decided to get myself a Nexus 10. I've been doing some research on the matter of running Ubuntu Desktop (NOT touch) on it I've seen many tutorials on how to do it I've come across plenty howtos on how to install it on the Nexus 7.
My question is, is it possible to use the same process/images for my brand new Nexus 10? How different are the devices from each other?
I've seen that Canonical has released a Ubuntu Dual Boot Installer compatible with the Nexus 10. Would it be possible to use the Rabbits kernel I used for the TF300T? Also, as far as I've seen Multiboot is only compatible with the Nexus 7.. or have I seen wrong? Did I make a bad purchase and should've gotten an other tablet?
Thanks in advance for your time and help and my advanced apologies for inconveniencing anyone with this thread.
dimanche 26 janvier 2014
Is Ubuntu touch out ? topic
Is Ubuntu touch out For atrix 2 ?
samedi 25 janvier 2014
Need some help compiling Ubuntu Touch for sensation topic
Using trusty branch of ubuntutouch with teamhydra kernel from https://github.com/Team-Hydra/androi...el_htc_msm8660
No problems during compiling but whilst booting i get direct panic after mounting /data
Kernel config:
https://gist.github.com/cwxda/8624363
Someone can help me on this?
No problems during compiling but whilst booting i get direct panic after mounting /data
Code:
[ 2.373443] Warning: unable to open an initial console.
[ 2.373657] Freeing init memory: 208K
[ 2.553283] systemd-udevd[132]: starting version 204
[ 4.405456] [USBH] ac_detect_expired: count = 0, connect_type = -1
[ 4.709136] initrd: mounting /dev/mmcblk0p23
[ 4.723815] EXT4-fs (mmcblk0p23): couldn't mount as ext3 due to feature incompatibilities
[ 4.758453] EXT4-fs (mmcblk0p23): couldn't mount as ext2 due to feature incompatibilities
[ 4.823120] EXT4-fs (mmcblk0p23): recovery complete
[ 4.823852] EXT4-fs (mmcblk0p23): mounted filesystem with ordered data mode. Opts: discard
[ 5.081878] [K] Kernel panic - not syncing: Attempted to kill init!
[ 5.082061] [<c010bf14>] (unwind_backtrace+0x0/0xf8) from [<c076cd2c>] (panic+0x74/0x1a4)
[ 5.082244] [<c076cd2c>] (panic+0x74/0x1a4) from [<c018e26c>] (do_exit+0x804/0x8a4)
[ 5.082336] [<c018e26c>] (do_exit+0x804/0x8a4) from [<c018e374>] (do_group_exit+0x3c/0xb0)
[ 5.082489] [<c018e374>] (do_group_exit+0x3c/0xb0) from [<c018e3f8>] (__wake_up_parent+0x0/0x18)
[ 5.082672] CPU1: stopping
[ 5.083099] [<c010bf14>] (unwind_backtrace+0x0/0xf8) from [<c010ae60>] (handle_IPI+0x128/0x154)
[ 5.083801] [<c010ae60>] (handle_IPI+0x128/0x154) from [<c01063cc>] (__irq_svc+0x4c/0xe4)
[ 5.084472] [<c01063cc>] (__irq_svc+0x4c/0xe4) from [<c0107500>] (cpu_idle+0x88/0xfc)
[ 5.084869] [<c0107500>] (cpu_idle+0x88/0xfc) from [<48768c14>] (0x48768c14)
[ 5.185821] subsystem-fatal-8x60: Q6 NMI was sent.
[ 5.190948] [K] Rebooting in 5 seconds..
[ 9.415405] [USBH] ac_detect_expired: count = 1, connect_type = -1
[ 10.198364] [K] Going down for restart now
[ 10.198516] [K] arch_reset: mode 104
[ 10.198608] [K] arch_reset: no command restart.
[ 10.198699] [K] from arch_reset
[ 10.198852] [K] back arch_reset
[ 10.299224] subsystem-fatal-8x60: Q6 NMI was sent.
[ 10.299346] [K] arch_reset: wait for modem flushing caches.
[ 19.435424] [USBH] ac_detect_expired: count = 2, connect_type = -1
[ 19.445404] [USBH] ac_detect_expired: count = 3, connect_type = -1
[ 20.314056] [K] arch_reset: modem flushes cache timeout.
[ 20.314117]
[ 20.314270] [K] Restarting Linux version 3.0.101-UbuntuTouch-Sensation-g886cfa4 (build@utouch) (gcc version 4.7.4 20131207 (prerelease) (Linaro GCC 4.7-2013.12) ) #3 SMP PREEMPT Sat Jan 25 16:55:58 EST 2014
[ 20.314300]
[ 20.364593] [K] restart: Console was locked!
https://gist.github.com/cwxda/8624363
Someone can help me on this?
[Q] Ubuntu Touch topic
So I have a d2spr(sprint galaxy s3), but that is the only model of the s3 that currently isn't supported or a WIP. I was wondering if either the d2vzw, d2att, or d2tmo Roms will work on my device. Please only post if you really know, because I've already hard bricked my device once.
Ubuntu touch build for nexus 5 topic
Here you are guys
https://lists.launchpad.net/ubuntu-phone/msg06116.html
I just don't know how to flash it :confused:
If someone could make a step by step guide ,it would be great!
It says that there's no bug except one useless .
Sent from my Nexus 5 using xda app-developers app
https://lists.launchpad.net/ubuntu-phone/msg06116.html
I just don't know how to flash it :confused:
If someone could make a step by step guide ,it would be great!
It says that there's no bug except one useless .
Sent from my Nexus 5 using xda app-developers app
jeudi 23 janvier 2014
[Q] Need Help! With Ubuntu 13.04 on android topic
So i saw this video of a guy having ubuntu 12.04(pc version) on his phone,he was running the linux server on his phone and at the same time accessing it, using androidVNC . BTW i have a samsung galaxy S 4 (sprint Version ,without knox) Running cyanogenmod 11.0 , android version 4.4.2, the kernel version is 3.4.0-cyanogenmod-g5a32c11build04@cyanogenmod #1 Thu Jan 9 21:12:16 PST 2014 .
I checked if my phone is loop compatible using, the following in terminal emulator : zcat /proc/config.gz | grep CONFIG_BLK_DEV_LOOP , i found it on a webpage , and i got y, that means it is a loop device, but when i ran CompleteLinuxInstaller i got into the following problem
Checking loop device ... FOUND
mount: mounting /dev/block/loop255 on /data/local/mnt failed : Invalid Argument
ERROR: Unable to mount the loop device
but when i did modprobe loop
it didn't find anything :(
so if you can help, me i am not a genius, just tell me the simplest way to fix this.
btw i want to install unbuntu 13.10 i have everything downloaded(Terminal emulator, Complete linux installer, AndroidVNC, and the 3.72gb image file)
Thank's in advance,
GGgamer16
I checked if my phone is loop compatible using, the following in terminal emulator : zcat /proc/config.gz | grep CONFIG_BLK_DEV_LOOP , i found it on a webpage , and i got y, that means it is a loop device, but when i ran CompleteLinuxInstaller i got into the following problem
Checking loop device ... FOUND
mount: mounting /dev/block/loop255 on /data/local/mnt failed : Invalid Argument
ERROR: Unable to mount the loop device
but when i did modprobe loop
it didn't find anything :(
so if you can help, me i am not a genius, just tell me the simplest way to fix this.
btw i want to install unbuntu 13.10 i have everything downloaded(Terminal emulator, Complete linux installer, AndroidVNC, and the 3.72gb image file)
Thank's in advance,
GGgamer16
Inscription à :
Articles (Atom)