-1

I've bought a new netbook with MeeGo preinstalled. Surprisingly I didn't find any apt-get there.

sudo apt-get: command not found

I need to install apt-get somehow 0_o

Dan
  • 533
  • 2
  • 7
  • 18

2 Answers2

1

On Meego you can use zypper or yum:

 yum install example   

Or

 zypper install example  
desgua
  • 32,669
  • 9
  • 99
  • 120
1

Meego uses the RPM Package Manager (like Fedora does) instead of dpkg that Ubuntu uses. So to install software :

yum install yourPackage
danjjl
  • 6,335
  • 4
  • 31
  • 49
  • please answer me shortly: 1)is MeeGo a Fedora? 2)That means I can't use sudo. How to use root? 3)Can I use soft for Debian? 4)What are the major differences between Fedora and Debian? – Dan Aug 13 '11 at 08:22
  • sorry, I was in panic ))). It looks like MeeGo is Debian and uses sudo and all other stuff. Still I can't run `sudo yum install apt-get` – Dan Aug 13 '11 at 08:32
  • Meego is not a Fedora spin (but Fedora made a spin based on Meego). You can use sudo. You would need to recompile Debian software (most popular software have a .rpm download). You'll need to read on internet for the differences between fedora and Debian (The biggest difference probably is the package systems) – danjjl Aug 13 '11 at 08:36
  • Meego is not Debian based but has a Linux Kernel so yes sudo works. And no you can't install apt-get (it can't use .deb) – danjjl Aug 13 '11 at 08:38
  • You should ask your questions here : http://forum.meego.com/ – danjjl Aug 13 '11 at 08:39