You are not logged in.
Pages: 1
wanted openoffice2 so i uncommented the line to use unstable in my pacman.conf file and commented out the current and extra lines
[current]
# Add your preferred servers here, they will be used first
#Include = /etc/pacman.d/current
[extra]
# Add your preferred servers here, they will be used first
#Include = /etc/pacman.d/extra
#[unstable]
# Add your preferred servers here, they will be used first
Include = /etc/pacman.d/unstable
is there a better way to install packages from unstable without having to do this everytime. also when i change it back to do a system update (-Syu) will it mess up the packages i installed from unstable?
He may look like an idiot and talk like an idiot but don't let that fool you. He really is an idiot.
- - - Groucho Marx
Registered Linux User #319935
Registered Linux Machine #204881
Offline
The packages in unstable and current/extra don't have the same names so they won't interfere with each other. You can leave them uncommented. The "tricky" repo is testing since it contains packages that will eventually be moved to current/extra..
Offline
IIRC, [unstable] doesn't contain packages that are named the same as packages in [current] and [extra]. So you can leave them all uncommented.
I may be wrong. But I assume the package for open office in unstable is named openoffice2, and not openoffice.
Dusty
Offline
I may be wrong. But I assume the package for open office in unstable is named openoffice2, and not openoffice.
Dusty
That's correct.
Offline
And you can have both OOo 1.1.4 and OOo 1.9.113 installed with no issues- ban your MIME settings.
Microshaft delenda est
Offline
thanks to you all.
got openoffice2 installed at home, but now at work i am behind a firewall/proxy. i have it so i can install stuff using wget and all that, but some of the repos cant download the db.tar.gz file. says length: unspecified
can i download the package file itself and use pacman to install it?
He may look like an idiot and talk like an idiot but don't let that fool you. He really is an idiot.
- - - Groucho Marx
Registered Linux User #319935
Registered Linux Machine #204881
Offline
can i download the package file itself and use pacman to install it?
both should work:
pacman -A http://www.path.to/package/to/install.pkg.tar.gz
wget http://www.path.to/package/to/install.pkg.tar.gz
pacman -A install.pkg.tar.gz
Offline
Dusty wrote:I may be wrong. But I assume the package for open office in unstable is named openoffice2, and not openoffice.
DustyThat's correct.
Didn't realize you had outposted me, sorry. 8)
Dusty
Offline
thanks all, i got it installed. had to download the file and then install it but hey, whatever works.
He may look like an idiot and talk like an idiot but don't let that fool you. He really is an idiot.
- - - Groucho Marx
Registered Linux User #319935
Registered Linux Machine #204881
Offline
The packages in unstable and current/extra don't have the same names so they won't interfere with each other. You can leave them uncommented. The "tricky" repo is testing since it contains packages that will eventually be moved to current/extra..
Does this mean that Testing and Current will interfere with each other?
Offline
Does this mean that Testing and Current will interfere with each other?
Maybe interfere isn't the right word... If you uncomment the testing repo in pacman.conf, its packages will replace the stable ones from the current/extra repos. That's because the packages in the testing repo have the same name as their counterpart from the current/extra repos except they have a higher version number.
The testing repo replaces stable packages with packages that could be problematic while the unstable repo only contains unstable packages such as development versions.
Offline
Pages: 1