Re: [gentoo-user] Change History of linux commands

2022-10-09 Thread Róbert Čerňanský
On Fri, 7 Oct 2022 17:47:51 +0200
tastytea  wrote:

> On 2022-10-07 17:25+0200 n952162  wrote:
> 
> > Am 07.10.22 um 16:56 schrieb Grant Taylor:  
> > > On 10/7/22 8:25 AM, n952162 wrote:
> > >> Can anybody tell me how I can look at the official change history
> > >> of linux commands?
> > >
> > > Some man pages have history of commands in them.
> > >
> > > Admittedly, it seems as if man pages on Solaris and *BSD (I have
> > > access to FreeBSD) tend to be better than Linux man page at this
> > > aspect.
> > >
> > >
> > >
> > 
> > Well, the man page, yes, would be a good indicator, but the commands
> > themselves?
> > 
> > Where does gentoo get the source to build  test(1) or expr(1) or
> > date(1)?    That's in some package, but where is the upstream
> > source? Is it something in github?  Or a linux portal?  Or Torvalds
> > private server?  Or the gnu server?
> > 
> >   
> 
> /usr/bin/test[1] was installed by sys-apps/coreutils[2], it's homepage
> is <https://www.gnu.org/software/coreutils/>[3], that links to the
> source code repository.

For me the first and most obvious place to look at is
/usr/share/doc//.  Usually there is NEWS or ChangeLog file or
both.  Which  it is you can get from man page (it is written
at the end in the "footer") or with command

  $ equery belongs `which `.


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com



Re: [gentoo-user] Any decent alternative to Thunderbird?

2021-11-17 Thread Róbert Čerňanský
On Sun, 14 Nov 2021 15:39:14 -0800
Jigme Datse  wrote:

> I'm using Claws Mail though I'm not sure if it is a valid answer, I do
> know that it's the answer I have decided on.  Yes, Thunderbird is
> still installed, but I don't have a clue when I last used it.  The
> last time, was when I wanted to see if things in Thunderbird were
> working better (for a specific message) than in Claws Mail.  And no,
> not really. Though it may have been useful for that specific message.

+1 for Claws Mail; and it does run on Windows.

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] mounting USB without root password

2021-01-30 Thread Róbert Čerňanský
On Fri, 29 Jan 2021 12:23:19 -0600
"Matt Connell \(Gmail\)"  wrote:

> On Fri, 2021-01-29 at 10:40 -0700, the...@sys-concept.com wrote:
> > I reverse the setting in sudoers.  
> 
> > - Removable Drivers and Media: --> Mount removable drives when
> > hot-plugged.  
> 
> Nice.  Glad you found the fix.

And for completeness, if you want some command line goodness, there is
sys-apps/pmount.

man pmount...
pmount - mount arbitrary hotpluggable devices as normal user

So for example:
$ pmount /dev/sdc1

Mounts removable drive to /media/sdc1.

Then:
$ pumount /media/sdc1

Unmounts it.


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] pycharm-community crashed on the first start

2020-12-23 Thread Róbert Čerňanský
On Wed, 23 Dec 2020 22:33:59 +0200
gevisz  wrote:

> I have just installed pycharm-community 2020.1.3 (marked stable) with
> its default settings (that is with +bundled-jdk use flag) on my newly
> installed Gentoo system and tried to start it using the following
> command:
> /opt/pycharm-community/bin/pycharm.sh
> 
> Unfortunately, pycharm crashed on the start reporting the following
> error:
> 
> # A fatal error has been detected by the Java Runtime Environment:
> #
> #  SIGSEGV (0xb) at pc=0x, pid=26676, tid=26725
> #
> # JRE version: OpenJDK Runtime Environment (11.0.7+10) (build
> 11.0.7+10-b765.64) # Java VM: OpenJDK 64-Bit Server VM
> (11.0.7+10-b765.64, mixed mode, tiered, compressed oops, concurrent
> mark sweep gc, linux-amd64) # Problematic frame:
> # C  0x
> #
> # Core dump will be written. Default location: /home/gevis/core
> #
> # If you would like to submit a bug report, please visit:
> #   http://bugreport.java.com/bugreport/crash.jsp
> # The crash happened outside the Java Virtual Machine in native code.
> # See problematic frame for where to report the bug.
> 
> A longer error report from /home/gevis/java_error_in_PYCHARM_26676.log
> tells me nothing meaningful. :(
> 
> I have no other Java JDK installed on my system.
> 
> Is it a known problem? Shall I try to install pycharm with
> -  use flag?

No crashes here with the same pycharm version and bundled-jdk enabled.
I have dev-java/icedtea-bin installed in the system but pycharm does
not use it (About dialog show the same java env. as yours -
11.0.7+10-b765.64).

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] override PYTHON_TARGETS to avoid a slot collision

2020-12-20 Thread Róbert Čerňanský
On Sat, 19 Dec 2020 11:20:26 +0100
n952162  wrote:

> /Is there  a fundamental goals issue here, when there's so much
> incompatibility between python3_{6,7,8,9}?  Do  packages really need
> to care?  Are these versions so fundamentally different from each
> other, and programmers rely on those differences?  Or, is this
> somebody's orderliness tic?/

This bothers me too as a developer.  I have created and maintain small
python program.  The program itself requires almost no maintenance and
as far as I remember it has been compatible with any Python 3 version
since 3.2. The only thing that needs constant maintenance is the ebuild
where a list of exact Python versions have to be updated with each new
major Python release:

PYTHON_COMPAT=( python3_{6..9} )

It is not even possible to "outsmart" it with 'python3_{6..255}' or
something similar to be future proof.

I do not know the reasoning for such handling of Python in Gentoo.
Maybe I am oversimplifying it but I'd expect that specifying
dependencies to Python will be simple as any other.  Something like:

RDEPEND=">=dev-lang/python:3"

Why this is not the standard and recommended way?

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] Conflicting version...but the version scheme is confusing...

2019-11-29 Thread Róbert Čerňanský
On Sat, 30 Nov 2019 05:45:48 +0100
tu...@posteo.de wrote:

> On 11/29 10:28, Dale wrote:
> > tu...@posteo.de wrote:  
> > > On 11/29 10:12, Dale wrote:  
> > >> tu...@posteo.de wrote:  
> > >>>   (media-gfx/imagemagick-7.0.9.5:0/7.0.9::gentoo, ebuild
> > >>> scheduled for merge) conflicts with
> > >>>  > >>> (media-gfx/inkscape-1.0_beta1:0/0::gentoo, ebuild scheduled for
> > >>> merge)
> > >>>
> > >>> What does "media-gfx/imagemagick-7:=[cxx]" indicate for a
> > >>> version ?

Hi, man 5 ebuild tells us that:

 = Indicates that any slot value is acceptable. In addition, for runtime
   dependencies, indicates that the package will break unless a matching
   package with slot and sub-slot equal to the slot and sub-slot of the best
   installed version at the time the package was installed is available.

In this it case means that inkscape wants the same slot version of
imagemagick as it was present in the system at the time inkscape got
emerged.  So if you update imagemagick to a higher slot, inkscape will
break and needs to be rebuilt.  The rebuild should have been
automatically scheduled by emerge.  I am not sure why it did not but
you have probably too many other conflicts and emerge got lost in that
mess. ;-)  It usually helps if you make all the USE flag and keyword
changes that emerge wants you to do first.  If it does not help then
unmerge inkscape and emerge it again after update.

> after switching this cxx-thingy off and on again, I get additional
> errors:
> 
> dev-python/numpy:0
> 
>   (dev-python/numpy-1.17.4:0/0::gentoo, ebuild scheduled for merge)
> conflicts with
> dev-python/numpy[python_targets_python2_7(-),python_targets_python3_6(-),-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)]
> required by (media-libs/opencv-4.1.2:0/4.1.2::gentoo, installed)

This looks like python is going to be updated.  Again, try to make all
the USE flags and keyword changes (they are usually printed at the
end of emerge's error output).  Then try to increase backtrack value
with --backtrack parameter.

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] Small (as in footprint) window manager

2018-12-02 Thread Róbert Čerňanský
On Sat, 1 Dec 2018 22:38:01 -0600
Dale  wrote:

> Daniel Frey wrote:
> > I've been trying to clean up my machines (pruning world file, etc)
> > and am making progress.
> >
> > I ran into one issue, that being on my server (mythtv, file, etc) I
> > am normally in text/ssh mode but occasionally I need X for
> > something.
> >
> > Does anyone have suggestions for a small-footprint window manager (I
> > have no need for a full desktop environment) as twm is just fugly
> > and sometimes not intuitive. I also don't need a file manager as I
> > use Midnight Commander which works well for my needs. This all
> > stems from occasionally needing a gui for configuring mythtv or the
> > ability to have two shells open side by side.
> >
> > I am thinking others have most likely had this problem at some point
> > and have found something that's lightweight for this type of
> > purpose.
> >
> > Dan
> >
> >  
> 
> 
> It's been a while but last I used Fluxbox, it was tiny.  If you just
> do a basic install, it isn't much to it.  Of course, it isn't feature
> rich either but it should run well on a low powered machine or
> consume very little resources on a bigger system.  I've got two
> fluxbox packages installed here.  Here is some info on them.
> 
> 
> root@fireball / # equery s x11-themes/fluxbox-styles-fluxmod
> x11-wm/fluxbox
>  * x11-themes/fluxbox-styles-fluxmod-20050128-r1
>  Total files : 1539
>  Total size  : 4.22 MiB
> 
>  * x11-wm/fluxbox-1.3.7-r3
>  Total files : 339
>  Total size  : 3.89 MiB
> root@fireball / #

Windowmaker is also a good choice.  I'm still using for main desktop.

$ equery s windowmaker
 * x11-wm/windowmaker-0.95.8-r1
 Total files : 495
 Total size  : 5.76 MiB

Or you may consider forwarding X to the machine you are connecting
from:

 $ ssh -Y 

Then start whatever X application you need and it will be displayed on
your local machine.  You do not need window manager on the server.

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] #gentoo experiences

2017-11-19 Thread Róbert Čerňanský
On Sun, 19 Nov 2017 08:37:53 -0800
Daniel Frey <djqf...@gmail.com> wrote:

> On 11/19/17 08:25, taii...@gmx.com wrote:
> > On 11/19/2017 07:56 AM, Michael Palimaka wrote:
> >   
> >> Hi all,
> >>
> >> I'm collecting information about people's experiences in #gentoo.  
[...]
> > The lack of an ncurses setup gui/an express setup option is a major
> > PITA which is why I haven't yet used gentoo as dom0 in a production 
[...]
> The way it's worded makes me think feedback was requested on the irc 
> channels, but maybe I am wrong?

It would still be nice though if representatives asks users also about
Gentoo as a product.  So they know where they are hitting nail on the
head and where they are somehow missing it.

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] [OT] Being Facebook member: How to anon?

2017-10-24 Thread Róbert Čerňanský
On Tue, 24 Oct 2017 07:35:35 -0400
Todd Goodman <t...@bonedaddy.net> wrote:

> On 10/23/2017 10:46 PM, tu...@posteo.de wrote:
> >  
> >>>> Hi Robert,
> >>>>
> >>>> oh YEAH!
> >>>> Thanks a lot for that quick start!
> >>>>
> >>>> I didi it, but...  
> >>>> #>eix -I docker  
> >>>> [I] app-emulation/docker
> >>>>  Available versions:  17.03.2^si (~)17.06.2^si (~)17.09.0^si
> >>>> **^si {apparmor aufs btrfs +container-init +device-mapper
> >>>> hardened overlay pkcs11 seccomp} Installed versions:
> >>>> 17.09.0^si(05:48:14 PM 10/23/2017)(container-init device-mapper
> >>>> seccomp -apparmor -aufs -btrfs -hardened -overlay -pkcs11)
> >>>> Homepage:https://dockerproject.org
> >>>> Description: The core functions you need to create
> >>>> Docker images and run Docker containers
> >>>>
> >>>> [I] app-emulation/docker-proxy
> >>>>  Available versions:  0.8.0_p2016 (~)0.8.0_p20170917^t
> >>>> ** Installed versions:  0.8.0_p20170917^t(05:46:10 PM
> >>>> 10/23/2017) Homepage:
> >>>> https://github.com/docker/libnetwork Description: Docker
> >>>> container networking
> >>>>
> >>>> [I] app-emulation/docker-runc
> >>>>  Available versions:  1.0.0_rc2_p20170308^t
> >>>> (~)1.0.0_rc3_p20170706^t (~)1.0.0_rc4_p20170917^t {+ambient
> >>>> apparmor hardened +seccomp} Installed versions:
> >>>> 1.0.0_rc4_p20170917^t(05:46:07 PM 10/23/2017)(ambient seccomp
> >>>> -apparmor -hardened) Homepage:http://runc.io
> >>>> Description: runc container cli tools (docker fork)
> >>>>
> >>>>  
> >>>> #>groups  
> >>>> wheel mail uucp audio cdrom video games cdrw usb users docker
> >>>> wireshark vboxusers vlock realtime ^^
> >>>>
> >>>> (as root)  
> >>>> #>/etc/init.d/docker start  
> >>>>  * WARNING: docker has already been started
> >>>> (so it is runnig)
> >>>>
> >>>> (as user again)  
> >>>> #>docker run --name firefox -e DISPLAY=$DISPLAY
> >>>> --device /dev/snd -v /tmp/.X11-unix:/tmp/.X11-unix -v
> >>>> $XAUTHORITY:/tmp/.host_Xauthority:ro -dti openhs/firefox-ubuntu
> >>>> docker: Cannot connect to the Docker daemon at
> >>>> unix:///var/run/docker.sock. Is the docker daemon running?. See
> >>>> 'docker run --help'. [1]10401 exit 125   docker run --name
> >>>> firefox -e DISPLAY=$DISPLAY --device /dev/snd -v  -v  -dti 
> >>>>
> >>>> H...seems I missed something...
> >>>>
> >>>> Cheers
> >>>> Meino
> >>>>
> >>>>
> >>>>
> >>>>  
> >>> Found this in dmesg
> >>>
> >>> [ 1587.391861] device-mapper: table: 254:0: thin-pool: unknown
> >>> target type [ 1587.391863] device-mapper: ioctl: error adding
> >>> target to table
> >>>
> >>> these two lines are added when I try to start /etc/ini.d/docker
> >>> as root.
> >>>
> >>> Cheers
> >>> Meino
> >>>
> >>>
> >>>  
> >> I could this problem by defining 
> >>
> >> CONFIG_DM_THIN_PROVISIONING=y
> >>
> >> in the kernel, recompile it and the message disappears.
> >> BUT:
> >> still docker does not start...
> >>
> >> How can I fix that?
> >>
> >> Cheers
> >> Meino
> >>
> >>  
> > Next fix:
> > Need to activate the complete cgroup features.
> >
> > Now I get this error message in /var/log/docker.log
> >
> > time="2017-10-24T04:42:39.358339658+02:00" level=info msg="Loading
> > containers: start." time="2017-10-24T04:42:39.869600530+02:00"
> > level=error msg="could not get initial namespace: no such file or
> > directory" time="2017-10-24T04:42:39.884438663+02:00" level=error
> > msg="failed to set to initial namespace,
> > readlink /proc/4588/task/4588/ns/net: no such file or directory,
> > initns fd -1: bad file descriptor"
> > time="2017-10-24T04:42:39.885161875+02:00" level=info msg="Default
> > bridge (docker0) is assigned with an IP address 172.17.0.0/16.
> > Daemon option --bip can be used to set a preferred IP address"
> > time="2017-10-24T04:42:39.885339857+02:00" level=error msg="failed
> > to set to initial namespace, readlink /proc/4588/task/4588/ns/net:
> > no such file or directory, initns fd -1: bad file descriptor" Error
> > starting daemon: Error initializing network controller: Error
> > creating default "bridge" network: Failed to program NAT chain:
> > Failed to inject DOCKER in PREROUTING chain: iptables failed:
> > iptables --wait -t nat -A PREROUTING -m addrtype --dst-type LOCAL
> > -j DOCKER: iptables: No chain/target/match by that name.
> >
> > ...and now I really did not know how to hack further...
> >
> > Any help is very appreciated...
> >
> > Cheers
> > Meino
> >  
> 
> You might need CONFIG_NF_NAT_IPV4 configured in your kernel to get the
> NAT table for iptables (-t nat)

The emerge should print/log which kernel options you do not have and
should have enabled if I am not mistaken.  Docker uses some advanced
kernel features.  I forgot to mention to check the kernel config in
my quick start, sorry.

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] [OT] Being Facebook member: How to anon?

2017-10-23 Thread Róbert Čerňanský
On Mon, 23 Oct 2017 17:56:40 +0200
tu...@posteo.de wrote:

> On 10/23 09:56, Stroller wrote:
> >   
> > > On 22 Oct 2017, at 16:50, tu...@posteo.de wrote:
> > > 
> > > for its invasive nature and its data gathering I really dont like
> > > facebook. 
> > > 
> > > And now it seems that I cant with out it:
> > > There is a HUGE user group for the Creality CR-10 3D printer there
> > > and veryone and everything is referencing it.
> > > 
> > > My question is:
> > > Are there ways (and which ones) to become member of facebook
> > > just to read and write to this user grout (like a mailinglist)
> > > and keep the impact on privacy an personal fingerprinting as
> > > small as ever possible?  
> > 
> > I joined Facebook for the first time this week, for similar reasons
> > as, and with similar reservations to, you.
> > 
> > When people upload a photo of you, it performs facial recognition
> > and they can "tag" you as being in the photo. You don't have to
> > upload a photo of yourself (I'm thinking of trying one in
> > sunglasses) and in the privacy settings you're also able to forbid
> > people from tagging you.
> > 
> > There are quite granular settings to allow anyone but friends to
> > see or post on your timeline - I was quite impressed by how much
> > privacy appears to be available to users. I suspect this allows you
> > more privacy from you family and colleagues than it does from
> > Facebook, though.
> > 
> > Stroller.
> > 
> >   
> 
> Hi,
> 
> thanks a lot for all the input...it seems not only my problem which I
> have with facehook.
> 
> I will try th docker-way at first.
> But: I am a total (in words: "total") newbie when it comes to docker.
> And as I want "only" to encapsulate my inner self from the faces in
> that book (and for the first dont need to explore the huge planet of
> docker)...does one know of a good documentation for that
> purpose...something like: "Facebook for Dummies: How to use docker
> for anon access to facebook" ...or something like that ... ;)

Well, here is very compressed "how to start" (partly from top of my
head):

1. emerge app-emulation/docker and /etc/init.d/docker start
2. Add yourself to docker group; re-login
3. Choose docker image that you like on hub.docker.com; for example:
https://hub.docker.com/r/openhs/firefox-ubuntu/ as I have mentioned in
previous mail.  It's what I've made for myself and published.
4. Follow instructions for your chosen image how to run it.  For the
openhs/firefox-ubuntu image above, the following command should start
Firefox:

$ docker run --name firefox -e DISPLAY=$DISPLAY --device /dev/snd \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-v $XAUTHORITY:/tmp/.host_Xauthority:ro -dti openhs/firefox-ubuntu

What it does is: from image openhs/firefox-ubuntu it creates container
named 'firefox' and starts it.  (The image is downloaded automatically.)

This long command is needed only for the first time.  Next time you can
start it with:

$ docker start firefox

Some basic docker commands:

$ docker ps [-a] - lists running containers [or all containers]
$ docker images - lists images
$ docker rm [container_name] - removes container
$ docker rmi [image_name] - removes image

The official documentation is pretty good:
https://docs.docker.com/get-started/

Regards,
Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] [OT] Being Facebook member: How to anon?

2017-10-23 Thread Róbert Čerňanský
On Sun, 22 Oct 2017 13:58:35 +
"J. Roeleveld" <jo...@antarean.org> wrote:

> On 22 October 2017 10:50:01 GMT+02:00, tu...@posteo.de wrote:
> >Hi,
> >
> >for its invasive nature and its data gathering I really dont like
> >facebook. 
> >
> >And now it seems that I cant with out it:
> >There is a HUGE user group for the Creality CR-10 3D printer there
> >and veryone and everything is referencing it.
> >
> >My question is:
> >Are there ways (and which ones) to become member of facebook
> >just to read and write to this user grout (like a mailinglist)
> >and keep the impact on privacy an personal fingerprinting as
> >small as ever possible?
> >
> >Every help is very appreciated!
> >Cheers
> >Meino  
> 
> Run a dedicated browser in a dedicated user account. This should
> isolate any tracking cookies from going into your main account.

You could also run Firefox in a Docker container
(https://hub.docker.com/r/openhs/firefox-ubuntu/).  That way you will
be isolated and -- with this particular container -- you will be seen as
Ubuntu user (which is not so unique as Gentoo).

Regards,
Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] no more googleearth in portage

2017-09-27 Thread Róbert Čerňanský
On Tue, 26 Sep 2017 09:15:49 +0200
Raffaele Belardi <raffaele.bela...@st.com> wrote:

> Urs Schütz wrote:
> > On 09/20/17 07:55, Raffaele Belardi wrote:  
> >> I suppose it's due to Google's choice to support only Chrome,
> >> although I missed the Gentoo news bit if there was one.
> >>
> >> For Android there is the really good Open Street Map application,
> >> are there any desktop alternatives in Portage for non-Chrome
> >> users? I know OSM has a web interface but I'd prefer a standalone
> >> application. 
> > 
> > Maybe  sci-geosciences/viking ?
> > Try to change the map from MapQuest to MapNik to get a first
> > impression. 
> 
> Thanks to all for replies, I think I'll start with viking, qgis looks
> more complicated for a beginner. But as always (mapquest vs mapnik?
> why there are two? why should  choose?) when you scrape the surface
> complexity immediately emerges so it will take some time and study.

kde-apps/marble is good.  But unlike OsmAnd for Android it only uses
online, pre-rendered maps (they are cached to disk though).

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] depclean missing packages

2017-01-05 Thread Róbert Čerňanský
On Wed, 4 Jan 2017 21:32:50 +0100
Arve Barsnes <arve.bars...@gmail.com> wrote:

> On 4 January 2017 at 21:25, Daniel Frey <djqf...@gmail.com> wrote:
> 
> > I always do `emerge -uDN world`. Which is --update --deep
> > --newuse... I've just never had that happen with depclean before.
> > Odd, no?
> >
> > I usually do:
> >
> > `emerge -uDN world`
> >
> > and
> >
> > `emerge -ac` to depclean afterwards.
> >
> > As I use --deep all the time, I'm still confused as to why needed
> > packages weren't installed.
> >
> >  
> I've also always used --deep, but I've seen this many times. I've
> recently started using "--with-bdeps=y" as well, and I don't think
> I've seen this happen since then, so I'm guessing binary deps are the
> culprit.

I think so too.  Since Dan does not use --with-bdeps this is what
might happen:

'qtdeclarative', 'qtxml' and 'qtcore' were updated from 5.6.1 to a
higher version.  However 'linguist-tools', being only a build
dependency, was not updated and remains at version 5.6.1.  Since
'linguist-tools-5.6.1' depends on 'qtdeclarative-5.6.1', 'qtxml-5.6.1'
and 'qtcore-5.6.1' --depclean resolves those as missing packages.

So as Arve is saying - using --with-bdeps should prevent this.  There
are two ways how to use it:

- As 'emerge -uDN --with-bdeps=y world' - in this case build
dependencies will be updated as well.

- As 'emerge -ac --with-bdeps=n' - in this case build dependencies
will be depcleaned (removed).  Notice there is 'n' in --with-bdeps.

I prefer second option since this leaves a clean system where only
packages required to run it are installed.  Disadvantage is that upon
next update the build dependencies are emerged again, so it takes more
time to update the system.

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



[gentoo-user] Managing network interface in a namespace

2016-11-18 Thread Róbert Čerňanský
Hi all,

I would like to bring up and configure a network interface which
exists in a (network) namespace.  I would like to use standard OpenRC
'net.' init script to do so.

Since the interface (veth1) exists only in a namespace (myns) I need
that the init script would be executed within that namespace:

  ip netns exec myns /etc/init.d/net.veth1 start|stop|...

While I can do that manually as above the automatic run (during boot)
is however executed in the global namespace.

My current, not very good approach is that I've created a wrapper around
runscript and created a copy of /etc/init.d/net.lo
to /etc/init.d/net.veth1 where I've changed the first line to that
wrapper.  It does work when invoking the script manually but it is not
executed by OpenRC at all during boot or when I type 'rc' even if
net.veth1 is included in default runlevel.  Also, to have a copy of init
script is not very nice.  Therefore I'm seeking other solutions.  Is
there any way to tell OpenRC that it should configure an interface
in a specific namespace?

The wrapper script for curious:

  #!/bin/sh
  namespace=${1}
  shift
  /bin/ip netns exec ${namespace} /sbin/runscript ${@}

First line of /etc/init.d/net.veth1 then looks like this:

  #!/usr/local/bin/runscript-netns myns

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] Call for opinions and/or use cases regarding games.eclass

2016-07-01 Thread Róbert Čerňanský
On Fri, 1 Jul 2016 01:27:37 -0700
Daniel Campbell <z...@gentoo.org> wrote:

> 1. Do you take advantage of games.eclass features, including
> restricting game access to a given group and installing games outside
> of /usr and/or on different media?

I'm not sure what are all the features it provides.  But I do like that
(at least) some games share scores between users (in /var/games). It is
"nice to have" feature.

Also it is great advantage that emerge can ask for original game
installation media.  I'd feel more sorry for this one to be gone.

> 3. If yes, _what is your use case_? Which features are important to
> your use case wrt games and what can Gentoo do to improve that?

More games. ;-)

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] Re: Adobe flash warning and tree

2016-01-12 Thread Róbert Čerňanský
On Tue, 12 Jan 2016 19:53:41 +0200
Nikos Chantziaras <rea...@gmail.com> wrote:

> Adobe does not update Flash for Linux themselves anymore. They gave
> that to Google. As a side effect, the only way to get the latest
> Flash version on Linux, is to use Google Chrome.

Adobe still provides security fixes for version 11.2 though.  From
https://get.adobe.com/flashplayer/ page:

"Adobe Flash Player 11.2 will be the last version to target Linux as a
supported platform. Adobe will continue to provide security backports
to Flash Player 11.2 for Linux."

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] Splitting large audio files into tracks

2016-01-03 Thread Róbert Čerňanský
On Sat, 2 Jan 2016 23:09:27 +0200
Alan McKinnon <alan.mckin...@gmail.com> wrote:

> Hi all,
> 
> I have quite a few large audio rip files that need to be split up into
> their respective tracks. They were wrongly ripped back when and the
> original CDs aren't available anymore.
> 
> I very seldom work with audio files directly, so I'm mostly clueless
> in this area and it's easier to ask folks who do this often what
> packages out there are good at it.
> 
> Bonus points for packages that use musicbrainz or similar

You do not mention whether you by chance have CUE or TOC files that
contains time points at which the big files should be split.  If yes
then Flacon (media-sound/flacon) can be used to split the file
according a CUE file.  It has also CDDB support (even though I don't
remember using it and in fact it shows an error popup when I've tried
it now) or you can edit metadata manually.  If you prefer command line
then media-sound/shntool contains command shnsplit:

  $ shnsplit -f .cue 

For more mature metadata editing I recommend media-sound/easytag.

If you do not have the CUE file then Ardour (media-sound/ardour) can be
used to create it.  You would have to manually mark beginning of each
track and then export.  (It requires Jack server so it is not a
lightweight solution but I like working with it.)

Also good old media-sound/gramofile should be able split files
automatically, but I have no experience with it.

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] OT:: free pop3 mail box?

2015-10-11 Thread Róbert Čerňanský
On Wed, 7 Oct 2015 16:07:47 + (UTC)
James <wirel...@tampabay.rr.com> wrote:

> I do not want gmail or any other big (brother) organization email.
> I just need a simple pop3 (small) email box, in case my
> (underconstruction) email server is not happy. Low traffic.
> Temporary is fine too.

Try vfemail.net, and their free Copper Account.  The only downside I've
noticed that the outgoing queue could be slower sometimes.

Btw, they have interesting privacy features.

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] Re: This nite's switch to full multilib

2015-04-02 Thread Róbert Čerňanský
On Thu, 2 Apr 2015 09:41:10 +0100
Neil Bothwick n...@digimed.co.uk wrote:

 On Thu, 2 Apr 2015 07:21:01 +0200, Róbert Čerňanský wrote:
 
  Besides there is such database now - it is your (abused)
  package.use! You have to manually add entries to it and I do not
  know any database slower than human typing to a text file ;-)
  (There is autounmask option of course but then you allow portage to
  mess with your files which is not a good thing.)
 
 Portage doesn't change your package.use file, it creates a new one
 using the standard CONFIG_PROTECT process. Then you use etc-update or
 similar to view and verify the changes.

What I am trying to tell is that portage manages its stuff (USE
dependencies), through you, in your configuration files.  It is nice
that it does not overwrite them directly without asking ;-) but in the
end the content ends up there one way or other.  Portage should have
its own internal database for USE deps and manage it like it manages db
of standard package dependencies.

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] This nite's switch to full multilib

2015-04-01 Thread Róbert Čerňanský
On Wed, 1 Apr 2015 14:05:28 -0400
Rich Freeman ri...@gentoo.org wrote:

 On Wed, Apr 1, 2015 at 1:50 PM, Róbert Čerňanský
 ope...@tightmail.com wrote:
  On Mon, 30 Mar 2015 11:31:15 +0100
  Neil Bothwick n...@digimed.co.uk wrote:
 
  On Mon, 30 Mar 2015 12:02:23 +0200, Stefan G. Weichinger wrote:
 
Hmm ... I don't think setting abi_x86_32 globally is
necessary, unless you want to have 32bit libs for ALL
packages that these exist for, whether you use them or not.
I mean that for Skype you have no alternative at present, but
if you don't use Skype then you would not need the 32bit
versions of Skype's dependencies.  If my understanding is
wrong, Alan will soon put me right on this.  :-)
   
   
You understand it just fine.
  
   OK, then so why do I have to edit files to tell the system to USE
   this and that after the system tells me it needs that ... ?
  
   Why isn't this taken care of within portage itself?
 
  Because this is Gentoo and you are in charge of portage, not the
  other way around. Portage goes as far as it can without trampling
  over your choices by saying these are the changes I need you to
  make, press Y to accept them. It's not like you have to add one
  atom to package.use manually, run emerge again, add another etc.
 
  With --pretend and --ask options you would still be in charge.
  Execute 'emerge -pv foo', if you do not like the changes then tweak
  USE settings in package.use.  I would not feel any less in control
  if I could see changes that portage wants to do and could force my
  USE settings in package.use.
 
 
 Honestly, I tend to agree with this approach.
 
 Imagine if when you typed emerge kde-meta the emerge program told
 you that you need to add the following 400 lines to your package
 installation list.  Then we create a install-list-cleanup program that
 looks at your world file and determines what stuff you have in your
 package installation list that aren't needed any longer.

Very good analogy.  Except that for current USE flag situation we do not
and even can not provide such install-list-cleanup program.  There is
no way to tell whether an entry in package.use is a user choice or it
is there just to satisfy some dependency.  Therefore no program can
tell if it can be cleaned or not.  Which is another manifestation why
current approach is fundamentally wrong.

 When it comes to what packages are installed the design is to have the
 user stick the stuff they really care about in the world file and let
 the PM figure out how to make it happen.  You can override masks in
 config files, but the general intent is that you don't have to do this
 most of the time.  Why not make USE flags work the same way?
 
 Why can't emerge steam figure out that half the system needs to be
 rebuilt with 32-bit support, and then later emerge --depclean steam
 figures out that half the system can be rebuilt without 32-bit
 support?  You could still specify global or package.use settings when
 you have specific preferences, of course.  However, you wouldn't have
 to do that just to satisfy dependencies unless there is a blocker that
 portage can't figure out itself.  That is also analogous to what
 happens when virtuals today - sometimes you have to manually
 uninstall/install something to get portage past a block, and maybe
 that will be needed with USE flags too.
 
 I think we've just gotten into a mode where we automate user
 configuration instead of eliminating the need for it.
 


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] Re: This nite's switch to full multilib

2015-04-01 Thread Róbert Čerňanský
On Thu, 02 Apr 2015 06:42:49 +0200
Sebastian Beßler sebast...@darkmetatron.de wrote:

 On 01.04.2015 19:28, Róbert Čerňanský wrote:
 
  Big advantage of automatic deps over --autounmask is that auto deps
  would not mess with user configuration files in /etc.  Changed USE
  flags would be stored internally by portage.
 
 
 Ok, but then you need a database (another file in /etc/portage/) for
 all of the active use flags that are set by the installed packages.
 That or every emerge has to scan and parse every ebuild of all
 installed packages, adding a high delay.

Of course you'll need a database (but not in /etc!).  It might
be /var/db/pkg or separate one, that is an implementation detail which
I am not able to tell without knowledge of portage implementation.

Besides there is such database now - it is your (abused) package.use!
You have to manually add entries to it and I do not know any database
slower than human typing to a text file ;-) (There is autounmask option
of course but then you allow portage to mess with your files which is
not a good thing.)

Robert 


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] Re: This nite's switch to full multilib

2015-04-01 Thread Róbert Čerňanský
On Mon, 30 Mar 2015 13:14:55 +0200
Alan McKinnon alan.mckin...@gmail.com wrote:

 On 30/03/2015 12:42, Holger Hoffstätte wrote:
  On Mon, 30 Mar 2015 12:14:29 +0200, Alan McKinnon wrote:
  
  OK, then so why do I have to edit files to tell the system to USE
  this and that after the system tells me it needs that ... ?
 
  Why isn't this taken care of within portage itself?
 
  I don't *want* to decide 32bit or not ... (I like that I
  *can* ...)
 
  I want a (mostly) stable and current linux system with the
  necessary choices done by the maintainers ... if Skype needs
  it ... ok, then make that a dependency/requirement somewhere ...
  but why force me to set that (for so many packages) ?
[...]
  There is no good reason whatsoever why portage shouldn't be able to
  treat this like a transitive required USE flag requirement,
  percolating through all libs from the toplevel requirement's
  dependency tree.
 
 Correct, there is no good reason why portage *can't* do that.
 There is a very good reason why portage *won't* do that, it is not the
 gentoo way and it goes against gentoo's social contract.
 
 Portage does not override your choices, and it certainly does not
 allow one single ebuild to automagically change the behaviour of
 multiple other ebuilds. The correct way to bring about changes in
 behaviour is to add your global choices to make.conf (which is
 outside the control of the tree), or to add your explicit changes to
 package.*

It depends what you see as a user choice.  In my opinion by writing
'emerge skype' to the console the user clearly states his choice to
install skype.  If he actually cares what that would mean for
his system he can use --pretend or --ask option together with --verbose
and tweak USE flags if and only if he does not like it.  So user has
still full control over his system.

 Portage's default behaviour when confronted with incompatible settings
 has always been to detect them, and print the output to the console
 telling you what to do. Now, there is a helper function that you as

We could declare USE settings e.g. in make.conf as overridable by
automatic USE dependencies so portage would not see it as incompatible.
On the other hand package.use could be non-overridable thus allowing
the user to have control over portage choices.

 the system owner can enable if you trust portage and the tree to
 always make the correct decision - autounmask. You can run it with -p

Big advantage of automatic deps over --autounmask is that auto deps
would not mess with user configuration files in /etc.  Changed USE
flags would be stored internally by portage.

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] This nite's switch to full multilib

2015-04-01 Thread Róbert Čerňanský
On Mon, 30 Mar 2015 11:31:15 +0100
Neil Bothwick n...@digimed.co.uk wrote:

 On Mon, 30 Mar 2015 12:02:23 +0200, Stefan G. Weichinger wrote:
 
   Hmm ... I don't think setting abi_x86_32 globally is necessary,
   unless you want to have 32bit libs for ALL packages that these
   exist for, whether you use them or not.  I mean that for Skype
   you have no alternative at present, but if you don't use Skype
   then you would not need the 32bit versions of Skype's
   dependencies.  If my understanding is wrong, Alan will soon put
   me right on this.  :-)  
   
   
   You understand it just fine.  
  
  OK, then so why do I have to edit files to tell the system to USE
  this and that after the system tells me it needs that ... ?
  
  Why isn't this taken care of within portage itself?
 
 Because this is Gentoo and you are in charge of portage, not the other
 way around. Portage goes as far as it can without trampling over your
 choices by saying these are the changes I need you to make, press Y
 to accept them. It's not like you have to add one atom to package.use
 manually, run emerge again, add another etc.

With --pretend and --ask options you would still be in charge.  Execute
'emerge -pv foo', if you do not like the changes then tweak USE
settings in package.use.  I would not feel any less in control if I
could see changes that portage wants to do and could force my USE
settings in package.use.

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] emerge default config

2015-01-24 Thread Róbert Čerňanský
On Fri, 23 Jan 2015 18:30:52 -0500
Rich Freeman ri...@gentoo.org wrote:

 On Fri, Jan 23, 2015 at 5:45 PM, shawn wilson ag4ve...@gmail.com
 wrote:
  Is there a way to have default config lines that emerge updates
  won't touch?
 
 
 I'd be interested in hearing about alternatives, but I switched to
 cfg-update from dispatch-conf and such because it does automatic 3-way
 merging.  It is pretty good about detecting stuff that you customized
 and auto-merging those lines as long as the upstream file doesn't
 change.  If it does, then you get a 3-way merge in meld or another
 tool to do the merge.  95% of the time it just automerges all config
 file updates without any interaction.

dispatch-conf does automatic 3-way merge too, I guess.  At least it
offers me pre-merged file (that I have modified) from time to time
which I can just confirm (right there in the console).  But somehow it
does that less often than I think it could and most of the time offers
me just diffs.  Although it is not that bad since there is not much of
them (it does lot of full automatic merges without even asking for
confirmation), there are some files for which I get diffs over and over
again.  sshd_config is one of them, same as the OP.

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] Re: Systemd as drop-in replacement for udev?

2013-12-07 Thread Róbert Čerňanský
On Sat, 07 Dec 2013 01:43:37 -0500
Jonathan Callen jcal...@gentoo.org wrote:

 Udev as installed by sys-fs/udev is *exactly* the same as udev
 installed by sys-apps/systemd, except that the latter installs more
 files.  It is very much possible to switch to systemd as your udev
 provider without using the rest of systemd.

That's what I have suspected but I did not find anybody that has
experience with such setup.  If anyone tried it, comments are welcomed.

In the meantime I have settled with lightdm instead of gdm and stay
with sys-fs/udev.

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] Is there any way out of this...?

2013-12-07 Thread Róbert Čerňanský
On Sat, 7 Dec 2013 09:40:13 +0100
Tom Wijsman tom...@gentoo.org wrote:

 On Sat, 7 Dec 2013 07:32:09 +0100
 meino.cra...@gmx.de wrote:
 
  [blocks B  ] sys-fs/udev (sys-fs/udev is blocking
  sys-apps/systemd-208-r2)
 
 Pick one or the other; you can use sys-apps/systemd without running or
 migrating to it if you want just the sys-fs/udev portion of it.

That is actually what I have asked just a few days ago in thread
Systemd as drop-in replacement for udev? and here I have another
answer. :-)

   * Error: The above package list contains packages which cannot be
   * installed at the same time on the same system.
  
(sys-apps/systemd-208-r2::gentoo, ebuild scheduled for merge)
  pulled in by sys-apps/systemd required by
  (gnome-base/gnome-settings-daemon-3.8.6.1::gentoo, ebuild scheduled
  for merge)
  =sys-apps/systemd-207 required by
  (sys-apps/gentoo-systemd-integration-2::gentoo, ebuild
  scheduled for merge)
  
(sys-fs/udev-208::gentoo, installed) pulled in by
  sys-fs/udev required by @selected
  
  =sys-fs/udev-208[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,gudev?,introspection?,kmod?,selinux?,static-libs?]
  (=sys-fs/udev-208[abi_x86_64(-),gudev,kmod]) required by
  (virtual/udev-208::gentoo, installed)
 
 This is the actual problem, which I have already covered; just enable
 the openrc-force USE flag on =gnome-base/gnome-settings-daemon-3.8.6.1
 or alternatively mask =gnome-base/gnome-settings-daemon-3.8.
 
 You need to put -openrc-force in /etc/portage/profile/use.mask to
 start with and then you can toggle it as you see fit. As you don't
 intend to run GNOME as far as I understood, this USE flag doesn't
 need to be masked for you.

What about the message in gnome-settings-daemon ebuild?

gnome-settings-daemon needs Systemd to be *running* for working
properly. ...

Also, Canek in the thread I have mentioned wrote:

The GNOME stuff that requires systemd will not work under OpenRC from
3.10 on, you could get strange fails with gdm and
gnome-settings-daemon.

So *I think* for the long run, if not using GNOME, it could be better to
get rid GNOME applications (in my case it was just GDM) and be free to
choose either of systemd, udev or eudev OR fully migrate to systemd
(and be able to use GNOME apps).

Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



[gentoo-user] Systemd as drop-in replacement for udev?

2013-12-05 Thread Róbert Čerňanský
Hello all,

I am currently updating my system and Portage wants to replace udev
(204) with systemd (208).  My question is (hopefully) simple:

Can I use systemd as drop-in replacement for udev?  In other words, can
I pretend that systemd is udev and continue using OpenRC as with udev
itself?  I would then apply just udev 204 to 208 update instructions
(http://wiki.gentoo.org/wiki/Udev/upgrade).

I am using WindowMaker and systemd was pulled in by
gnome-settings-daemon which in turn was pulled in by gdm.  I would like
to stick with gdm.

Usually I feel pretty comfortable replacing one package with another if
Portage wants so (e.g. because they block each other) but in this case I
want to be extra careful.  I did not find a clear answer to this.
Usually people either migrate fully to systemd (replacing openrc) or
stays with udev + openrc.

Regards,
Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] Systemd as drop-in replacement for udev?

2013-12-05 Thread Róbert Čerňanský
On Thu, 5 Dec 2013 15:18:54 -0600
Canek Peláez Valdés can...@gmail.com wrote:

 On Thu, Dec 5, 2013 at 2:36 PM, Róbert Čerňanský
 ope...@tightmail.com wrote:
  Hello all,
 
  I am currently updating my system and Portage wants to replace udev
  (204) with systemd (208).  My question is (hopefully) simple:
 
  Can I use systemd as drop-in replacement for udev?  In other words,
  can I pretend that systemd is udev and continue using OpenRC as
  with udev itself?  I would then apply just udev 204 to 208 update
  instructions (http://wiki.gentoo.org/wiki/Udev/upgrade).
 
  I am using WindowMaker and systemd was pulled in by
  gnome-settings-daemon which in turn was pulled in by gdm.  I would
  like to stick with gdm.
 
 The GNOME stuff that requires systemd will not work under OpenRC from
 3.10 on, you could get strange fails with gdm and
 gnome-settings-daemon. If it's gdm-3.8, then I think you can use
 systemd as udev replacement together with OpenRC, and I believe some
 people did it successfully.

Thanks.  I have enabled openrc-force use flag found this in
gnome-settings-daemon emerge log, which confirms what you have said:

gnome-settings-daemon needs Systemd to be *running* for working
properly. Please follow the this guide to migrate:
http://wiki.gentoo.org/wiki/Systemd
You are enabling 'openrc-force' USE flag to skip systemd requirement,
this can lead to unexpected problems and is not supported neither by
upstream neither by Gnome Gentoo maintainers. If you suffer any problem,
you will need to disable this USE flag system wide and retest before
opening any bug report.

So the it is clear to me now.

I will try openrc-force as temporal solution until I'll find a new
display manager and give heart breaking good by to GDM.

Regards,
Robert


-- 
Róbert Čerňanský
E-mail: ope...@tightmail.com
Jabber: h...@jabber.sk



Re: [gentoo-user] Partitioning strategy...?

2011-11-27 Thread Róbert Čerňanský
On Sun, 27 Nov 2011 00:01:07 +0100
Alex Schuster wo...@wonkology.org wrote:

   pvcreate /dev/sda5
   vgcreate myvg /dev/sda5
   lvcreate -n usr -L 10G myvg
   mke2fs -j /dev/myvg/usr
 
 Of course, just using /dev/sda5 for /usr is simpler. But what if this
 turns out to be too small? With so many partitions I would think this
 is very likely to happen sooner or later. With LVM, all you'd have to
 do is:
 
   lvresize -L +1G /dev/myvg/usr
   resize2fs /dev/myvg/usr

Here I do not understand from where this +1G is taken?  Don't you have
to make something smaller by 1G first?

Robert


-- 
Róbert Čerňanský
E-mail: hslis...@zoznam.sk
Jabber: h...@jabber.sk



Re: [gentoo-user] ImageMagick

2011-11-27 Thread Róbert Čerňanský
On Sun, 27 Nov 2011 22:28:35 +0100
Michael Schreckenbauer grim...@gmx.de wrote:

 Am Sonntag, 27. November 2011, 17:04:24 schrieb Colleen Beamer:
  On 11/27/11 15:18, Michael Schreckenbauer wrote:
   Hi Colleen,
   
   Am Sonntag, 27. November 2011, 16:08:41 schrieb Colleen Beamer:
   Hi all,
   
   I used to use ImageMagick to quickly resize images and convert
   from one
   format to another (jpg to png, for example). ImageMagick is
   installed on my system (installed as requirement of something
   else), but I'm darned if I can find an executable to run the
   program. There used to be
   one in /usr/bin on my old system.
   Does anyone have any experience with this?
   
   yes :) It's /usr/bin/convert
  
  This isn't quite what I wanted - you have to add options to the
  command.  I was hoping to get the graphical interface that I had
  before.  Please don't tell me they took a great little program and
  screwed it up!  :-)
 
 is /usr/bin/display the program you were looking for?
 It supports a subset of ImageMagick's functionality.

There was also another GUI with commands like on this screenshot:
http://tuxradar.com/files/imagemagick-1.png but I do not remember how
to launch it. :-)

Robert



-- 
Róbert Čerňanský
E-mail: hslis...@zoznam.sk
Jabber: h...@jabber.sk



Re: [gentoo-user] Re: emacs font problem

2010-07-13 Thread Róbert Čerňanský
On Mon, 12 Jul 2010 18:11:17 + (UTC)
Grant Edwards grant.b.edwa...@gmail.com wrote:

 On 2010-07-12, Allan Gottlieb gottl...@nyu.edu wrote:
 
  You don't need to have DejaVu, but I would advise getting either
  DejaVu or bitstream vera.
 
 I guess I can install more fonts, but I was hoping I could point emacs
 at one of the rougly 4000 I've already got.

You can.  I'm not sure why is that but it seems that your emacs is not
able to find variable pitch font - About emacs screen and tooltips
are using such font; normal edit buffers uses a fixed width font.  To
be more precise, they are using 'variable-pitch' face so you have to
set font for that face.  You can do that with 'M-x customize-face
RET variable-pitch RET'.  This displays a buffer where you can set
the font.

Note that 'customize-face' command offers you the face that is used to
display a character on which the cursor is.  So if you place the
cursor on one of the empty boxes then 'M-x customize-face RET' should
automatically offer you the 'variable-pitch' face.

Regards,
Robert


-- 
Robert Cernansky
E-mail: hslis...@zoznam.sk
Jabber: h...@jabber.sk