Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Search
  • Search

Search found 31 matches

Go to advanced search

Advanced search
Search found 31 matches
  • 1
  • 2
  • Next
by roseZ
Sun Apr 13, 2014 6:47 am
Forum: Desktop Environments
Topic: Fn + up/down works only in mplayer
Replies: 4
Views: 2612

That's just it: you've told X that pressing 'a' should count as pressing 'XF86AudioMute', but neither Sawfish nor X is configured to do anything with it (except pass the keypress event to the active application). If, unlike mplayer, the application is not programmed to respond to XF86AudioMute ...
  • Jump to post
by roseZ
Sat Apr 12, 2014 9:31 am
Forum: Desktop Environments
Topic: Fn + up/down works only in mplayer
Replies: 4
Views: 2612

Mplayer recognizes some multimedia keys (like XF86AudioRaiseVolume) out of the box, but configuring them outside specific applications depends on the desktop environment you're using.

Personally, I use x11-misc/xbindkeys which is DE agnostic. In case you want to give it a try, here's a part of my ...
  • Jump to post
by roseZ
Sat Apr 12, 2014 8:39 am
Forum: Portage & Programming
Topic: Is it safe to uninstall to resolve the conflict?
Replies: 12
Views: 5993

I'm not sure if removing python-exec would be safe. Is your system up-to-date? There was an eselect news item about python-exec package move and related blockers (2013-11-07-python-exec-package-move) that might be relevant.
  • Jump to post
by roseZ
Thu Apr 10, 2014 5:01 am
Forum: Portage & Programming
Topic: emerge --sync fails almost always
Replies: 4
Views: 7482

I do have an iptables firewall up since at least 2012, and there's a built-in firewall in the router-ADSL modem combo from my ISP. Though I've made no changes to either around the time that problems started.

I'm not really privy to the inner workings of network protocols, but I do have an iptables ...
  • Jump to post
by roseZ
Wed Apr 09, 2014 12:11 pm
Forum: Desktop Environments
Topic: LXDE - can't switch keyboard layout
Replies: 1
Views: 2591

From the topic I'm assuming you want to set the keyboard layout in X. The settings in /etc/conf.d/keymap control layout in the console and have no bearing on X. I don't know if it's possible to use two layouts in the console; I'm guessing the later setting (sk-qwerty) from /etc/conf.d/keymap is in ...
  • Jump to post
by roseZ
Wed Apr 09, 2014 11:24 am
Forum: Portage & Programming
Topic: emerge --sync fails almost always
Replies: 4
Views: 7482

Thanks, I wasn't aware of delta-webrsync script. I guess it would be an improvement over webrsync at least. I would like to stick to rsync, though.
  • Jump to post
by roseZ
Wed Apr 09, 2014 11:09 am
Forum: Portage & Programming
Topic: unable to force makefile to rebuild on headers changes
Replies: 2
Views: 2158

What exactly does the .depend file look like?

It seems to me that $(TARGET) depends on file1.c via obj/file1.o, but obj/ file1.o may not depend on file1.h.
At least this is the case if .depend contains, as I'm guessing, a line like

file1.o: file1.c file1.h

instead of

obj/file1.o: file1.c ...
  • Jump to post
by roseZ
Wed Apr 09, 2014 9:51 am
Forum: Portage & Programming
Topic: emerge --sync fails almost always
Replies: 4
Views: 7482

emerge --sync fails almost always

I've had a lot of problems syncing the portage tree since Oct 1, 2013. I've been using rsync.europe.gentoo.org or rsync.se.gentoo.org (I live in Finland) without problems prior to that date. Checking emerge.log between Oct 1 and the last sync before that, I found no changes to my system that appear ...
  • Jump to post
by roseZ
Wed Dec 13, 2006 12:01 pm
Forum: Documentation, Tips & Tricks
Topic: [HOWTO] Hassle-free emerge -uD world (update-world v1.8)
Replies: 148
Views: 250781

Once more about reading portage variables: I just noticed there's a tool that can do it (and more). So instead of sourcing make.conf to get PORT_LOGDIR (along with everything else), you could do
portlogdir=`portageq envvar PORT_LOGDIR`
which feels a tad better to me. Append 2>/dev/null within ...
  • Jump to post
by roseZ
Mon Dec 11, 2006 11:24 am
Forum: Documentation, Tips & Tricks
Topic: [HOWTO] Hassle-free emerge -uD world (update-world v1.8)
Replies: 148
Views: 250781

If you want to do things cleanly, don't try to parse make.conf variables with sed like this:
portlogdir=`cat /etc/make.conf | grep ^PORT_LOGDIR | sed 's/PORT_LOGDIR=//' | sed 's/\"//g' | sed 's/\/$//'`
Just let bash parse it for you by adding as first line
source /etc/make.conf
and use PORT ...
  • Jump to post
by roseZ
Wed May 31, 2006 4:58 am
Forum: Duplicate Threads
Topic: emerge -uD world error (package blocking)
Replies: 6
Views: 5689

Check the ChangeLog. It tells you have to unmerge pam-login first.
  • Jump to post
by roseZ
Sun May 28, 2006 4:31 pm
Forum: Gamers & Players
Topic: No High Scores
Replies: 3
Views: 2264

Nothing besides permission problems springs to my mind when reading your description. You are in the games group, so next I would check that the permissions of the game executables and the high score files (and directory) are not b0rked. Mine look like this (I'll take gnomine as an example)
-r-xr-s ...
  • Jump to post
by roseZ
Wed May 24, 2006 12:48 pm
Forum: Gamers & Players
Topic: No High Scores
Replies: 3
Views: 2264

I'm not entirely sure about this, but I think you have to be in the games group.

Code: Select all

gpasswd -a <user> games
Any help?
  • Jump to post
by roseZ
Sat May 20, 2006 5:32 pm
Forum: Other Things Gentoo
Topic: Su problems
Replies: 12
Views: 1910

I think the problem was that the user was not in the wheel group.
It seems you are correct, although, as I tested it on my box the error message was different from csfsmash's. With user not in wheel I get this:
$ su -
Password:
su: Permission denied
Sorry.

It makes no difference whether I try ...
  • Jump to post
by roseZ
Sat May 20, 2006 4:42 pm
Forum: Other Things Gentoo
Topic: Su problems
Replies: 12
Views: 1910

I think you should rather add user to a group with

Code: Select all

gpasswd -a <user> <group>
Did your su problem disappear, or did we just give you more grief? :?
  • Jump to post
by roseZ
Sat May 20, 2006 6:12 am
Forum: Other Things Gentoo
Topic: Su problems
Replies: 12
Views: 1910

Check what /bin/sh looks like by
ls -l /bin/sh
For me, the output looks like this
lrwxrwxrwx 1 root root 4 Apr 16 21:37 /bin/sh -> bash
which means that /bin/sh is a symlink pointing to /bin/bash. In this case, do the same thing for the link's target. In my case this is
ls -l /bin/bash
which ...
  • Jump to post
by roseZ
Sat May 20, 2006 5:34 am
Forum: Other Things Gentoo
Topic: Su problems
Replies: 12
Views: 1910

It looks like root's shell is set to /bin/sh in /etc/passwd, and the execute permission to /bin/sh (or to whatever it points to, if it's a symlink) is not set.
  • Jump to post
by roseZ
Fri May 19, 2006 3:14 pm
Forum: Other Things Gentoo
Topic: JAVA_HOME definition with su -
Replies: 5
Views: 2318

I agree with taciturnus about the behaviour of - being mysterious :)

However, if you just want so set variables in the execution environment of the command, you can do it like this:

Code: Select all

su jboss -c 'export FOO=bar; <your command>'
  • Jump to post
by roseZ
Tue May 16, 2006 8:34 pm
Forum: Desktop Environments
Topic: how do you get latex-suite to save your settings?
Replies: 3
Views: 1175

Can't say without some research why you have to hit enter to get back to vim. If I recall correctly though, I have to do it after every compile regardless. You could use pdflatex to do it in one go, unless you need the .dvi file.
  • Jump to post
by roseZ
Tue May 16, 2006 6:52 pm
Forum: Desktop Environments
Topic: how do you get latex-suite to save your settings?
Replies: 3
Views: 1175

Vim won't keep variables' values between sessions, so you'll have to set them in the files that vim sources on startup for the effect to be permanent. I guess the proper place in this case would be ~/.vim/ftplugin/tex/texrc.vim, depending on your environment of course. This works for me (stock ...
  • Jump to post
by roseZ
Tue May 16, 2006 2:07 pm
Forum: Kernel & Hardware
Topic: menuconfig settings disappear
Replies: 6
Views: 2088

I'm not too familiar with genkernel, but SinoTech's first post has a logical explanation. I presume that this disappearance of changes does not occur when you're doing things 'by hand' as you described? The filename (or location to that matter) of the kernel image is, as mentioned, irrelevant as ...
  • Jump to post
by roseZ
Tue May 16, 2006 11:44 am
Forum: Kernel & Hardware
Topic: menuconfig settings disappear
Replies: 6
Views: 2088

What do you mean by settings disappearing? Is the new kernel not loaded on reboot or are the changes in /usr/src/linux/.config lost? Or am I completely off the map?
  • Jump to post
by roseZ
Tue May 16, 2006 11:06 am
Forum: Multimedia
Topic: [Solved]How do I start MPD, stopped
Replies: 7
Views: 1736

My understanding is that the state is saved on exit. So instead of playing with sed, why not put something like 'mpc stop' in the stop part of the script before the command that terminates mpd?
  • Jump to post
by roseZ
Mon Dec 19, 2005 9:26 pm
Forum: Documentation, Tips & Tricks
Topic: Picking package names from emerge output
Replies: 5
Views: 8242

Ok, I did what I should have done right from the start. Read the man page of sed (and grep), that is :)

Apparently there are two kinds of regexps: basic and extended. Default for sed and grep is the former,
in which characters like ? + ( | { lose their special meaning unless preceded by a ...
  • Jump to post
by roseZ
Mon Dec 19, 2005 11:18 am
Forum: Documentation, Tips & Tricks
Topic: Picking package names from emerge output
Replies: 5
Views: 8242

Silly me. It seems to work like I tought + would do alone (match one or more occurrences
of the previous block). I just don't understand why it has to be escaped. Back in the days,
at least Rute used to teach this the other way around.
  • Jump to post

Search found 31 matches
  • 1
  • 2
  • Next

Go to advanced search

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic