New answers tagged android
3
Yum maintains a cache of the RPMs it downloads here:
/var/cache/yum/<you architecture>/<OS version>/
For example my box is Fedora 14, x86_64 architecture so I have the following:
$ ls /var/cache/yum/x86_64/14/
adobe-linux-i386 lamolabs rpmfusion-nonfree
adobe-linux-x86_64 lamolabs-noarch ...
3
The rpm files themselves are downloaded and then installed. Once these files are installed, they are tracked by the rpm database. To see where the files for a particular rpm were installed, you can run rpm -ql.
E.g.
[z@localhost ~]# rpm -ql bash |head
/bin/bash
/bin/sh
/etc/skel/.bash_logout
/etc/skel/.bash_profile
/etc/skel/.bashrc
/usr/bin/bashbug-64
...
0
For the occasional file share there's WOOF (Web Offer One File). Woof is trivial to use. It offers files over HTTP and also allows files to be uploaded. Here's the usage:
Usage: woof [-i <ip_addr>] [-p <port>] [-c <count>] <file>
woof [-i <ip_addr>] [-p <port>] [-c <count>] [-z|-j|-Z|-u] <dir>
...
0
They are completely different operating systems. Android has very tight dependencies on the Linux kernel. It is built on Linux, not on POSIX. QNX isn't a unix system, but it provides POSIX APIs. That's no help to run Android.
If you have a device that's running QNX, and you want to run Android on it, your only chance is to run a virtual machine in which you ...
1
Not really an Android developer, but apparently Android supports cgroups(also). On regular servers, cgroups are intended to replace several different subsystems (the limits subsys being one) so it's probably (just going off my GNU/Linux admin experience) preferred to use cgroups to do what you're wanting (going forward that's probably a good recommendation ...
2
QNX is a microkernel system, with (obviously) mostly POSIX userland interfaces. Linux is a monolithic kernel, with mostly POSIX interface.
The Linux kernel inside Android is heavily modified and configured for the hardware it runs on. It has a lot of non-standard interfaces and devices under its control on your random phone/tablet. Just look at the struggle ...
0
It would appear that it's not possible, at least according to this thread:
Install Android Ice Cream for PlayBook
Specifically several users report as follows:
you cannot replace the os on the playbook. case closed. it is
protected and has not been broken. as for 2.0 that requires a new
playbook with a previous os version that has not been ...
Top 50 recent answers are included