h34d
Neuling
k danke !
Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: this_feature_currently_requires_accessing_site_using_safari
Kabelsalat schrieb:ftp://ftp.suse.com/pub/<arch>/current/iso
Steht aber schom mehrmals auf den nur!!! 4 Seiten.
catch22 schrieb:von suse gibt es eine ftp-install version:
ftp://ftp.suse.com/pub/suse/i386/current/
sogar fuer 64bit:
ftp://ftp.suse.com/pub/suse/x86_64/current/
hmm... wusste garnicht dass es die suse schon fuer 64bit gibt.
edit:
verdammt, du warst schneller.
Kabelsalat schrieb:Hast du's mit dem übersetzen überhaupt probiert? Das mit package.keywords klappt auf jeden Fall auch. Musse halt warten bis er fertig übersetzt hat.
Vielen dank für den Tipp. Echt coolbenutz doch einfach dmix. den bringt alsa gleich mit. du musst dir dazu nur eine configdatei anlegen. entweder global ('/etc/asound.conf') oder fuer deinen user ('~/.asoundrc').
amdunlock schrieb:naja xfce habe ich auch noch drauf (habe ja 562 pakete installiert ^^). aber ich finde das dort die fenster innendrin nicht gut ausehehen.
muad'dib schrieb:Kommt doch drauf an, was man braucht... Ich brauch zB weder Icons aufm Desktop noch einen Papierkorb. Da reicht mir ein Windowmanager. Allerdings hab ich auch lange Gnome benutzt und bin dann zu Fluxbox gewechselt.
#!/bin/bash
MEMSIZE=850M
mounted=false
tmp_dir=/tmp/tmp_portage/portage
. /sbin/functions.sh
mounttmpfs() {
mount -t tmpfs tmpfs -o size=$MEMSIZE $tmp_dir
mounted="true"
}
compile() {
ebegin "emerging ${*}"
emerge ${*}
eend $?
}
unmount() {
ebegin "unmounting tmpfs"
umount -f $tmp_dir
eend $?
}
ebegin "Mounting $MEMSIZE of memory to $tmp_dir"
if [ -z "$(mount | grep $tmp_dir)" ]
then
mounttmpfs
else
eerror "tmpfs already mounted!"
exit 0
fi
eend $?
compile ${*}
if [ -n "$mounted" ]
then
unmount
fi