(Some useful translations) |
m |
||
| (2 intermediate revisions not shown) | |||
| Line 30: | Line 30: | ||
|find package for uninstalled file || [apt-file update;] apt-file search || webpin | |find package for uninstalled file || [apt-file update;] apt-file search || webpin | ||
|- | |- | ||
| - | |online search packages by file || packages.ubuntu.com packages.debian.org || | + | |online search packages by file || packages.ubuntu.com packages.debian.org || rpmfind.net |
|- | |- | ||
|favourite mirror || <CC>.archive.ubuntu.com ftp.<CC>.debian.org || ??? | |favourite mirror || <CC>.archive.ubuntu.com ftp.<CC>.debian.org || ??? | ||
| Line 48: | Line 48: | ||
Thanks to the [http://lilypond.org/blog/janneke/openSUSE-HOWTO original] | Thanks to the [http://lilypond.org/blog/janneke/openSUSE-HOWTO original] | ||
| + | |||
| + | [[Category:tutorial]] | ||
If you've come from a Debian background and you know how to do something there, this page may help you find a way to do the same thing in MeeGo.
If you don't find an answer here then please come back and add it when you do figure it out :)
| You want to | Ubuntu/Debian | MeeGo |
|---|---|---|
| list packages | dpkg -l | rpm -qa |
| list packages contents | dpkg -L | rpm -ql |
| configure network interfaces | /etc/network/interfaces [man interfaces] | /etc/sysconfig/network/ifcfg-eth0 [man ifcfg] |
| concise list of installable packages | apt-cache search . | zypper search |
| get info on package | apt-cache show | zypper info / rpm -qi |
| install or update package | apt-get install | zypper install |
| install updates | apt-get upgrade | zypper update |
| refresh package cache | apt-get update | zypper refresh |
| install build dependencies of a package | apt-get build-dep | zypper build-deps-install [script: zypper-build-dep] |
| packages in historic order of installing | script: dpkg-history | rpm -qa |
| prevent package from being updated | script: dpkg-hold | /etc/zypp/locks(man zypper) |
| find package for uninstalled file | [apt-file update;] apt-file search | webpin |
| online search packages by file | packages.ubuntu.com packages.debian.org | rpmfind.net |
| favourite mirror | <CC>.archive.ubuntu.com ftp.<CC>.debian.org | ??? |
| full list of files by package | Contents-<arch>.gz Contents-<arch>.gz | ??? |
| search installable packages by name | apt-cache search | zypper search |
| search installable package descriptions | apt-cache search | zypper search -d |
| strip version from package | sed -e s/_.*// | sed -e 's/-[^-]\+-[^-]\+$//' |
| package download cache | /var/cache/apt/archives | /var/cache/zypper/RPMS |
Thanks to the original