|
|
2011-01-19
, 16:19
|
|
|
Posts: 95 |
Thanked: 51 times |
Joined on Sep 2010
@ staffordshire, uk
|
#21
|
|
|
2011-01-19
, 18:47
|
|
Posts: 362 |
Thanked: 143 times |
Joined on Mar 2008
|
#23
|
No, if it worked at all it'd just mess up your Ubuntu install.
You just run that command on your N900 and if you wanted its output to go in a text file you'd append something like ">/home/user/MyDocs/packages.txt" to redirect the output to a file called "packages.txt" on your MyDocs partition.
; I look forward to your comments.|
|
2011-01-19
, 19:06
|
|
|
Posts: 1,455 |
Thanked: 3,309 times |
Joined on Dec 2009
@ Rochester, NY
|
#24
|
I was referring (but not mentioning) to the fact that doing package install that way (dpkg -i) one doesn't check the authenticity of the package in any way. If it would be a rpm-package instead, the GPG-signature would come embedded and would be checked automatically before installation (rpm -i).
Dependency-wise the two system are identical, but not security-wise.
|
|
2011-01-19
, 20:22
|
|
Posts: 3,617 |
Thanked: 2,412 times |
Joined on Nov 2009
@ Cambridge, UK
|
#25
|
| The Following User Says Thank You to Rob1n For This Useful Post: | ||
|
|
2011-01-19
, 21:26
|
|
Posts: 1,341 |
Thanked: 708 times |
Joined on Feb 2010
|
#26
|
But that check relies on getting the public key from the repository it's from, which you get when you first download the RPM repository setup file. If you grab an RPM for a repository you don't have in your list, it will throw a signing error and you'd have to use --force to make it install the rpm anyway. (Or download and install the repository and its key.)
I will grant that it's nice to at least have an attempt to automate some minor level of security into the package manager. But really, it's not that terribly secure. All that signature means is that the repository you're getting data from has signed it. Most repositories will auto-sign anything uploaded. A signature doesn't mean it's been validated in any way to not contain bad software, just that it came from that particular repository.
Frankly, if you're downloading and manually installing packages (rpm or deb), you're probably taking some trust issues on anyway in where you're downloading it from. Just like you do for enabling a repository to start with, in either system.
| The Following User Says Thank You to zimon For This Useful Post: | ||
|
|
2011-01-19
, 21:55
|
|
Posts: 701 |
Thanked: 585 times |
Joined on Sep 2010
@ London, England
|
#27
|
| The Following User Says Thank You to retsaw For This Useful Post: | ||
|
|
2011-01-19
, 22:40
|
|
Posts: 362 |
Thanked: 143 times |
Joined on Mar 2008
|
#28
|
It's do-able, but would alse involve copying across the dpkg database (so it knows what is already installed and thus which dependencies are needed) and getting it to use that rather than the one for the Ubuntu install, as well as getting it to use the Maemo repositories. I'm sure it can be done, but I'm not sure how simple it would be to set up.