organicbmx
Jul 1 2005, 05:03 PM
| | hi linux users
i've now got a stable gentoo base but i cant seem to install any packages. this is on a differnet not internet computer to this one. i have installed quite an old version (kernel 2.4) 2004.3 but i have the 2005 packages cd. i looked at the online gentoo install handbook 2005 but it has the same instructions as the 2004.3 handbook. when is try to emerge the packages the computer tried to go online to find the packages instead of going to the cd and looking there. obviously no internet makes it fail.
it is a p3 so 86x structure.
that may not be enough detail to allow you to help but if someone could just run through from the boot what i should do to get the packages to install that would be brilliant. im not to good at base commands yet
thanks in advance |
Reply
qwijibow
Jul 1 2005, 07:13 PM
Yes Gentoo will usually assume it is conected to the internet. but making it work without is not too difficult. Gentoo is attempting to connect to the internet because the files it needs to install a program are missing, or not in the correct location. have a look in /usr/portage/ there should be lots of folders containing groups of packages.. for example net-www/mozilla-firefox for example. and also a filder called distfiles. this is where gentoo looks for source code before installing it. if for example firefox is missing from distfiles, gentoo will need to connect to the internet to install it. from your CD, or a server, coppy all the distfiles of the programs you want to install into that distfiles folder.
Reply
organicbmx
Jul 2 2005, 01:05 PM
well there appears to be alot of files in /usr/portage/distfiles. not sure how they got there!? when i tried before i entered the commands in the handbook so i guess that must have copied the files over? it is quite possible that my command was wrong. i did something like: emerge --usepkg x11 but that tried to go on the internet. i did it just now and it did the same thing. is it possible that i need to be more specific rather than 'x11'? also what order, if it matters, should i install programs. what i want to end up with is a gnome desktop. do i need to install x then gnome and when that is done will it automatically run? many questions im sorry but this is my first linux
Reply
qwijibow
Jul 3 2005, 08:19 AM
the --usepkg switch tells gentoo to use a pre-compiled x11. maybe you only have the x11 source code in /distfiles/ try again without --usepkg, maybe gentoo will be able to compile xorg-x11. normally i would be more specific, but ive just tried an emerge x11, and gentoo assumes you mean xorg-x11 which is the correct assumption. Gentoo is vry good at resolving dependencies, if you tell it to emerge gnome, it will know what else it needs, and what order to do it in. unlike KDE, GNOME is made up of many many optional modules. you can either emerge the ones you want, or use a pre-defined default. here are the gnome programs in portage CODE chris@marla ~ $ ls /usr/portage/gnome-base/ bonobo gail gnome-applets gnome-keyring gnome-mime-data gnome-vfs libghttp libgnomeprint librsvg orbit bonobo-activation gconf gnome-common gnome-libs gnome-panel gnome-volume-manager libglade libgnomeprintui metadata.xml control-center gdm gnome-core gnome-light gnome-print libbonobo libgnome libgnomeui nautilus eel gnome gnome-desktop gnome-menus gnome-session libbonoboui libgnomecanvas libgtop oaf
chris@marla ~ $ ls /usr/portage/gnome-extra/ at-spi gal gnome-art gnome-pim gtop libgda metadata.xml zenity battstat gcalctool gnome-audio gnome-swallow gucharmap libgnomedb nautilus-cd-burner bonobo-conf gconf-editor gnome-db gnome-system-monitor guppi libgsf power-applet bug-buddy gcursor gnome-games gnome-utils gxmms libgtkhtml quick-lounge-applet drwright gdesklets-core gnome-games-extra-data gnome-vfs-extras hal-device-manager lock-keys-applet shermans-aquarium evolution-data-server glibwww gnome-media gnome2-user-docs hardware-monitor medusa users-guide evolution-webcal gnobog gnome-network gtkhtml libgail-gnome merlin-cpufire yelp
i would recoment that for your first install, you let gentoo do most of the work, and go for a default gnome setup by emerging gnome. and always the the -pv switch before doing it for real. -pv stands for pretend verbose. i will tell you what it will do, and in what order it will do it. e.g. emerge -pv x11 the verbose option tells emerge to give exttra information. it will give a download size, because you dont have internet connection, you need every download size to be 0. e.g. CODE marla ~ # emerge -pv x11
These are the packages that I would merge, in order:
Calculating dependencies ...done! [ebuild R ] x11-base/xorg-x11-6.8.2-r1 (-3dfx) (-3dnow) +bitmap-fonts -cjk -debug -dlloader -dmx -doc +font-server -hardened -insecure-drivers -ipv6 -minimal (-mmx) +nls +opengl +pam -sdk (-sse) -static +truetype-fonts +type1-fonts (-uclibc) -xprint +xv 45,105 kB
Total size of downloads: 45,105 kB
so... in more simple words.... emerge -pv gnome if any download sizes are NOT 0, you will need to copy them manually into the disfiles folder, making sure you copy the correct version. they may be on your gentoo cd ? if not you will need to download them, from a gentoo server. hope this helps, Gentoo is a great distro, but it does assume you have internet.
Reply
organicbmx
Jul 3 2005, 08:01 PM
thanks loads so far. i tried that and discovered that those files are not in portage. this is more of a base command question but: how do i scroll up and down at the command line cp won't work for me. when i try to cp /mnt/cdrom/x11-base /usr/portage/distfiles it ommits the cdrom side. have i got the command wrong or is there a mounting issue. (when i mount the cdrom it says some stuff about it being read only, but that shouldnt stop copying). i sure hope gentoo is a great distro  this install has been a long part time project - i was so pleased when i even managed a base command !!! my spelling ruins .conf files constantly.
Reply
qwijibow
Jul 3 2005, 09:10 PM
are you sure cdrom/x11-base contains distfiles, and not just ebuilds ? ive never used the full cd, so im not sure where it keeps distfiles. Anyways, assuming you are correct there.. you need to use the -R option with the copy command. by default, cp will copy one file, if you want it to copy a while fiolder and its sub folders use "cp -R source destination" the -R stands for recursive. if you ever need to know more about a command, type "man <command>" e..g "man cp" an you will be given a that commands documentation. When in the Linux console (not graphical mode) the best way to scroll, is to pipe the output into a scroll program. are you familiar with the pipe ? the symbol is the verticle line character | it takes the output of the left command, and uses it aas input for the right command. so, if you want to list some folders, with the ls command, but there are so many files and folders that it scrolls of the screen, then pipe the ls command into the scroll command "less" examples... CODE ls | less cat /very/big/file.txt | less (cat prints the contents of a text file) emerge -pv gnome | less
you can then scroll the output with the up and down arrow keys on your keyboard. In the old days, almsot every complicated task (like generating PDF files) was done by pipeing several smaller more simple programs together. its quite fun in a geeky kind of way... example, you need to find a file with the words "hello" and "world" in it. but hello and world can be in any order, and you dont have a hard drive searching poogram like "locate" installed... you can pipe the ls command, or find command, into a pattern matching command (called grep) and then maybe even scroll the results. find $HOME | grep hello | grep world | less
Reply
organicbmx
Jul 5 2005, 10:16 AM
oh dear. i have no idea whether they are distfiles or ebuilds. sorry about that but i guess you goning to have to explain the difference and how to find out. sorry and thanks for the help so far
Reply
hatim
Jul 5 2005, 09:15 PM
Well for starters .. Ebuild are just plain scripts .Comprised of rules on how to install a software. ie where to get the source and hwo to compile it and what files to merge..and do the cleaning up etc. Ebuild primarily reside in /usr/portage/dir/more folder where dir may be kde-base on gnome-base etc. and more is a subdirectory like kdevelop etc. in /usr/portage/distfiles you have the source files usually tar.gz or tar.bz2 files. They are downloaded sources. Coming back to your original problem I think it would be best for you to download the latest base and Install it ie get 2005 Live CD and 2005 Package CD. Also I am suspecting that your portage is not updated ..is that the case. Cause package-cd needs to correspond with a suitable portage Last but not least . If you are using that system as a stable Desktop or Server I would recomend that you use Ubuntu. If a gentoo station is not on internet it looses one of its main advantage ..ie getting the latest stuff in least time. I am a gentoo zealot. But I would probably focus on one gentoo machine (my own) and run alot of systems on a Binary Ditro like Ubuntu or Fedora.
Reply
organicbmx
Jul 16 2005, 05:12 PM
thanks for this help. ill try something else but i have a wireless LAN gentoo install coming up so ill be back!!
Reply
xboxrulz
Jul 17 2005, 02:51 PM
u could also try emerging a new kernel as your's is old. xboxrulz
Reply
Recent Queries:--
nautilus gentoo install bonobo - 174.76 hr back. (1)
-
cannot find a valid baseusr for repo - 411.90 hr back. (1)
Similar Topics
Keywords : gentoo, install, emerging, packages
- Linux Software Installation Help
it tells how to install software in tar.bz2 or .bin extension (2)
Ubuntu- How To Install C/ C++ Compilers.
(3) Once you install Ubuntu. If you want to develop code in C or C++ you need to update the package.
Default install will not come with development tools. Synaptic pckg manager is a very usefull
tool in ubuntu. This can be used to install many development tool. Just look for Synaptic pckg
manager and put check for gcc 3.4 or later, glibc or any other package you need, then update.
Your ubuntu is now ready to use for C,C++.... /smile.gif" style="vertical-align:middle" emoid=":)"
border="0" alt="smile.gif" /> ....
Strange Error When Trying To Install Fedora Core 9
(6) Hi all, I tried to install Fedora Core 9 in a VmWare virtual machine under WinXP. I downloaded the
DVD ISO image and proceeded with the installation. When the process was started since about a
minute, the following error did show: "The file evince-2.22.1.1-1.fc9.i386.rpm cannot be opened.
This is due to a missing file, a corrupt package or corrupt media" Fine, I told to myself,
let's download the ISO image again, this time from a different server, just in case. No joy,
same error. Tried another couple of times, each one using a different server for the download. Sa....
Linux For Beginners- Easy To Install
(16) Which Linux distru is for beginners and Easy to install?....
How To Install Linux Without A CD or DVD?
Would like to learn how to use Linux but don't know how to install (11) Hey! I've tryed to install linux without a cd (as they said on the website).. But I did'nt
understand it so good =/ Can anyone please tell me how I can install linux without a CD? Any
version.. The only thing I need is a fast one (faster than windows).. I am completly new (never
tried it before) and would want to learn Linux. But thats not easy, if I don't know hoiw to
install it /sad.gif" style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif" /> Thanks
//Feelay....
Mysql Build/install Problems
(4) Hi I recently downloaded the mysql source for Linux. I downloaded it from packages.ubuntu.com (my
version of linux is Ubuntu 7.10 (Gutsy Gibbon). here are my problems Installing Mysql: This is the
command I use to configure: ./configure --prefix=/usr/local/mysql
--with-named-curses-libs=/usr/lib/ncurses.a (the --with-named-curses-libs=/usr/lib/ncurses.a is to
fix a bug that occurs when installing on Ubuntu) And this is the error I get: Does anyone know
how to fix this? I've looked it up, but I can't find the answer anywhere.....
Looking For Linux
2 choices that I will choose - make it easy to install and MAINTAIN (34) Ok I have tried Linux before, it was ok, until something with the kernel screwed up and it left me
with a command line interface that I didn't know what to do. I am looking for 2 different
distributions of Linux here, my first one is for: (Currently running Windows XP SP2) A computer
with 512 MB RAM Pentium 4 processor Internet Access GNOME or KDE desktop, doesn't matter Minimal
command line work!!! Absolutely no command line work when installing. I have tried Ubuntu, it was
easy enough. Anything easier than Ubuntu and I'll give it a try. My second cho....
Help Create A Program To Automatically Install Wireless Drivers On Linux
(1) Some of our fellow Ubuntu users are putting together software to automatically detect and install
wireless drivers for a variety of wireless cards and they need our help. If your wireless connection
is working, please run the command and post the result on the Ubuntu forums thread linked to below.
This is the only deterrent to Linux on many laptops.
http://ubuntuforums.org/showthread.php?t=547444 This was never actually meant to be a Ubuntu
thing. It doesn't matter which distribution you're using; running that command and posting
the output would be a great h....
Fedora Core 6 Install Problem
(6) I have tried three times to get Fedora Core 6 to install but I keep getting the same error message:
“there was an error running your transaction, for the following reason(s): file conflicts”. I am
using all of the default settings except changing the time zone and basically installing all
packages. The error always happens near the end of the fifth disk. I have run sha hash checking on
all media and everything checks out. Has anyone had this problem or a possible solution?....
Gentoo Cflags & Use
help needed configuring make.conf (1) Hello, First off: Don't know if all goes well because i'm on a text-browser currently! K
here we go: I'm installing gentoo, well i installed it already but setting up my make.conf, And
my question is: My cflags are: CFLAGS="-march=athlon64 -O2 -pipe -mmmx -m3dnow -msse -msse2 -msse3"
But do i have to set -mmx -3dnow -msse -msse2 now in the USE flags or is it done automatticly by the
CFLAGS? It's making me really confused /smile.gif" style="vertical-align:middle" emoid=":)"
border="0" alt="smile.gif" /> I don't really want to f*ckup my gentoo system ....
Installing Mysql (fc5)
yum install mysql (3) I'm having a problem with my Fedora Core 5 server. I need to install MySQL but it won't. I
keep running the command under root: yum install mysql which should install all the clients but it
won't. It gives me this: CODE # yum install mysql Loading "installonlyn" plugin Setting up
Install Process Setting up repositories
core
updates
extras Reading repository metad....
How Do You Install Fonts Under Gnome 2.14.0
Gnome 2.14.0 (3) I've copied my truetype fonts from windows for use on my linux system. I've been searching
and tried a few things with no luck. thanks for any help! F....
Fedora Core 5 Problems
Installing packages (5) Whenever I try to install a package, I get the following error message in the shell: QUOTE
Loading "installonlyn" plugin Setting up Install Process Setting up repositories updates Cannot find
a valid baseurl for repo: updates Error: cannot find a valid baseurl for repo: updates Thanks
for any help trying to fix this! F Edit: This was linked to an ISP problem that I verified with
a friend on the same ISP. Apparently they were having some problems because I also couldn't
access SourceForge or Photobucket. They've seem to have fixed the problem. F....
Suse 10.0 Won't Install?
(17) I don't get this... I've downloaded the 5 (?) CD set of SuSE 10. It installs PERFECTLY
however, the last step, the hardware thing (I forget what it is called), it quits on it and
won't boot SuSE, it goes DIRECTLY into YaST and it's an endless loop... anyone else have
similar install problems? Thanks! F....
Gentoo Linux 2006.0 Released
(10) QUOTE he Gentoo Release Engineering team proudly announces the release of Gentoo Linux 2006.0.
Gentoo Linux 2006.0, the first release in the 2006 series, represents improvements across many
architectures since the 2005.1 release. Major highlights in the release include KDE 3.4.3, GNOME
2.12.2, XFCE 4.2.2, GCC 3.4.4 and a 2.6.15 kernel. This is also the first release with the Gentoo
Linux Installer officially debuting on the x86 LiveCD, which will fully replace the Universal and
PackageCD set. The LiveCD also features a fully-fledged Gnome environment. Later releases....
Considering Switching To Gentoo, But I Have A Couple Questions...
(29) Well, I'm on the verge of doing some major formats/reinstallations on my HD's and I figured
it's a good time to re-evaluate my OS choices and see if I want to try anything new out. I'm
heavily considering Gentoo currently. I've always wanted to at least try it out but it always
seemed kind of daunting so I never got around to it. While I have some linux experience I am far
from adept in it so I never really got to the point where I just said "alright I'm gonna do it"
Until now. So I know alot of the linux users here run Gentoo or have used it at....
How To Install Applications In Fedora
noob question (12) I'm a linux user since a few days, i've decided to change to linux coz i'm not very
pleased with Windows versions . So i wonder how do i install aplications like Files Sharing and mp3
?....
Dual Boot Question
future gentoo/xp project (2) I am planning to get a second hd drive for my pc and run gentoo as well as xp. Is it possible to
boot from a secondary drive or should i install gentoo on the end of my primary hd and then mount
/home on the second one? other questions to follow.....
Gentoo Networking Problem
New to Gentoo....need help desperately! (27) Well... I've finally done it! I've completely erased my slackware installation and embarked
on installing gentoo for the first time after deliberating for a long time /wink.gif' border='0'
style='vertical-align:middle' alt='wink.gif' /> . I must say, the installation handbook is great.
It covers almost everything. I followed the handbook word for word and starting with a stage2
installation (where the heck is stage1? All the mirrors only had stage2 and stage3), and everything
went great. I rebooted and it actually worked... I got a login prompt and everything....
Ubuntu Install Cd - Xp Crash When Browsing Cd
what happened? (8) i downlaoded the ubuntu install cd the other day and tried to burn the image to cd using nero. i was
using a cd-rw and i both finalise and didnt finalise and both times the cd was not booted from and
when i looked at the contents xp just crashed. what happened - any ideas. also i has a broken
gentoo/98 dual boot with grub on the 3rd partition. i reformated the 3rd partition forgetting about
grub becasue unbuntu is going on (networkless) and now grub is messed up. can i reinstall grub off
the gentoo install cd? if so what base commands do i need. thanks very much in adv....
Gentoo Linux - How Many Users Out There ?
gentoo linux distro (18) How many gentoo users do we have out here? Recently started delving into it, and i am extatic. It
has the command line cabalities of apt-get (debians source grabber) using emerege. Love how it
automatically downloads and installs the sources from a source tree. Makes things alot easier.....
Minor Knoppix Problems
will they stay in a proper install (6) there are the occational problem that i have on knoppix that i would like to know if i will have
them when i install linux. i.e. file format issues - especially music files .wma? dvd player wont
play one of my dvd's some of the programs on the menu dont start when i click on them gaim wont
work just wondering ....
Install Linux Without Format Or Partitioning
(6) Would you like to try Linux Operatin System without Installing it or Formatting the computer? Well,
YOU CAN! Linux is now available to run on disc straight from the CD without installing on the
computer. Download the disc 100% LEGAL Have fun /smile.gif' border='0'
style='vertical-align:middle' alt='smile.gif' /> ....
Install Jdk1.5.0 Under Fedora Core 4
Share my experience (5) Install jdk1.5.0 under Fedora core 4 I used to use JDK1.4.2. However JDK 1.5.0 was released long
time ago. Today, I got it updated. Here are the steps for newbies: 1. Download Jdk1.5.0. This is a
must /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /> . Everone know where
to get it. anyway, here is the address: http://java.sun.com/j2se/1.5.0/download.jsp The newest
version is JDK 5.0 Update 4. you can choose Linux self-extracting file or Linux RPM in
self-extracting file. For me, I use Linux self-extracting file (jdk-1_5_0_04-linux-i586.bin) ....
Ubuntu! Install
My weekend project (5) Well this weekend I decided to skip mini distrabutions and go for another larger install, I still
dont really want to install Debian or Fedora Core, so I decided this time I'd look at the
screenshots and see what my cup of tea was. So first thing was first, boot into Puppy and backup my
personal stuff, so on goes my old PC and it boots perfectly as normal, up until it comes to starting
the window manger (X), it doesnt load, so I type "xwin" and it doesnt start, it just says to xwin if
I want to restart the interface. So at that point, I really cant be bothered, so ....
How Can I Install A Raid Card In Debian?
(1) My machine is Pentium 4 2.8C, plus a Ggigabyte 865g mother board. Debian sarge is installed in this
PC. Lilo is used as the boot loader. This system does runs fine. I just bought a Promise fasttrak
s150 tx2+ PCI card and two 160g Hitachi DeskStar 7k250. This two new Hard Disks are for backing up
the data. After the hardwares are installed, I get into the raid card's bios and created a raid
1. Then reboot system. Lilo menu is shown. after press enter, system is held at "bios check". If
the two new hitachi hard disk is not attched, Debian can run just fine. What doe....
Debian Net-install
a little help? (3) Okay, I decided to give debian a try, just out of the blue, but I decided to try a net-install.. So,
how exactly do I go about putting together my "custom distro" from the net-install process? Is this
all just stuff I do from the console or what?....
Fedora Core 3 Install/upgrade
issues? (3) I'm currently using Fedora Core 2, which is workin great for me. But when I try to install
Fedora Core 3 from my CD, it goes nuts on me everytime as soon as the GUI portion of the install
starts up. I've tried installing it in text mode, but once I try to boot it stops there too. Am
I using bad media or what?....
Gentoo - Graphical Installer ! All The Power Of
gentoo, available to newbs ??? (5) Gentoo... my most favorite of all linux distro's. Gentoo is possably the most customisable,
most optimised, and if installed correct,y the most powerfull of all linux distro's. but there
is one thing holding it back. All the other distro's are easy to install. Doanload an install
CD... and boot it. With gentoo you needed to boot a live cd, download and extract a minni linux
system, then chroot into it, and build gentoo from that, all command line. Much too difficult for
newbs. setting the corrct compiler optimisations, and use flags meant gentoo was for mo....
Why Can't I Install Software As Root?
(7) When I become root with "su -" and try to install some software, such as firefox, it then
says:"(firefox-installer-bin:3645): Gtk-WARNING **: cannot open display:" What's the meaning
of this information? And how can I deal with it? Thanks!....
Looking for gentoo, install, emerging, packages
|
*SIMILAR VIDEOS*
Searching Video's for gentoo, install, emerging, packages
|
advertisement
|
|