["solved"] Re: [gentoo-user] NetworkManager service is in inactive state

2022-12-09 Thread pat

On 2022-11-25 13:08, p...@xvalheru.org wrote:

Hi,

after packages full update NetworkManager is in inactive state
(rc-status). The NM version is 1.40.2. I've search web but without
luck. Can someone give me a hint how to fix it?

Thanks

Pat


Hi,

Sorry for this post. It turns out that it was caused by slowly dying 
wifi router. It was dying for 3 weeks; I was able to see and use the 
network from Ubuntu laptop but not from Gentoo one, thus I've panicked. 
Now the router is finally dead.


Pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] NetworkManager service is in inactive state

2022-11-25 Thread pat

Hi,

after packages full update NetworkManager is in inactive state 
(rc-status). The NM version is 1.40.2. I've search web but without luck. 
Can someone give me a hint how to fix it?


Thanks

Pat


Freehosting PIPNI - http://www.pipni.cz/




Re: [gentoo-user] Re: failed to compile seamonkey

2021-12-20 Thread pat

On 2021-12-17 13:22, nunojsi...@ist.utl.pt wrote:

On 2021-12-16, p...@xvalheru.org wrote:


Hi all,

I've failed to compile seamonkey-2.53.9.1-r1. I don't know what's
wrong. Please point me to the solution.


Possibly an incompatible rust version, see
https://bugs.gentoo.org/show_bug.cgi?id=824066


emerge --info '=www-client/seamonkey-2.53.9.1-r1::gentoo'

[...]

dev-lang/rust: 1.56.1::gentoo
dev-lang/rust-bin: 1.53.0::gentoo

[...]

Of these two versions, it's trying to use 1.56.1, if I'm reading your
build log correctly.


Thanks, it helped.

Pat


Freehosting PIPNI - http://www.pipni.cz/




["SOLVED"] Re: [gentoo-user] Re: [OT] suggest SSD partitioning

2021-12-12 Thread pat

On 2021-12-10 20:51, Laurence Perkins wrote:



-Original Message-
From: Wols Lists 
Sent: Friday, December 10, 2021 11:25 AM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] Re: [OT] suggest SSD partitioning

On 10/12/2021 15:16, Nikos Chantziaras wrote:
> If you can't do that, then it doesn't matter much whether you use a
> swap file or partition. On an SSD, both should perform about the same.
> On an HDD, swap files could run into fragmentation issues if you
> resize them or create them incorrectly. On an SSD, fragmentation
> doesn't have much of an impact. A swap file gives you the option to
> resize it later on without having to do filesystem and partition
> resizing, so I'd say a swap file sounds better.

It very much does matter whether you use a swap file or partition in 
practice. I've just been reading right now a discussion about systemd 
logging and hibernation, and how btrfs handles swap files. It sounds 
nasty.


If you have a swap file, linux creates an immutable file then uses 
direct disk i/o. There's a LOT of unnecessary crap there that could 
go wrong. Just avoid all that trouble and give yourself a decent swap 
partition. (And if you're running btrfs, a lot of this sounds 
experimental and dangerous ...)


Cheers,
Wol




For BTRFS I usually do one partition for the whole system and one
partition for swap and then use subvolumes for /home and anything else
I want to keep separate in case of reinstall.

Since BTRFS is a storage pool model, everything else can dynamically
resize similarly to using LVM.

Swap files in general aren't as reliable if one is planning to
hibernate the system.  Swap files on BTRFS should go through a loop
device unless you set them up really carefully.

There's no reason you can't have both swap files and a swap partition.
 I occasionally end up dynamically adding more when I get a program
that uses a terabyte of virtual but very little resident at a time or
something.

Swap onto zram devices can also be a useful tool if the data being
swapped is more highly compressible than zswap will take advantage of.

LMP


Thanks to all for hints. I've created a swap partition.

Pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] [OT] suggest SSD partitioning

2021-12-09 Thread pat

Hi,

I've bought a new SSD and I want to install gentoo on it. I'd like to 
heare some suggestions how to partition it. I'm planning small /boot 
partition, / partition and /data (including home) partition. But I'm not 
sure if I should create a swap partition or swap to file. I'm daily 
hibernating the system to disk. And what should be the size od the swap 
same as RAM or bigger?


Thanks

Pat


Freehosting PIPNI - http://www.pipni.cz/




Re: [SOLVED] [gentoo-user] how to configure two net interfaces (one static and other dynamic)

2021-08-27 Thread pat

On 2021-08-27 18:49, Michael wrote:

On Friday, 27 August 2021 17:39:27 BST Matt Connell (Gmail) wrote:

On Fri, 2021-08-27 at 16:52 +0200, p...@xvalheru.org wrote:
> Hello,
>
> Installed Gentoo into VirtualBox and I want to have two network
> interfaces (on different networks with IP ranges) one with static IP and
> another with IP retrieved by DHCP. Currenlty, I do have the DHCP, but
> failing to setup additional static IP. Please, could someone point me to
> what to do?

Here's where I would start:
https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Networking

The handbook is good for more than just the installation process, I've
learned over the years.


Also have a look at:

https://wiki.gentoo.org/wiki/Handbook:AMD64/Networking/Modular

which explains how to configure your /etc/conf.d/net file.  However, 
most

helpful is the well commented netifrc example file itself:

/usr/share/doc/netifrc-0.7.3/net.example.bz2

In there you can see how to configure with a static IP or dhcp each 
interface
in turn.  Copy that to your /etc/conf.d/net and edit it as you see fit. 
 Ask

if you get stuck on anything specific.


This works for me (/etc/conf.d/net):
dhcpcd_enp0s3=""
config_enp0s8="192.168.56.13/24"

Thanks

Pat



Freehosting PIPNI - http://www.pipni.cz/




Re: [gentoo-user] how to configure two net interfaces (one static and other dynamic)

2021-08-27 Thread pat

On 2021-08-27 18:49, Michael wrote:

On Friday, 27 August 2021 17:39:27 BST Matt Connell (Gmail) wrote:

On Fri, 2021-08-27 at 16:52 +0200, p...@xvalheru.org wrote:
> Hello,
>
> Installed Gentoo into VirtualBox and I want to have two network
> interfaces (on different networks with IP ranges) one with static IP and
> another with IP retrieved by DHCP. Currenlty, I do have the DHCP, but
> failing to setup additional static IP. Please, could someone point me to
> what to do?

Here's where I would start:
https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Networking

The handbook is good for more than just the installation process, I've
learned over the years.


Also have a look at:

https://wiki.gentoo.org/wiki/Handbook:AMD64/Networking/Modular

which explains how to configure your /etc/conf.d/net file.  However, 
most

helpful is the well commented netifrc example file itself:

/usr/share/doc/netifrc-0.7.3/net.example.bz2

In there you can see how to configure with a static IP or dhcp each 
interface
in turn.  Copy that to your /etc/conf.d/net and edit it as you see fit. 
 Ask

if you get stuck on anything specific.


Thanks for help.

Pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] how to configure two net interfaces (one static and other dynamic)

2021-08-27 Thread pat

Hello,

Installed Gentoo into VirtualBox and I want to have two network 
interfaces (on different networks with IP ranges) one with static IP and 
another with IP retrieved by DHCP. Currenlty, I do have the DHCP, but 
failing to setup additional static IP. Please, could someone point me to 
what to do?


Thanks

Pat


Freehosting PIPNI - http://www.pipni.cz/




Re: [gentoo-user] updating an old system

2021-08-23 Thread pat

On 2021-08-22 21:07, Jack wrote:

On 2021.08.22 14:54, p...@xvalheru.org wrote:

Hi,

I've downloaded gentoo VirtualBox image from osboxes.org. Trying to
update, but getting this error:
**
 emerge --oneshot sys-apps/portage

 * IMPORTANT: 17 news items need reading for repository 'gentoo'.
 * Use eselect news read to view new items.

Calculating dependencies... done!
Traceback (most recent call last):
  File "/usr/lib/python-exec/python3.6/emerge", line 53, in 
retval = emerge_main()
  File "/usr/lib64/python3.6/site-packages/_emerge/main.py", line
1289, in emerge_main
return run_action(emerge_config)
  File "/usr/lib64/python3.6/site-packages/_emerge/actions.py", line
3330, in run_action
retval = action_build(emerge_config, spinner=spinner)
  File "/usr/lib64/python3.6/site-packages/_emerge/actions.py", line
340, in action_build
settings, trees, myopts, myparams, myaction, myfiles, spinner)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
9767, in backtrack_depgraph
myaction, myfiles, spinner)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
9804, in _backtrack_depgraph
success, favorites = mydepgraph.select_files(myfiles)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
3955, in select_files
return self._select_files(args)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
4298, in _select_files
return self._resolve(myfavorites)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
4449, in _resolve
if not self._create_graph():
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
2694, in _create_graph
allow_unsatisfied=allow_unsatisfied):
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
3449, in _add_pkg_deps
allow_unsatisfied):
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
3465, in _add_pkg_dep_string
allow_unsatisfied)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
3545, in _wrapped_add_pkg_dep_string
pkg, dep_priority, root_config, selected_atoms[pkg]):
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
3744, in _minimize_children
root_config.root, atom, parent=parent)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
5727, in _select_pkg_highest_available
ret = self._select_pkg_highest_available_imp(root, atom,
onlydeps=onlydeps, parent=parent)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
5951, in _select_pkg_highest_available_imp
root, atom, onlydeps=onlydeps, parent=parent)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
6255, in _wrapped_select_pkg_highest_available_imp
onlydeps=onlydeps):
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
5645, in _iter_match_pkgs_atom
myrepo=getattr(cpv, 'repo', None))
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
6998, in _pkg
metadata = zip(db_keys, db.aux_get(cpv, db_keys, myrepo=myrepo))
  File
"/usr/lib64/python3.6/site-packages/portage/dbapi/porttree.py", line
614, in aux_get
myrepo=myrepo, loop=loop))
  File
"/usr/lib64/python3.6/site-packages/portage/dbapi/porttree.py", line
702, in async_aux_get
proc.start()
  File
"/usr/lib64/python3.6/site-packages/_emerge/AsynchronousTask.py",
line 30, in start
self._start()
  File
"/usr/lib64/python3.6/site-packages/_emerge/EbuildMetadataPhase.py",
line 59, in _start
self._async_wait()
  File
"/usr/lib64/python3.6/site-packages/_emerge/AbstractPollTask.py",
line 99, in _async_wait
self._unregister()
  File
"/usr/lib64/python3.6/site-packages/_emerge/EbuildMetadataPhase.py",
line 147, in _unregister
self.scheduler.remove_reader(self._files.ebuild)
AttributeError: 'NoneType' object has no attribute 'ebuild'
**

Please, colud someone help?

Thanks

Pat>

Did you do any searching?  Does the suggestion in
https://forums.gentoo.org/viewtopic-t-1100660-start-0.html work for
you?  (I would look for a more recent version than mentioned in that
post, as 3.0.20-r6 is the most recent stable version on my system.)

Jack



Thanks Jack, it works.

Pat


Freehosting PIPNI - http://www.pipni.cz/




Re: [gentoo-user] updating an old system

2021-08-22 Thread pat

On 2021-08-22 21:07, Jack wrote:

On 2021.08.22 14:54, p...@xvalheru.org wrote:

Hi,

I've downloaded gentoo VirtualBox image from osboxes.org. Trying to
update, but getting this error:
**
 emerge --oneshot sys-apps/portage

 * IMPORTANT: 17 news items need reading for repository 'gentoo'.
 * Use eselect news read to view new items.

Calculating dependencies... done!
Traceback (most recent call last):
  File "/usr/lib/python-exec/python3.6/emerge", line 53, in 
retval = emerge_main()
  File "/usr/lib64/python3.6/site-packages/_emerge/main.py", line
1289, in emerge_main
return run_action(emerge_config)
  File "/usr/lib64/python3.6/site-packages/_emerge/actions.py", line
3330, in run_action
retval = action_build(emerge_config, spinner=spinner)
  File "/usr/lib64/python3.6/site-packages/_emerge/actions.py", line
340, in action_build
settings, trees, myopts, myparams, myaction, myfiles, spinner)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
9767, in backtrack_depgraph
myaction, myfiles, spinner)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
9804, in _backtrack_depgraph
success, favorites = mydepgraph.select_files(myfiles)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
3955, in select_files
return self._select_files(args)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
4298, in _select_files
return self._resolve(myfavorites)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
4449, in _resolve
if not self._create_graph():
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
2694, in _create_graph
allow_unsatisfied=allow_unsatisfied):
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
3449, in _add_pkg_deps
allow_unsatisfied):
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
3465, in _add_pkg_dep_string
allow_unsatisfied)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
3545, in _wrapped_add_pkg_dep_string
pkg, dep_priority, root_config, selected_atoms[pkg]):
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
3744, in _minimize_children
root_config.root, atom, parent=parent)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
5727, in _select_pkg_highest_available
ret = self._select_pkg_highest_available_imp(root, atom,
onlydeps=onlydeps, parent=parent)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
5951, in _select_pkg_highest_available_imp
root, atom, onlydeps=onlydeps, parent=parent)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
6255, in _wrapped_select_pkg_highest_available_imp
onlydeps=onlydeps):
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
5645, in _iter_match_pkgs_atom
myrepo=getattr(cpv, 'repo', None))
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line
6998, in _pkg
metadata = zip(db_keys, db.aux_get(cpv, db_keys, myrepo=myrepo))
  File
"/usr/lib64/python3.6/site-packages/portage/dbapi/porttree.py", line
614, in aux_get
myrepo=myrepo, loop=loop))
  File
"/usr/lib64/python3.6/site-packages/portage/dbapi/porttree.py", line
702, in async_aux_get
proc.start()
  File
"/usr/lib64/python3.6/site-packages/_emerge/AsynchronousTask.py",
line 30, in start
self._start()
  File
"/usr/lib64/python3.6/site-packages/_emerge/EbuildMetadataPhase.py",
line 59, in _start
self._async_wait()
  File
"/usr/lib64/python3.6/site-packages/_emerge/AbstractPollTask.py",
line 99, in _async_wait
self._unregister()
  File
"/usr/lib64/python3.6/site-packages/_emerge/EbuildMetadataPhase.py",
line 147, in _unregister
self.scheduler.remove_reader(self._files.ebuild)
AttributeError: 'NoneType' object has no attribute 'ebuild'
**

Please, colud someone help?

Thanks

Pat>

Did you do any searching?  Does the suggestion in
https://forums.gentoo.org/viewtopic-t-1100660-start-0.html work for
you?  (I would look for a more recent version than mentioned in that
post, as 3.0.20-r6 is the most recent stable version on my system.)

Jack



Thanks. Searched, but didn't find :-\

Pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] updating an old system

2021-08-22 Thread pat

Hi,

I've downloaded gentoo VirtualBox image from osboxes.org. Trying to 
update, but getting this error:

**
 emerge --oneshot sys-apps/portage

 * IMPORTANT: 17 news items need reading for repository 'gentoo'.
 * Use eselect news read to view new items.

Calculating dependencies... done!
Traceback (most recent call last):
  File "/usr/lib/python-exec/python3.6/emerge", line 53, in 
retval = emerge_main()
  File "/usr/lib64/python3.6/site-packages/_emerge/main.py", line 1289, 
in emerge_main

return run_action(emerge_config)
  File "/usr/lib64/python3.6/site-packages/_emerge/actions.py", line 
3330, in run_action

retval = action_build(emerge_config, spinner=spinner)
  File "/usr/lib64/python3.6/site-packages/_emerge/actions.py", line 
340, in action_build

settings, trees, myopts, myparams, myaction, myfiles, spinner)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line 
9767, in backtrack_depgraph

myaction, myfiles, spinner)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line 
9804, in _backtrack_depgraph

success, favorites = mydepgraph.select_files(myfiles)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line 
3955, in select_files

return self._select_files(args)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line 
4298, in _select_files

return self._resolve(myfavorites)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line 
4449, in _resolve

if not self._create_graph():
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line 
2694, in _create_graph

allow_unsatisfied=allow_unsatisfied):
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line 
3449, in _add_pkg_deps

allow_unsatisfied):
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line 
3465, in _add_pkg_dep_string

allow_unsatisfied)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line 
3545, in _wrapped_add_pkg_dep_string

pkg, dep_priority, root_config, selected_atoms[pkg]):
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line 
3744, in _minimize_children

root_config.root, atom, parent=parent)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line 
5727, in _select_pkg_highest_available
ret = self._select_pkg_highest_available_imp(root, atom, 
onlydeps=onlydeps, parent=parent)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line 
5951, in _select_pkg_highest_available_imp

root, atom, onlydeps=onlydeps, parent=parent)
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line 
6255, in _wrapped_select_pkg_highest_available_imp

onlydeps=onlydeps):
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line 
5645, in _iter_match_pkgs_atom

myrepo=getattr(cpv, 'repo', None))
  File "/usr/lib64/python3.6/site-packages/_emerge/depgraph.py", line 
6998, in _pkg

metadata = zip(db_keys, db.aux_get(cpv, db_keys, myrepo=myrepo))
  File "/usr/lib64/python3.6/site-packages/portage/dbapi/porttree.py", 
line 614, in aux_get

myrepo=myrepo, loop=loop))
  File "/usr/lib64/python3.6/site-packages/portage/dbapi/porttree.py", 
line 702, in async_aux_get

proc.start()
  File "/usr/lib64/python3.6/site-packages/_emerge/AsynchronousTask.py", 
line 30, in start

self._start()
  File 
"/usr/lib64/python3.6/site-packages/_emerge/EbuildMetadataPhase.py", 
line 59, in _start

self._async_wait()
  File "/usr/lib64/python3.6/site-packages/_emerge/AbstractPollTask.py", 
line 99, in _async_wait

self._unregister()
  File 
"/usr/lib64/python3.6/site-packages/_emerge/EbuildMetadataPhase.py", 
line 147, in _unregister

self.scheduler.remove_reader(self._files.ebuild)
AttributeError: 'NoneType' object has no attribute 'ebuild'
**

Please, colud someone help?

Thanks

Pat


Freehosting PIPNI - http://www.pipni.cz/




Re: [gentoo-user] VirtualBox UI

2021-08-21 Thread pat

On 2021-08-21 21:11, tastytea wrote:

On 2021-08-21 20:42+0200 p...@xvalheru.org wrote:


Hi,

I didn't use VirtualBox for a while and I find out that
virtualbox-bin package has dissapeard. So I've installed virtualbox
6.1.22 but there's missing VurtualBox command to tun graphical
management. Is there other UI for VirutalBox?


You need to make sure the headless use-flag is disabled and the qt5
useflag is enabled if you want the GUI.

Kind regards, tastytea


Thanks, qt5 was disabled. It works now.

Pat


Freehosting PIPNI - http://www.pipni.cz/




Re: [gentoo-user] VirtualBox UI

2021-08-21 Thread pat

On 2021-08-21 21:03, Jack wrote:

On 8/21/21 14:42, p...@xvalheru.org wrote:

Hi,

I didn't use VirtualBox for a while and I find out that virtualbox-bin 
package has dissapeard. So I've installed virtualbox 6.1.22 but 
there's missing VurtualBox command to tun graphical management. Is 
there other UI for VirutalBox?


Thanks

Pat


You need to be a bit more specific about what you want to do. The
"VirtualBox" command launches the VirtualBox manager.  Are you saying
it didn't get installed for you?  I'm not aware of any other UI for
it.  I don't know if you just made a typo - but the command is not
VurtualBox, it's VirtualBox.

Jack


Yes, the VirtualBox command is missing. "VurtualBox" was typo.

Thanks

Pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] VirtualBox UI

2021-08-21 Thread pat

Hi,

I didn't use VirtualBox for a while and I find out that virtualbox-bin 
package has dissapeard. So I've installed virtualbox 6.1.22 but there's 
missing VurtualBox command to tun graphical management. Is there other 
UI for VirutalBox?


Thanks

Pat


Freehosting PIPNI - http://www.pipni.cz/




SOLVED Re: [gentoo-user] hw problems

2019-07-23 Thread pat

On 2019-07-23 02:29, Adam Carter wrote:

Also these look nasty;
Jul 15 01:07:25 draken-korin kernel: mce: [Hardware Error]: Machine
check events logged
Jul 15 01:07:25 draken-korin kernel: mce: [Hardware Error]: CPU 0:
Machine Check: 0 Bank 6: ee200040110a
Jul 15 01:07:25 draken-korin kernel: mce: [Hardware Error]: TSC 0 ADDR
fef1cf80 MISC 43880010086
Jul 15 01:07:25 draken-korin kernel: mce: [Hardware Error]: PROCESSOR
0:806e9 TIME 1563152768 SOCKET 0 APIC 0 microcode 30
Jul 15 01:07:25 draken-korin kernel: mce: [Hardware Error]: Machine
check events logged
Jul 15 01:07:25 draken-korin kernel: mce: [Hardware Error]: CPU 0:
Machine Check: 0 Bank 7: ee200040110a
Jul 15 01:07:25 draken-korin kernel: mce: [Hardware Error]: TSC 0 ADDR
fef1ff00 MISC 43880010086
Jul 15 01:07:25 draken-korin kernel: mce: [Hardware Error]: PROCESSOR
0:806e9 TIME 1563152768 SOCKET 0 APIC 0 microcode 30

Is the system overheating?

https://en.wikipedia.org/wiki/Machine-check_exception has some links
to MCE decode programs


Hi,

I want to thank to all for suggestions. The problem was that RAM had 
died. It was slow thus it made me to think that it is HDD.


Thanks again.

Pat



Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] hw problems

2019-07-22 Thread pat

Hi,

Since last week my gentoo installation start to randomly freeze. The 
first I've detected was during huge disk usage, another was during 
hibernation, etc. I think it might be related to HDD problems, but I 
want to be sure. In kernel log there are some errors, but I'm not able 
to decide if those causes the freezing or not (I've saw such messages 
earlier too, so I'm not sure). So, is there a good diagnostic tool to 
check HW and mainly HDD? What I need to decide is if buying new HDD will 
fix the issue or not.


Thanks a lot

Pat



Freehosting PIPNI - http://www.pipni.cz/

kern.log.0.gz
Description: GNU Zip compressed data


Re: [gentoo-user] how to set python version for one user [SOLVED]

2018-07-10 Thread pat

On 2018-07-10 14:09, p...@xvalheru.org wrote:

On 2018-07-10 11:22, Helmut Jarausch wrote:

On 07/10/2018 10:23:05 AM, p...@xvalheru.org wrote:

Hi,

I need to set specific python version to a user and I don't want to
set
it up for whole system. Is it possible? If so how to do it. All I
found
is about setting for whole system.

Thanks

Pat



A simple method would be to set up the PATH for this user to prepend a
local folder,
.e.g  $HOME/bin

Then copy (or symlink) the desired Python version from /usr/bin to 
that

folder under
a different name (i.e. without the (full) version number)

Helmut




Thanks I'll check this.

Pat



Thanks Helmut, it works.

Pat


Freehosting PIPNI - http://www.pipni.cz/




Re: [gentoo-user] how to set python version for one user

2018-07-10 Thread pat

On 2018-07-10 11:22, Helmut Jarausch wrote:

On 07/10/2018 10:23:05 AM, p...@xvalheru.org wrote:

Hi,

I need to set specific python version to a user and I don't want to
set
it up for whole system. Is it possible? If so how to do it. All I
found
is about setting for whole system.

Thanks

Pat



A simple method would be to set up the PATH for this user to prepend a
local folder,
.e.g  $HOME/bin

Then copy (or symlink) the desired Python version from /usr/bin to that
folder under
a different name (i.e. without the (full) version number)

Helmut




Thanks I'll check this.

Pat


Freehosting PIPNI - http://www.pipni.cz/




Re: [gentoo-user] how to set python version for one user

2018-07-10 Thread pat

On 2018-07-10 11:19, Alexander Kapshuk wrote:

On Tue, Jul 10, 2018 at 11:23 AM  wrote:


Hi,

I need to set specific python version to a user and I don't want to 
set
it up for whole system. Is it possible? If so how to do it. All I 
found

is about setting for whole system.

Thanks

Pat



How about this?
echo alias python='python2.7' >> ~user/.bash_profile



Well, this one doesn't work in case at the beginning of the python 
script is:

#!/usr/bin/env python

I have a "lot of scripts" with this. What I've thought there will be 
possibility to setup python version per user similar as for gcc (I 
think).


Thanks for help

Pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] how to set python version for one user

2018-07-10 Thread pat

Hi,

I need to set specific python version to a user and I don't want to set 
it up for whole system. Is it possible? If so how to do it. All I found 
is about setting for whole system.


Thanks

Pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] external usb blu-ray

2018-03-31 Thread pat

Hi,

I have external USB blu-ray and I'm not able to make it work.

lswh detects this device:
*-usb:0 UNCLAIMED
description: Generic USB device
vendor: Verbatim, Ltd
physical id: 1
bus info: usb@2:1.1
version: 3.20
capabilities: usb-3.00
configuration: speed=5000Mbit/s

dmesg shows errors:
[1945677.625450] usb 2-1.1: Device not responding to setup address.
[1945677.833387] usb 2-1.1: device not accepting address 116, error -71
[1945678.017411] usb 2-1.1: new SuperSpeed USB device number 117 using 
xhci_hcd

[1945678.040809] usb 2-1.1: string descriptor 0 read error: -71
[1945678.040820] usb 2-1.1: New USB device found, idVendor=18a5, 
idProduct=0414
[1945678.040825] usb 2-1.1: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3

[1945678.042368] usb 2-1.1: can't set config #1, error -71

The /dev/sr0 doesn't exist.

I expect some missing kernel configuration + some packages, but cannot 
find hints on internet.


Can someone help?

Thanks

 pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] [OT] lost menus in seamonkey

2018-01-22 Thread pat

Hi,

Sorry for this off topic, but I need help. I've killed the seamonkey, 
because it didn't respond for a long time (an hour) and eats about 50% 
of CPU. When I restart it I have all tabs, but lost all menus - no menu 
on right click no menu items under File/Edit/... .


Can someone help?

Thanks

 pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] [OT] application to configure mouse

2017-12-13 Thread pat

Hi,

Sorry for this offtopic, but is there a UI standalone application to 
configure mouse? I'm using fluxbox and don't want to install gnome or 
kde.


Thanks

Pat


Freehosting PIPNI - http://www.pipni.cz/




[SOLVED] Re: [gentoo-user] unable to hibernate

2017-10-19 Thread pat

On 2017-10-18 05:58, Walter Dnes wrote:

On Wed, Oct 18, 2017 at 05:30:25AM +0200, p...@xvalheru.org wrote

Hi,

I've installed 'sys-powerupower' package to suspend/hibernate my
machine. The suspend works fine, but the hibernate ends up with error
message in syslog:
  PM: Cannot find swap device, try swapon -a.
  PM: Cannot get swap writer

The swap is on. I expect there is some sort of configuration, but 
cannot

find.


  Is it configured in the kernel?  Here's my config...

Power management and ACPI options  --->
[ ] Suspend to RAM and standby
[*] Hibernation (aka 'suspend to disk')
(/dev/sda2) Default resume partition


Thanks a lot this was the issue.

Pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] unable to hibernate

2017-10-17 Thread pat

Hi,

I've installed 'sys-powerupower' package to suspend/hibernate my 
machine. The suspend works fine, but the hibernate ends up with error 
message in syslog:

 PM: Cannot find swap device, try swapon -a.
 PM: Cannot get swap writer

The swap is on. I expect there is some sort of configuration, but cannot 
find.


Thanks for help

Pat


Freehosting PIPNI - http://www.pipni.cz/




Re: [gentoo-user] {OT?} which fs on 1.8TB partition

2017-10-06 Thread pat

On 2017-10-06 20:12, J. Roeleveld wrote:

On 5 October 2017 22:45:50 GMT+02:00, christos kotsis
<christo.ko...@gmail.com> wrote:

I just noticed that ReiserFS has significant performance over ext3, 4
when
dealing with small files.

On 5 Oct 2017 11:32 pm, "christos kotsis" <christo.ko...@gmail.com>
wrote:

If the big data are used often,and I/O performance is desirable, then 
I

would go for two partitions.
One would be either ext3 or ext4, with huge block size, while the
second
could be one of two with small block size(minimum 1024).


On 5 Oct 2017 10:46 pm, <p...@xvalheru.org> wrote:

Hi,

Installing gentoo on new laptop and it has 2TB disk. I want to use
1.8TB
for data where will be big files and also huge amount of small files,
thus
I want to ask which FS is best for this. Until now I've used reiserfs
on
cca 0.5TB partition, but I don't know if it's also good choice for 
that

big
partition.

I've thought about zfs, but I don't need snapshots and such stuff
mostly
scaling is requirement.

Thanks

Pat


Freehosting PIPNI - http://www.pipni.cz/


I had a large partition with reiserfs.
Running fsck always failed due to running out of memory.

Partition was quite a bit larger than 2TB (around 6TB) and contained a
huge (millions) amount of files, but having an fsck become impossible
with 16GB memory available was rather annoying.

--
Joost


Hi,

Thanks to all, it will be dev env, so sources and big DB. I'll try 
reiserfs first (I have long time experiences with this one and have 32GB 
RAM :-D) and if this fails then xfs.


Thanks again.

Pat




Freehosting PIPNI - http://www.pipni.cz/




Re: [gentoo-user] Re: eth over usb

2017-10-06 Thread pat

On 2017-10-06 00:44, Neil Bothwick wrote:

On Thu, 5 Oct 2017 15:15:11 -0700, Ian Zimmerman wrote:


> I'm installing gentoo on new laptop which doesn't have eth slot. I
> have i-tec usb-eth adapter which works fine (tested on linux live
> distribution).

Can you get 100Mbit/s with it?

The laptop I use also has no ethernet.  I bought a USB dongle for that
but it turns out it can only do the original 10Mbit/s, half-duplex; 
much
slower than wifi and even somewhat slower than the WAN connection 
here.


I have a gigabit USB 3.0 to ethernet adaptor here. It's branded Digitus
which probably means nothing, lsusb shows

ID 0b95:1790 ASIX Electronics Corp. AX88179 Gigabit Ethernet


The one I have is also USB3 and looks fast, but I didn't test it yet - 
right now trying to setup gentoo :-)


Pat


Freehosting PIPNI - http://www.pipni.cz/




SOLVED Re: [gentoo-user] eth over usb

2017-10-05 Thread pat

On 2017-10-05 23:01, Alan McKinnon wrote:

On 05/10/2017 21:39, p...@xvalheru.org wrote:

Hi,

I'm installing gentoo on new laptop which doesn't have eth slot. I 
have
i-tec usb-eth adapter which works fine (tested on linux live 
distribution).


For the first time: I've configured kernel, compiled, loaded kernel
module and created link to /etc/init.d/net.lo and somehow I've push it
all to work (ifconfig lists enp0s20f0u1 interface).

But after reboot plugging in the adapter doesn't create enp0s20f0u1
interface, so the ifconfig lists only 'lo'.

Please could somebody help?

Attached is kernel config, lshw and dmesg outputs.


Best way to get a handle on what you need for things like this is to
reboot into the live cd and plug in the adapter. Then examine dmesg,
lsmod and othr relevant sources of info to see what the live cd did.
Make notes, replicate that on your gentoo system.

Almost any other method really just comes down to firing in the dark 
and

hoping you might hit something.


Thanks to all for suggestions.

The problem was that I've created net.enp0s20f0u1 and also net.eth0 
links.


Thanks

Patrik


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] {OT?} which fs on 1.8TB partition

2017-10-05 Thread pat

Hi,

Installing gentoo on new laptop and it has 2TB disk. I want to use 1.8TB 
for data where will be big files and also huge amount of small files, 
thus I want to ask which FS is best for this. Until now I've used 
reiserfs on cca 0.5TB partition, but I don't know if it's also good 
choice for that big partition.


I've thought about zfs, but I don't need snapshots and such stuff mostly 
scaling is requirement.


Thanks

Pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] eth over usb

2017-10-05 Thread pat

Hi,

I'm installing gentoo on new laptop which doesn't have eth slot. I have 
i-tec usb-eth adapter which works fine (tested on linux live 
distribution).


For the first time: I've configured kernel, compiled, loaded kernel 
module and created link to /etc/init.d/net.lo and somehow I've push it 
all to work (ifconfig lists enp0s20f0u1 interface).


But after reboot plugging in the adapter doesn't create enp0s20f0u1 
interface, so the ifconfig lists only 'lo'.


Please could somebody help?

Attached is kernel config, lshw and dmesg outputs.

Thanks

Pat


Freehosting PIPNI - http://www.pipni.cz/

config.gz
Description: GNU Zip compressed data


dmesg.gz
Description: GNU Zip compressed data


lshw-output.gz
Description: GNU Zip compressed data


[SOLVED] Re: [gentoo-user] Re: [OT] thunderbird stop working

2016-02-25 Thread pat



On 2016-02-22 12:14, Nikos Chantziaras wrote:

On 22/02/16 13:02, p...@xvalheru.org wrote:

Hi,

Sorry for such stupid question, but I'm lost :-( I'm using thunderbird
and recently I'm not able to login to mail server. Server 
configuration

doesn't changed. I've changed password only, but typing new password
doesn't log me in :-(

What makes me worry is the text in login dialogue: "Enter your 
password

for @@:".

Could someone help?


Inspect the account details (Edit->Account Settings). Make sure
everything is set up correctly there.


Once again sorry for such question, the admins switch to ugly office 365 
and help desk doesn't know about that :-(


Thanks and sorry

 Pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] [OT] thunderbird stop working

2016-02-22 Thread pat

Hi,

Sorry for such stupid question, but I'm lost :-( I'm using thunderbird 
and recently I'm not able to login to mail server. Server configuration 
doesn't changed. I've changed password only, but typing new password 
doesn't log me in :-(


What makes me worry is the text in login dialogue: "Enter your password 
for @@:".


Could someone help?

Thanks

 Pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] emerge --oneshot portage - conflict

2015-08-29 Thread neu pat
I emerge python3.4 set as active:
eselect python list
Available Python interpreters:
  [1]   python2.7
  [2]   python3.3
  [3]   python3.4 *
but it still complain about Multiple package instances

[ebuild U  ] sys-apps/portage-2.2.20.1 [2.2.14]
PYTHON_TARGETS=python3_4* -python3_3*

!!! Multiple package instances within a single package slot have been pulled
!!! into the dependency graph, resulting in a slot conflict:

sys-apps/portage:0

  (sys-apps/portage-2.2.20.1:0/0::gentoo, ebuild scheduled for merge)
pulled in by
sys-apps/portage (Argument)

  (sys-apps/portage-2.2.14:0/0::gentoo, installed) pulled in by

sys-apps/portage[python_targets_python2_7(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-)]
required by (app-admin/webapp-config-1.52-r1:0/0::gentoo, installed)



sys-apps/portage[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)]
required by (app-portage/gentoolkit-0.3.0.9-r2:0/0::gentoo, installed)

How to fix it?

#joseph


[gentoo-user] emerge --oneshot portage - conflict

2015-08-29 Thread neu pat
I emerge python3.4 set as active:

eselect python list
Available Python interpreters:
  [1]   python2.7
  [2]   python3.3
  [3]   python3.4 *

but it still complain


[ebuild U  ] sys-apps/portage-2.2.20.1 [2.2.14]
PYTHON_TARGETS=python3_4* -python3_3*

!!! Multiple package instances within a single package slot have been
pulled
!!! into the dependency graph, resulting in a slot conflict:

sys-apps/portage:0

  (sys-apps/portage-2.2.20.1:0/0::gentoo, ebuild scheduled for merge)
pulled in by
sys-apps/portage (Argument)

  (sys-apps/portage-2.2.14:0/0::gentoo, installed) pulled in by

sys-apps/portage[python_targets_python2_7(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-)]
required by (app-admin/webapp-config-1.52-r1:0/0::gentoo, installed)





sys-apps/portage[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)]
required by (app-portage/gentoolkit-0.3.0.9-r2:0/0::gentoo, installed)

What is it looking for?


Re: [gentoo-user] Re: lightdm fluxbox

2015-01-17 Thread pat
On Sat, 17 Jan 2015 09:17:22 +, Markos Chandras wrote
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA512
 
 On 01/17/2015 12:58 AM, walt wrote:
  On 01/16/2015 09:57 AM, pat wrote:
  Hi,
  
  I need help. I'm not able to start fluxbox session from lightdm.
  Couple days ago I've restarted my laptop and since then I'm Xless
  :-\ When I try to start fluxbox using startx (the startfluxbox
  command defined in .xinitrc in my home) the fluxbox starts, but
  using lightdm the screen blinks and returns to lightdm. There's
  an error message in the .xsession-errors: /etc/lightdm/Xsession:
  line 74: /usr/bin/dbus-launch --exit-with-session 
  /usr/bin/ssh-agent -- startfluxbox: no such file or directory
  
  Are the two lines above actually all one line?  (I'm assuming so.)
  So, which is the non-existent file?
  
  Do you really have a /usr/bin/dbus-launch?  What about
  /usr/bin/ssh-agent?
  
  Have you emerged updates to dbus, lightdm, or fluxbox in the last
  few days?
  
  (You can see a list of updated packages with qlop -l)
  
  
  
 That was a bug in lightdm. Please sync and try to re-emerge it.
 
 Sorry about that.
 

Thanks a lot. Sync and re-emerge helped.

 Pat



Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] lightdm fluxbox

2015-01-16 Thread pat
Hi,

I need help. I'm not able to start fluxbox session from lightdm. Couple days
ago I've restarted my laptop and since then I'm Xless :-\ When I try to start
fluxbox using startx (the startfluxbox command defined in .xinitrc in my home)
the fluxbox starts, but using lightdm the screen blinks and returns to
lightdm. There's an error message in the .xsession-errors:
/etc/lightdm/Xsession: line 74: /usr/bin/dbus-launch --exit-with-session
/usr/bin/ssh-agent -- startfluxbox: no such file or directory

Could some point me to solution?

Thanks

 Pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] unable to setup graphics card correctly

2014-07-24 Thread pat

Hi,

I've got new laptop and I'm not able to setup graphics card correctly - 
the console and X.org are messed up. The graphics card is nVidia:

 *-display
   description: VGA compatible controller
   product: GK106GLM [Quadro K2100M]
   vendor: NVIDIA Corporation
   physical id: 0
   bus info: pci@:01:00.0
   version: a1
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress vga_controller bus_master 
cap_list rom

   configuration: driver=nouveau latency=0
   resources: irq:16 memory:cf00-cfff 
memory:7000-7fff memory:8000-81ff ioport:5000(size=128) 
memory:d008-d00f


I've follow the Gentoo howtos, but I didn't succeed. The kernel 
configuration is attached and I want to use nouveau.


Thanks a lot for help

 Pat


Freehosting PIPNI - http://www.pipni.cz/#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 3.12.21-gentoo-r1 Kernel Configuration
#

#
# Gentoo Linux
#
CONFIG_GENTOO_LINUX=y
CONFIG_GENTOO_LINUX_UDEV=y

#
# Support for init systems, system and service managers
#
CONFIG_GENTOO_LINUX_INIT_SCRIPT=y
CONFIG_GENTOO_LINUX_INIT_SYSTEMD=y
CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT=elf64-x86-64
CONFIG_ARCH_DEFCONFIG=arch/x86/configs/x86_64_defconfig
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_HAVE_LATENCYTOP_SUPPORT=y
CONFIG_MMU=y
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_ARCH_HAS_CPU_AUTOPROBE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
CONFIG_ZONE_DMA32=y
CONFIG_AUDIT_ARCH=y
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_HAVE_INTEL_TXT=y
CONFIG_X86_64_SMP=y
CONFIG_X86_HT=y
CONFIG_ARCH_HWEIGHT_CFLAGS=-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx 
-fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 
-fcall-saved-r11
CONFIG_ARCH_CPU_PROBE_RELEASE=y
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_DEFCONFIG_LIST=/lib/modules/$UNAME_RELEASE/.config
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_EXTABLE_SORT=y

#
# General setup
#
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_CROSS_COMPILE=
# CONFIG_COMPILE_TEST is not set
CONFIG_LOCALVERSION=
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_BZIP2=y
CONFIG_HAVE_KERNEL_LZMA=y
CONFIG_HAVE_KERNEL_XZ=y
CONFIG_HAVE_KERNEL_LZO=y
CONFIG_HAVE_KERNEL_LZ4=y
CONFIG_KERNEL_GZIP=y
# CONFIG_KERNEL_BZIP2 is not set
# CONFIG_KERNEL_LZMA is not set
# CONFIG_KERNEL_XZ is not set
# CONFIG_KERNEL_LZO is not set
# CONFIG_KERNEL_LZ4 is not set
CONFIG_DEFAULT_HOSTNAME=(none)
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
CONFIG_FHANDLE=y
CONFIG_AUDIT=y
CONFIG_AUDITSYSCALL=y
CONFIG_AUDIT_WATCH=y
CONFIG_AUDIT_TREE=y
# CONFIG_AUDIT_LOGINUID_IMMUTABLE is not set

#
# IRQ subsystem
#
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_ARCH_CLOCKSOURCE_DATA=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
CONFIG_GENERIC_CMOS_UPDATE=y

#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ_COMMON=y
# CONFIG_HZ_PERIODIC is not set
CONFIG_NO_HZ_IDLE=y
# CONFIG_NO_HZ_FULL is not set
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y

#
# CPU/Task time and stats accounting
#
CONFIG_TICK_CPU_ACCOUNTING=y
# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
# CONFIG_IRQ_TIME_ACCOUNTING is not set
CONFIG_BSD_PROCESS_ACCT=y
# CONFIG_BSD_PROCESS_ACCT_V3 is not set
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y

#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
# CONFIG_PREEMPT_RCU is not set
CONFIG_RCU_STALL_COMMON=y
# CONFIG_RCU_USER_QS is not set
CONFIG_RCU_FANOUT=64
CONFIG_RCU_FANOUT_LEAF=16
# CONFIG_RCU_FANOUT_EXACT is not set
# CONFIG_RCU_FAST_NO_HZ is not set
# CONFIG_TREE_RCU_TRACE is not set
# CONFIG_RCU_NOCB_CPU is not set
# CONFIG_IKCONFIG is not set
CONFIG_LOG_BUF_SHIFT=18
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_ARCH_WANTS_PROT_NUMA_PROT_NONE=y
# CONFIG_NUMA_BALANCING is not set
CONFIG_CGROUPS=y
# CONFIG_CGROUP_DEBUG is not set
CONFIG_CGROUP_FREEZER=y
# CONFIG_CGROUP_DEVICE is not set
CONFIG_CPUSETS=y
CONFIG_PROC_PID_CPUSET=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_RESOURCE_COUNTERS=y

[gentoo-user] [SOLVED] Re: problem installing grub2

2014-07-24 Thread pat

There was missing active flag. Sorry for disturbing.

 Pat

On 2014-07-23 09:57, p...@xvalheru.org wrote:

Hello,

I've got new HP Zbook and I'm trying to install gentoo on it, but I
have problem after reboot: BootDevice not found, install OS on hard
drive. I've turn off all UEFI BIOS features. Disc partitioning is
like this:
sda1 - EFI (FAT-12/16/32) - 2M
sda2 - exit2 - /boot - 128G
sda5 - reiserfs - /

I've followed corresponding session in the installation guide using
fdisk and grub2, but still cannot boot :-(

Thanks

 Pat



Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] problem installing grub2

2014-07-24 Thread pat

Hello,

I've got new HP Zbook and I'm trying to install gentoo on it, but I have 
problem after reboot: BootDevice not found, install OS on hard drive. 
I've turn off all UEFI BIOS features. Disc partitioning is like this:

sda1 - EFI (FAT-12/16/32) - 2M
sda2 - exit2 - /boot - 128G
sda5 - reiserfs - /

I've followed corresponding session in the installation guide using 
fdisk and grub2, but still cannot boot :-(


Thanks

 Pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] [SOLVED] Re: unable to setup graphics card correctly

2014-07-24 Thread pat

Switch from 3.12.21-gentoo-r1 to 3.15.6-gentoo fixed this problem.

 Pat

On 2014-07-24 14:39, p...@xvalheru.org wrote:

Hi,

I've got new laptop and I'm not able to setup graphics card correctly
- the console and X.org are messed up. The graphics card is nVidia:
 *-display
   description: VGA compatible controller
   product: GK106GLM [Quadro K2100M]
   vendor: NVIDIA Corporation
   physical id: 0
   bus info: pci@:01:00.0
   version: a1
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress vga_controller bus_master 
cap_list rom

   configuration: driver=nouveau latency=0
   resources: irq:16 memory:cf00-cfff
memory:7000-7fff memory:8000-81ff
ioport:5000(size=128) memory:d008-d00f

I've follow the Gentoo howtos, but I didn't succeed. The kernel
configuration is attached and I want to use nouveau.

Thanks a lot for help

 Pat



Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] [OT] easy to use proxy server

2014-02-17 Thread pat
Hi,

Please, could someone suggest easy to use proxy server which supports SSL?

Thanks

 Pat



Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] NetworkManager stays in inactive mode

2013-12-08 Thread pat

Hi,

I updated this week and since then I have problem with NetworkManager. 
It starts, but last message is WARNING: NetworkManager has started, but 
is inactive and the network is not set up :-(


networkmanager-0.9.8.8
nm-applet-0.9.8.8
kernel 3.10.17-gentoo

Please, point me to the solution.

Thanks

 Pat



Freehosting PIPNI - http://www.pipni.cz/




Re: [gentoo-user] switching from tux-on-ice kernel to gentoo kernel hibernation issue

2013-03-03 Thread pat
On Sun, 3 Mar 2013 08:39:44 +, Neil Bothwick wrote
 On Sun, 3 Mar 2013 00:06:56 +0100, pat wrote:
 
  The HW is Dell Latitude e4310. I've tried hibernation script and also
  pm-hibernate script with same result (logs are included). The grub line
  is: kernel /boot/kernel-3.0.35-gentoo root=/dev/sda5
  resume=swap:/dev/sda6 video=uvesafb:off debug
 
 The systax is different with tuxonice because it also supports resume
 from a file. Try resume=/dev/sda5.
 
 I switched from TOI to gentoo-sources some time ago, with no 
 problems, but I hardcode the swap partition into the kernel config.
 
 -- 
 Neil Bothwick
 
 Top Oxymorons Number 26: Software documentation

Thanks a lot. Removing swap: was the trick.

 Pat



Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] [OT] Xlib tutorial

2013-01-15 Thread pat
Hello,

Sorry for this off topic. I want to learn how to develop UI applications using
Xlib. I've searched web, but I could not find a tutorial which will explain it
all (found some short examples). Please, could someone suggest a website or a
book?

Thanks

 Pat


Freehosting PIPNI - http://www.pipni.cz/




[SOLVED]Re: [gentoo-user] [OT] Xlib tutorial

2013-01-15 Thread pat
Sorry, should search for xlib and not x.org :-|

 Pat

On Tue, 15 Jan 2013 12:55:59 +0100, pat wrote
 Hello,
 
 Sorry for this off topic. I want to learn how to develop UI 
 applications using Xlib. I've searched web, but I could not find a 
 tutorial which will explain it all (found some short examples). 
 Please, could someone suggest a website or a book?
 
 Thanks
 
  Pat



Freehosting PIPNI - http://www.pipni.cz/




Re: [gentoo-user] static IP issue

2012-09-07 Thread pat
On Fri, 7 Sep 2012 00:14:00 -0400, Walter Dnes wrote
 On Thu, Sep 06, 2012 at 02:13:04PM +0100, pat wrote
  On Thu, 6 Sep 2012 14:00:22 +0100, Neil Bothwick wrote
   
   Please post contents of /etc/conf.d/net
   
   -- 
   Neil Bothwick
   
   Top Oxymorons Number 5: Twelve-ounce pound cake
  
  Here it is.
 
 config_eth0=192.168.74.101 netmask 255.255.255.0
 #routes_eth0=default via 8.8.8.8
 routes_eth0=default via 192.168.74.1
 
   I assume 192.168.74.1 is your modem.  Correct?  No mention of
 broadcast address.  I don't know if that's critical or not.  Try either
 of the following...
 
 config_eth0=192.168.74.101 netmask 255.255.255.0 broadcast 192.168.74.255
 routes_eth0=default via 192.168.74.1
 
 or
 
 config_eth0=192.168.74.101/24 broadcast 192.168.74.255
 routes_eth0=default via 192.168.74.1
 
 -- 
 Walter Dnes waltd...@waltdnes.org
 I don't run desktop environments; I run useful applications
 

Doesn't help :-(

Thanks

 Pat



Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] static IP issue

2012-09-06 Thread pat
Hello,

I've installed Gentoo into VirtualBox. I want it to has static IP address and
I've followed Hand book instructions and the OpenRC/net.example. After reboot
there's a warning: WARNING: net.lo has already been started and each network
depending service failes to start with: service_name: waiting for net.eth0
(51); where the 51 is a time which decrements to 0.

I've searched net, but without success :-\

Can someone help me? The installation is fresh one.

Thanks

 Pat


Freehosting PIPNI - http://www.pipni.cz/




Re: [gentoo-user] static IP issue

2012-09-06 Thread pat
On Thu, 6 Sep 2012 14:10:21 +0200, Michael Hampicke wrote
 2012/9/6 pat p...@xvalheru.org
Hello,

 I#39;ve installed Gentoo into VirtualBox. I want it to has static IP address 
 and
 I#39;ve followed Hand book instructions and the OpenRC/net.example. After 
 reboot
 there#39;s a warning: WARNING: net.lo has already been started and each 
 network
 depending service failes to start with: service_name: waiting for net.eth0
 (51); where the 51 is a time which decrements to 0.

 I#39;ve searched net, but without success :-\

 Can someone help me? The installation is fresh one.

 Did you create a symlink for /etc/init.d/net.eth0 and did you add it to the 
 runlevel (rc-update add net.eth0 default)?

Hi,

Yes, I did. When the Gentoo boots to shell there#39;s only loop back interface.

Pat

 



Freehosting PIPNI - http://www.pipni.cz/

Re: [gentoo-user] static IP issue

2012-09-06 Thread pat
On Thu, 6 Sep 2012 14:00:22 +0100, Neil Bothwick wrote
 On Thu, 6 Sep 2012 13:21:43 +0100, pat wrote:
 
  Yes, I did. When the Gentoo boots to shell there's only loop back
  interface.
 
 Please post contents of /etc/conf.d/net
 
 -- 
 Neil Bothwick
 
 Top Oxymorons Number 5: Twelve-ounce pound cake

Here it is.

Thanks

 Pat



Freehosting PIPNI - http://www.pipni.cz/

net
Description: Binary data


Re: [gentoo-user] static IP issue

2012-09-06 Thread pat
On Thu, 6 Sep 2012 16:23:57 +0200, Michael Hampicke wrote
   
 
  Yes, I did. When the Gentoo boots to shell there's only loop back interface. 
 
  Are you sure that the kernel module for your network interface is loaded?
 
  What's the output of ifconfig -a after a reboot?

ifconfig -a gives:
eth0  Link encap:Ethernet  HWaddr 08:00:27:26:80:c5  
  BROADCAST MULTICAST  MTU:1500  Metric:1
  RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:1000 
  RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

loLink encap:Local Loopback  
  inet addr:127.0.0.1  Mask:255.0.0.0
  inet6 addr: ::1/128 Scope:Host
  UP LOOPBACK RUNNING  MTU:16436  Metric:1
  RX packets:28 errors:0 dropped:0 overruns:0 frame:0
  TX packets:28 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:0 
  RX bytes:1988 (1.9 KiB)  TX bytes:1988 (1.9 KiB)

sit0  Link encap:IPv6-in-IPv4  
  NOARP  MTU:1480  Metric:1
  RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:0 
  RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

and I didn't compile driver as module but into kernel and when I switch to
dynamic IP address it works OK, so this is (probably) not issue of the driver.

 Pat



Freehosting PIPNI - http://www.pipni.cz/




Re: [gentoo-user] static IP issue

2012-09-06 Thread pat
On Thu, 6 Sep 2012 08:37:33 -0700, Mark Knecht wrote
 On Thu, Sep 6, 2012 at 4:33 AM, pat p...@xvalheru.org wrote:
  Hello,
 
  I've installed Gentoo into VirtualBox. I want it to has static IP address 
  and
  I've followed Hand book instructions and the OpenRC/net.example. After 
  reboot
  there's a warning: WARNING: net.lo has already been started and each 
  network
  depending service failes to start with: service_name: waiting for 
  net.eth0
  (51); where the 51 is a time which decrements to 0.
 
  I've searched net, but without success :-\
 
  Can someone help me? The installation is fresh one.
 
  Thanks
 
   Pat
 
 I have a 32-bit Gentoo Virtualbox VM where I am actually sending this
 email from. No problems with having a static IP:
 
 gentoo-32b ~ # ifconfig -a
 eth0  Link encap:Ethernet  HWaddr 08:00:27:d4:6a:35
   inet addr:192.168.1.125  Bcast:192.168.1.255  Mask:255.255.255.0
   inet6 addr: fe80::a00:27ff:fed4:6a35/64 Scope:Link
   UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
   RX packets:103 errors:0 dropped:0 overruns:0 frame:0
   TX packets:108 errors:0 dropped:0 overruns:0 carrier:0
   collisions:0 txqueuelen:1000
   RX bytes:10493 (10.2 KiB)  TX bytes:9152 (8.9 KiB)
 
 loLink encap:Local Loopback
   inet addr:127.0.0.1  Mask:255.0.0.0
   inet6 addr: ::1/128 Scope:Host
   UP LOOPBACK RUNNING  MTU:16436  Metric:1
   RX packets:0 errors:0 dropped:0 overruns:0 frame:0
   TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
   collisions:0 txqueuelen:0
   RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
 
 sit0  Link encap:IPv6-in-IPv4
   NOARP  MTU:1480  Metric:1
   RX packets:0 errors:0 dropped:0 overruns:0 frame:0
   TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
   collisions:0 txqueuelen:0
   RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
 
 gentoo-32b ~ # cat /etc/conf.d/net
 net  network
 gentoo-32b ~ # cat /etc/conf.d/net
 # This blank configuration will automatically use DHCP for any net.*
 # scripts in /etc/init.d.  To create a more complete configuration,
 # please review /usr/share/doc/openrc*/net.example* and save your 
 configuration
 # in /etc/conf.d/net (this file :]!).
 
 config_eth0=192.168.1.125 netmask 255.255.255.0
 routes_eth0=default via 192.168.1.1
 gentoo-32b ~ #
 
 If it helps, I have the VM NEtwork settings set to Bridged Adapter.
 
 HTH,
 Mark
 

Hello,

I have bridged network too and my configuration looks similar to yours, but I
have 64-bit Gentoo.

 Pat



Freehosting PIPNI - http://www.pipni.cz/




Re: [gentoo-user] Netbeans, java programming, swing gui-builder?

2012-04-01 Thread pat
On Sat, 31 Mar 2012 13:12:00 +0200, pk wrote
 Hi,
 
 Does anyone on this list have experience with java (swing) gui-builders
 and what would you recommend, if so? It seems Netbeans is the only
 option in Portage that I can find, are there other options? I'm looking
 for an easy way to build a reasonably advanced gui.
 
 Best regards
 
 Peter K
 

Hi Peter,

I have experiences with Swing UI and I'll suggest NetBeans.

 Pat


Freehosting PIPNI - http://www.pipni.cz/




[SOLVED] Re: [gentoo-user] lost wireless network

2012-02-04 Thread pat
On Thu, 2 Feb 2012 19:40:58 -0600, Canek Peláez Valdés wrote
 On Thu, Feb 2, 2012 at 5:07 PM, Hinnerk van Bruinehsen
 h.v.bruineh...@fu-berlin.de wrote:
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
 
  On 02.02.2012 23:03, Canek Peláez Valdés wrote:
  On Thu, Feb 2, 2012 at 10:45 AM, pat p...@xvalheru.org wrote: [
  Humongous snip ]
 
  Still the same :-|
 
  Seems really weird. I can only think the following options:
 
  1. Something is messing up with NetworkManager.
 
  1.a. Can be possible that the /etc/init.d/net.* scripts are
  running alongside NetworkManager? I don't use OpenRC (I moved to
  systemd), but I clearly remember that for NetworkManager to run OK
  in Gentoo you had to disable the net.* services in /etc/rc.conf:
 
  rc_hotplug=!net.*
 
  1.b. Maybe something is wrong with your
  NetworkManager/wpa_supplicant installation; try deleting (after
  making a backup, of course) the following directories/files:
 
  /etc/NetworkManager /etc/wpa_supplicant /etc/conf.d/net
 
  and then emerge again both packages:
 
  emerge -1v networkmanger wpa_supplicant
 
  And try again after a reboot.
 
  2. Maybe (for some weird reason) NetworkManager refuses to work in
  your system. If this is the case, disable all your network
  services (avahi*, cups, NetworkManager, net.*), and boot to a
  console. When I'm dealing with this kind of stuff, I even disable
  X, just to be sure:
 
  rc-update del NetworkManager ... rc-update del xdm reboot
 
  When you are in your console, try connecting to a WEP access point
  by hand:
 
  ifconfig wlan0 up iwconfig wlan0 essid MYESSID key MYPASSWORD
  channel MYCHANNEL dhclient/dhcpcd wlan0
 
  If it works, then is something related to NetworkManager.
 
  If it doesn't, I can't really thing of anything else at the
  moment.
 
  Regards, and good luck.
 
  Doesn't seem NetworkManagerrelated - he/she said, that it isn't
  working with wicd either.
  The logs indicate that rfkill disables the device only a few seconds
  after each activation.
 
 Which *could* (I believe) be caused by the /etc/init.d/net.* scripts
 running in parallel to both NM and wicd. I don't know wicd (haven't
 used), but it *could* be a problem with NM.
 
 It's just an idea.
 
 Regards.
 -- 
 Canek Peláez Valdés
 Posgrado en Ciencia e Ingeniería de la Computación
 Universidad Nacional Autónoma de México
 

Hello,

Thanks for your patience and help. When I started this thread I've newly used
gcc 4.5.3 (rebuild full gentoo installation). This failed. I've moved bask to
previous gcc version (4.4.5) and wireless start working (except
NetworkManager, but wicd is fine). So, I've decided to check if the problem
was the gcc 4.5.3 and recompiled whole gentoo installation to this gcc again.
But to my surprise it works. So, only issue right now is the NetworkManager,
but I can live with that :-) Bad thing is that I don't know what the hell was
wrong.

Thanks for your help

 Pat

P.S And I'm he :-)


Freehosting PIPNI - http://www.pipni.cz/



Re: [gentoo-user] lost wireless network

2012-02-02 Thread pat
On Wed, 01 Feb 2012 23:30:42 +0100, Hinnerk van Bruinehsen wrote
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 On 01.02.2012 21:33, pat wrote:
  On Wed, 01 Feb 2012 09:16:18 +0100, Hinnerk van Bruinehsen wrote On
  01.02.2012 00:34, pat wrote:
  On Sun, 29 Jan 2012 10:34:36 +0100, pat wrote
  On Sun, 29 Jan 2012 14:49:33 +1100, Adam Carter wrote
  There were a few kernels that broke iwlagn. Iirc it was
  3.1.5 and 3.1.6. So
  i'd suggest you stick to troubleshooting on a kernel you
  know has previously worked, or a very recent one.
  
  Well, that's the problem, it doesn't work on last working
  one too :- ( I've been using tuxonice-sources-2.6.38-r1 and
  it worked about 6 months ago, but not it doesn't :-(
  
  Thanks
  
  Pat
  
  Hello again,
  
  I've tried these kernels: 2.6.38-tuxonice-r1, 3.0.6-tuxonice,
   3.0.17-tuxonice-r1 and 3.2.1-gentoo-r2 but none of these
  works :-( The kernel config for 3.0.17-tuxonice-r1 (the
  kernel I want to use) is attached. I've checked wifi
  functionality on Linux Mint 11 live CD and it works.
  
  I have no idea what I have to check :-\ (I've checked the
  kernel setup, NetworkManager configuration, a lot of kernels
  :-) and I've also tried wicd).
  
  Could someone help?
  
  Thanks
  
  Pat
  
  You could add:
  
  [logging] level=DEBUG domains=HW,RFKILL,WIFI
  
  to /etc/NetworkManager/NetworkManager.conf
  
  and try if you get an usable error...
  
  
  Hello,
  
  the log is attached. To me it looks like there's not an issue with 
  NetworkManager, but somewhere else, because, when I turn on the
  wireless toggle button, the wireless control doesn't indicate the
  wireless is on.
  
  Thanks for help
  
  Pat
  
  
  
   Freehosting PIPNI -
  http://www.pipni.cz/
 
 Did you install the firmwarefiles for your WIFI-adapter?
 
 try:
 
 emerge sys-kernel/linux-firmware
 
 If that works, you could uninstall it again and try to narrow it down
 to your specific card - net-wireless/iwl6000-ucode would be my gues...
 
 That could explain, why a livecd works (the firmware is included 
 there).
 
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2.0.18 (GNU/Linux)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
 
 iQEcBAEBAgAGBQJPKb0SAAoJEJwwOFaNFkYcnRYIAKVBylfpYWPWiJ9Cu265e1bR
 fQdNMzPL1diFPcFzUYupiokR3uzGMP6G87EDUU+Gohl8PtnRJeZSJLkQm0aeJDwq
 kZ5a0+7JsuHdkTJghutJimB8LhtN93kgyTr36RcVVtzPMpRO4+EXVOuJZiaZ3QPA
 gKsklm/6o7v09TRwTd5DvEuf+Uo6zmg0pIjzAD+Bp/aj/4mHz8JHbnE17saihELM
 Z6gbUx3cRY1W3dSRH/U2DtuaKzSk11QK8OHH5JqJoCPYcEZUyQzgrK7g5bTR62oB
 7EkcBFtqcJTpJWgPMPmhJXQZi+TbXnnISw7mSue2DkOXyi50Np8t6HbnnofrV9c=
 =gg3q
 -END PGP SIGNATURE-
 

Yes, I have installed firmware for my wifi adapter, and you are right it is
iwl6000-ucode. I've tried to uninstall and install it again but without
success :-( But I'll try the linux-firmware (I forget to try it), just in case
there will be something missing.

The wifi adapter is: Intel Corporation WiFi Link 6000 Series.

Thanks

 Pat


Freehosting PIPNI - http://www.pipni.cz/



Re: [gentoo-user] lost wireless network

2012-02-02 Thread pat
On Thu, 02 Feb 2012 10:56:59 +0100, Hinnerk van Bruinehsen wrote
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 On 02.02.2012 10:20, pat wrote:
  On Wed, 01 Feb 2012 23:30:42 +0100, Hinnerk van Bruinehsen wrote On
  01.02.2012 21:33, pat wrote:
  On Wed, 01 Feb 2012 09:16:18 +0100, Hinnerk van Bruinehsen
  wrote On 01.02.2012 00:34, pat wrote:
  On Sun, 29 Jan 2012 10:34:36 +0100, pat wrote
  On Sun, 29 Jan 2012 14:49:33 +1100, Adam Carter
  wrote
  There were a few kernels that broke iwlagn. Iirc it
  was 3.1.5 and 3.1.6. So
  i'd suggest you stick to troubleshooting on a kernel
  you know has previously worked, or a very recent
  one.
  
  Well, that's the problem, it doesn't work on last
  working one too :- ( I've been using
  tuxonice-sources-2.6.38-r1 and it worked about 6
  months ago, but not it doesn't :-(
  
  Thanks
  
  Pat
  
  Hello again,
  
  I've tried these kernels: 2.6.38-tuxonice-r1,
  3.0.6-tuxonice, 3.0.17-tuxonice-r1 and 3.2.1-gentoo-r2
  but none of these works :-( The kernel config for
  3.0.17-tuxonice-r1 (the kernel I want to use) is
  attached. I've checked wifi functionality on Linux Mint
  11 live CD and it works.
  
  I have no idea what I have to check :-\ (I've checked
  the kernel setup, NetworkManager configuration, a lot
  of kernels :-) and I've also tried wicd).
  
  Could someone help?
  
  Thanks
  
  Pat
  
  You could add:
  
  [logging] level=DEBUG domains=HW,RFKILL,WIFI
  
  to /etc/NetworkManager/NetworkManager.conf
  
  and try if you get an usable error...
  
  
  Hello,
  
  the log is attached. To me it looks like there's not an issue
  with NetworkManager, but somewhere else, because, when I turn
  on the wireless toggle button, the wireless control doesn't
  indicate the wireless is on.
  
  Thanks for help
  
  Pat
  
  
  
   Freehosting PIPNI - 
  http://www.pipni.cz/
  
  Did you install the firmwarefiles for your WIFI-adapter?
  
  try:
  
  emerge sys-kernel/linux-firmware
  
  If that works, you could uninstall it again and try to narrow it
  down to your specific card - net-wireless/iwl6000-ucode would be my
  gues...
  
  That could explain, why a livecd works (the firmware is included 
  there).
  
  
  
  Yes, I have installed firmware for my wifi adapter, and you are
  right it is iwl6000-ucode. I've tried to uninstall and install it
  again but without success :-( But I'll try the linux-firmware (I
  forget to try it), just in case there will be something missing.
  
  The wifi adapter is: Intel Corporation WiFi Link 6000 Series.
  
  Thanks
  
  Pat
 
 
 Tough nut...
 Are you using dracut? I've tried it and it seems as if I have to
 manually include the firmware file whenever I rebuild my initramfs.
 
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2.0.18 (GNU/Linux)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
 
 iQEcBAEBAgAGBQJPKl3rAAoJEJwwOFaNFkYcTvsH+wRURg7aqxOYRXoIfOhFEguz
 iVLajxtvwaRDMb83fQeIeHKHk5MIOPFn0f8tztaqsgpJ8AJ1AF8hPCy+lIsiX9kq
 zzhjxsJl9dP0wp1HvRuIT72FlRG3Wzr6QHsUQhVfX9/aKXpJUKDYAoW74c6c8Iyi
 MDshlWjnY3Aa1UO60rVO18msxwKhG4XNuaJTSpsuX9VoGwGzKEAwNVwDRdTVkyXv
 0Qjvne+xoVtb1FkpLxeX5tGe9+wEFRQ+zJEQ00swd6xswP8an+Tan7eN6GswaugT
 cfel/EcimKrBAPVYEuOTIE5d0dHui9cmFisNPSBfZatn5mxMP/0ufkRqsLR6OYA=
 =B+Z1
 -END PGP SIGNATURE-
 

I don't use initramfs.

 Pat



Freehosting PIPNI - http://www.pipni.cz/



Re: [gentoo-user] lost wireless network

2012-02-02 Thread pat
On Thu, 2 Feb 2012 11:28:34 +0100, pat wrote
 On Thu, 02 Feb 2012 10:56:59 +0100, Hinnerk van Bruinehsen wrote
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
  
  On 02.02.2012 10:20, pat wrote:
   On Wed, 01 Feb 2012 23:30:42 +0100, Hinnerk van Bruinehsen wrote On
   01.02.2012 21:33, pat wrote:
   On Wed, 01 Feb 2012 09:16:18 +0100, Hinnerk van Bruinehsen
   wrote On 01.02.2012 00:34, pat wrote:
   On Sun, 29 Jan 2012 10:34:36 +0100, pat wrote
   On Sun, 29 Jan 2012 14:49:33 +1100, Adam Carter
   wrote
   There were a few kernels that broke iwlagn. Iirc it
   was 3.1.5 and 3.1.6. So
   i'd suggest you stick to troubleshooting on a kernel
   you know has previously worked, or a very recent
   one.
   
   Well, that's the problem, it doesn't work on last
   working one too :- ( I've been using
   tuxonice-sources-2.6.38-r1 and it worked about 6
   months ago, but not it doesn't :-(
   
   Thanks
   
   Pat
   
   Hello again,
   
   I've tried these kernels: 2.6.38-tuxonice-r1,
   3.0.6-tuxonice, 3.0.17-tuxonice-r1 and 3.2.1-gentoo-r2
   but none of these works :-( The kernel config for
   3.0.17-tuxonice-r1 (the kernel I want to use) is
   attached. I've checked wifi functionality on Linux Mint
   11 live CD and it works.
   
   I have no idea what I have to check :-\ (I've checked
   the kernel setup, NetworkManager configuration, a lot
   of kernels :-) and I've also tried wicd).
   
   Could someone help?
   
   Thanks
   
   Pat
   
   You could add:
   
   [logging] level=DEBUG domains=HW,RFKILL,WIFI
   
   to /etc/NetworkManager/NetworkManager.conf
   
   and try if you get an usable error...
   
   
   Hello,
   
   the log is attached. To me it looks like there's not an issue
   with NetworkManager, but somewhere else, because, when I turn
   on the wireless toggle button, the wireless control doesn't
   indicate the wireless is on.
   
   Thanks for help
   
   Pat
   
   
   
    Freehosting PIPNI - 
   http://www.pipni.cz/
   
   Did you install the firmwarefiles for your WIFI-adapter?
   
   try:
   
   emerge sys-kernel/linux-firmware
   
   If that works, you could uninstall it again and try to narrow it
   down to your specific card - net-wireless/iwl6000-ucode would be my
   gues...
   
   That could explain, why a livecd works (the firmware is included 
   there).
   
   
   
   Yes, I have installed firmware for my wifi adapter, and you are
   right it is iwl6000-ucode. I've tried to uninstall and install it
   again but without success :-( But I'll try the linux-firmware (I
   forget to try it), just in case there will be something missing.
   
   The wifi adapter is: Intel Corporation WiFi Link 6000 Series.
   
   Thanks
   
   Pat
  
  
  Tough nut...
  Are you using dracut? I've tried it and it seems as if I have to
  manually include the firmware file whenever I rebuild my initramfs.
  
  -BEGIN PGP SIGNATURE-
  Version: GnuPG v2.0.18 (GNU/Linux)
  Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
  
  iQEcBAEBAgAGBQJPKl3rAAoJEJwwOFaNFkYcTvsH+wRURg7aqxOYRXoIfOhFEguz
  iVLajxtvwaRDMb83fQeIeHKHk5MIOPFn0f8tztaqsgpJ8AJ1AF8hPCy+lIsiX9kq
  zzhjxsJl9dP0wp1HvRuIT72FlRG3Wzr6QHsUQhVfX9/aKXpJUKDYAoW74c6c8Iyi
  MDshlWjnY3Aa1UO60rVO18msxwKhG4XNuaJTSpsuX9VoGwGzKEAwNVwDRdTVkyXv
  0Qjvne+xoVtb1FkpLxeX5tGe9+wEFRQ+zJEQ00swd6xswP8an+Tan7eN6GswaugT
  cfel/EcimKrBAPVYEuOTIE5d0dHui9cmFisNPSBfZatn5mxMP/0ufkRqsLR6OYA=
  =B+Z1
  -END PGP SIGNATURE-
 
 
 I don't use initramfs.
 
  Pat

Still the same :-|

 Pat



Freehosting PIPNI - http://www.pipni.cz/



Re: [gentoo-user] lost wireless network

2012-02-01 Thread pat
On Wed, 01 Feb 2012 09:16:18 +0100, Hinnerk van Bruinehsen wrote
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 On 01.02.2012 00:34, pat wrote:
  On Sun, 29 Jan 2012 10:34:36 +0100, pat wrote
  On Sun, 29 Jan 2012 14:49:33 +1100, Adam Carter wrote
  There were a few kernels that broke iwlagn. Iirc it was 3.1.5
  and 3.1.6. So
  i'd suggest you stick to troubleshooting on a kernel you know has
  previously worked, or a very recent one.
  
  Well, that's the problem, it doesn't work on last working one too
  :- ( I've been using tuxonice-sources-2.6.38-r1 and it worked
  about 6 months ago, but not it doesn't :-(
  
  Thanks
  
  Pat
  
  Hello again,
  
  I've tried these kernels: 2.6.38-tuxonice-r1, 3.0.6-tuxonice, 
  3.0.17-tuxonice-r1 and 3.2.1-gentoo-r2 but none of these works :-(
  The kernel config for 3.0.17-tuxonice-r1 (the kernel I want to use)
  is attached. I've checked wifi functionality on Linux Mint 11 live
  CD and it works.
  
  I have no idea what I have to check :-\ (I've checked the kernel
  setup, NetworkManager configuration, a lot of kernels :-) and I've
  also tried wicd).
  
  Could someone help?
  
  Thanks
  
  Pat
  
 You could add:
 
 [logging]
 level=DEBUG
 domains=HW,RFKILL,WIFI
 
 to /etc/NetworkManager/NetworkManager.conf
 
 and try if you get an usable error...
 
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2.0.18 (GNU/Linux)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
 
 iQEcBAEBAgAGBQJPKPTSAAoJEJwwOFaNFkYc2FAH/i9Hj0Y/XXAAXKsvPU57Ldo9
 jI1HD22yk/BUNhFfzpTp7zpD7Eh/3IoZvZ4ZHlK9pqoz8DdbI6k92o6niHQGa+du
 rXzdfIblrdjN25c+PurexWHH93MBQM+Jl5xCT6ZrOD1aGWMOgVv1NM+Pblq9xAqc
 t5dLKi5ul3n2pwJR/kEcIbyx3f4p3uTCB9P8dW7e71ErP4Emx56etZbGDk43GAke
 9GEd17uDpc+xWO8Q9HxHhYOemrCds8J8WceRARgMNFxENiT0a8h0xcMohN3SGstQ
 EXz7fUpXQpQsXVLdwcVSvFL747rRlyHm/0VuVSypLKklBC893ZBMg2CIZAsQQo4=
 =BR/S
 -END PGP SIGNATURE-

Hello,

the log is attached. To me it looks like there's not an issue with
NetworkManager, but somewhere else, because, when I turn on the wireless
toggle button, the wireless control doesn't indicate the wireless is on.

Thanks for help

 Pat




Freehosting PIPNI - http://www.pipni.cz/Feb  1 19:58:39 localhost NetworkManager[2592]: info (eth0): carrier now OFF 
(device state 8, deferring action for 4 seconds)
Feb  1 19:58:39 localhost NetworkManager[2592]: info (eth0): carrier now ON 
(device state 8)
Feb  1 20:03:23 localhost NetworkManager[2592]:SCPlugin-Ifnet: getting 
unmanaged specs...
Feb  1 20:03:23 localhost NetworkManager[2592]:SCPlugin-Ifnet: getting 
unmanaged specs...
Feb  1 20:03:23 localhost NetworkManager[2592]:SCPlugin-Ifnet: getting 
unmanaged specs...
Feb  1 20:03:26 localhost NetworkManager[2592]: info WiFi now enabled by 
radio killswitch
Feb  1 20:03:27 localhost NetworkManager[2592]: info WiFi now disabled by 
radio killswitch
Feb  1 20:06:44 localhost NetworkManager[2619]:SCPlugin-Ifnet: Initializing!
Feb  1 20:06:44 localhost NetworkManager[2619]:SCPlugin-Ifnet: management 
mode: managed
Feb  1 20:06:44 localhost NetworkManager[2619]:SCPlugin-Ifnet: Can't open 
/etc/wpa_supplicant/wpa_supplicant.conf for wireless security
Feb  1 20:06:44 localhost NetworkManager[2619]:SCPlugin-Ifnet: Loading 
connections
Feb  1 20:06:44 localhost NetworkManager[2619]:SCPlugin-Ifnet: Hostname 
updated to: draken-korin
Feb  1 20:06:44 localhost NetworkManager[2619]:SCPlugin-Ifnet: 
Initialzation complete!
Feb  1 20:06:44 localhost NetworkManager[2619]:SCPlugin-Ifnet: getting 
unmanaged specs...
Feb  1 20:06:44 localhost NetworkManager[2619]:SCPlugin-Ifnet: (872426032) 
... get_connections.
Feb  1 20:06:44 localhost NetworkManager[2619]:SCPlugin-Ifnet: (872426032) 
connections count: 0
Feb  1 20:06:44 localhost NetworkManager[2619]:keyfile: parsing 
.keep_net-misc_networkmanager-0 ... 
Feb  1 20:06:44 localhost NetworkManager[2619]:keyfile: error: File 
permissions (100644) or owner (0) were insecure
Feb  1 20:06:44 localhost NetworkManager[2619]:SCPlugin-Ifnet: getting 
unmanaged specs...
Feb  1 20:06:44 localhost NetworkManager[2619]: info found WiFi radio 
killswitch rfkill2 (at 
/sys/devices/pci:00/:00:1c.1/:02:00.0/ieee80211/phy0/rfkill2) 
(driver unknown)
Feb  1 20:06:44 localhost NetworkManager[2619]: info found WiFi radio 
killswitch rfkill0 (at /sys/devices/platform/dell-laptop/rfkill/rfkill0) 
(driver dell-laptop)
Feb  1 20:06:44 localhost NetworkManager[2619]: debug [1328123204.961239] 
[nm-udev-manager.c:204] recheck_killswitches(): WiFi rfkill state now 
'hard-blocked'
Feb  1 20:06:44 localhost NetworkManager[2619]: info WiFi disabled by radio 
killswitch; disabled by state file
Feb  1 20:06:44 localhost NetworkManager[2619]: info WWAN enabled by radio 
killswitch; enabled by state file
Feb  1 20:06:44 localhost NetworkManager[2619]: info WiMAX enabled by radio 
killswitch; enabled by state file
Feb  1 20:06:44

Re: [gentoo-user] lost wireless network

2012-01-29 Thread pat
On Sun, 29 Jan 2012 14:49:33 +1100, Adam Carter wrote
 There were a few kernels that broke iwlagn. Iirc it was 3.1.5 and 3.1.6. So
i'd suggest you stick to troubleshooting on a kernel you know has previously
worked, or a very recent one.

Well, that's the problem, it doesn't work on last working one too :-( I've
been using tuxonice-sources-2.6.38-r1 and it worked about 6 months ago, but
not it doesn't :-(

Thanks

 Pat


Freehosting PIPNI - http://www.pipni.cz/




[gentoo-user] lost wireless network

2012-01-28 Thread pat
Hi,

I've used wireless network about half of a year ago. Now I need it and it
doesn't start :-( My gentoo is up to date.

I'm using network manager (and it's nm-applet).

Wireless info:
description: Wireless interface
product: WiFi Link 6000 Series
vendor: Intel Corporation
capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=iwlagn driverversion=3.0.6-tuxonice
firmware=9.221.4.1 build 25532 latency=0 link=no multicast=yes wireless=IEEE
802.11abgn

After switching on, the dmesg says:
iwlagn :02:00.0: RF_KILL bit toggled to enable radio.
usb 2-1.7: new full speed USB device number 78 using ehci_hcd

but wireless control doesn't indicate that it's on and nm-applies says the
wireless is disabled by hw switch.

It worked on tuxonice-sources-2.6.38-r1 but now it doesn't work on it too :-(
Current kernel is tuxonice-sources-3.0.6 (planing upgrade to 3.0.17, but only
with wireless :-) ).

Please, could someone help me? I have no idea where to start :-\

Thanks

 Pat


Freehosting PIPNI - http://www.pipni.cz/



Re: [gentoo-user] lost wireless network

2012-01-28 Thread pat
On Sat, 28 Jan 2012 13:46:37 +0100, Florian Philipp wrote
 Am 28.01.2012 12:38, schrieb pat:
  Hi,
  
  I've used wireless network about half of a year ago. Now I need it and it
  doesn't start :-( My gentoo is up to date.
  
  I'm using network manager (and it's nm-applet).
  
  Wireless info:
  description: Wireless interface
  product: WiFi Link 6000 Series
  vendor: Intel Corporation
  capabilities: pm msi pciexpress bus_master cap_list ethernet physical 
  wireless
  configuration: broadcast=yes driver=iwlagn driverversion=3.0.6-tuxonice
  firmware=9.221.4.1 build 25532 latency=0 link=no multicast=yes wireless=IEEE
  802.11abgn
  
  After switching on, the dmesg says:
  iwlagn :02:00.0: RF_KILL bit toggled to enable radio.
  usb 2-1.7: new full speed USB device number 78 using ehci_hcd
  
  but wireless control doesn't indicate that it's on and nm-applies says the
  wireless is disabled by hw switch.
  
  It worked on tuxonice-sources-2.6.38-r1 but now it doesn't work on it too 
  :-(
  Current kernel is tuxonice-sources-3.0.6 (planing upgrade to 3.0.17, but 
  only
  with wireless :-) ).
  
  Please, could someone help me? I have no idea where to start :-\
  
  Thanks
  
   Pat
 
 
 Do you have the rfkill module loaded?
 
 Regards,
 Florian Philipp

Yes.
rfkill 15504  1 cfg80211

 Pat



Freehosting PIPNI - http://www.pipni.cz/



Re: [gentoo-user] lost wireless network

2012-01-28 Thread pat
On Sat, 28 Jan 2012 19:08:17 +, Mick wrote
 On Saturday 28 Jan 2012 17:00:35 Canek Peláez Valdés wrote:
  On Sat, Jan 28, 2012 at 6:52 AM, pat p...@xvalheru.org wrote:
   On Sat, 28 Jan 2012 13:46:37 +0100, Florian Philipp wrote
   
   Am 28.01.2012 12:38, schrieb pat:
Hi,

I've used wireless network about half of a year ago. Now I need it and
it doesn't start :-( My gentoo is up to date.

I'm using network manager (and it's nm-applet).

Wireless info:
description: Wireless interface
product: WiFi Link 6000 Series
vendor: Intel Corporation
capabilities: pm msi pciexpress bus_master cap_list ethernet physical
wireless configuration: broadcast=yes driver=iwlagn
driverversion=3.0.6-tuxonice firmware=9.221.4.1 build 25532 latency=0
link=no multicast=yes wireless=IEEE 802.11abgn

After switching on, the dmesg says:
iwlagn :02:00.0: RF_KILL bit toggled to enable radio.
usb 2-1.7: new full speed USB device number 78 using ehci_hcd

but wireless control doesn't indicate that it's on and nm-applies says
the wireless is disabled by hw switch.

It worked on tuxonice-sources-2.6.38-r1 but now it doesn't work on it
too :-( Current kernel is tuxonice-sources-3.0.6 (planing upgrade to
3.0.17, but only with wireless :-) ).

Please, could someone help me? I have no idea where to start :-\

Thanks

 Pat
   
   Do you have the rfkill module loaded?
   
   Regards,
   Florian Philipp
   
   Yes.
   rfkill 15504  1 cfg80211
  
  I think Florian meant the rfkill package:
  
  net-wireless/rfkill
  
  Install it, and run rfkill list; mine says:
  
  # rfkill list
  0: sony-wifi: Wireless LAN
  Soft blocked: no
  Hard blocked: no
  1: sony-bluetooth: Bluetooth
  Soft blocked: no
  Hard blocked: no
  3: phy0: Wireless LAN
  Soft blocked: no
  Hard blocked: no
  31: hci0: Bluetooth
  Soft blocked: no
  Hard blocked: no
  
  As you can see, all of them say Hard blocked: no. If in your case
  one says Hard blocked: yes, you can change it with rfkill unblock
  wlan0, for example.
 
 ... or pushing the wireless button on the machine?
 
 -- 
 Regards,
 Mick

Hi,

I've installed the rfkill and when hw switch is off:
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: yes

And when on:
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no

Thanks for help

 Pat



Freehosting PIPNI - http://www.pipni.cz/



Re: [gentoo-user] lost wireless network

2012-01-28 Thread pat
On Sat, 28 Jan 2012 15:42:52 -0500, Michael Mol wrote
 On Sat, Jan 28, 2012 at 3:31 PM, pat p...@xvalheru.org wrote:
  On Sat, 28 Jan 2012 19:08:17 +, Mick wrote
  On Saturday 28 Jan 2012 17:00:35 Canek Peláez Valdés wrote:
   On Sat, Jan 28, 2012 at 6:52 AM, pat p...@xvalheru.org wrote:
On Sat, 28 Jan 2012 13:46:37 +0100, Florian Philipp wrote
   
Am 28.01.2012 12:38, schrieb pat:
 Hi,

 I've used wireless network about half of a year ago. Now I need it 
 and
 it doesn't start :-( My gentoo is up to date.

 I'm using network manager (and it's nm-applet).

 Wireless info:
 description: Wireless interface
 product: WiFi Link 6000 Series
 vendor: Intel Corporation
 capabilities: pm msi pciexpress bus_master cap_list ethernet 
 physical
 wireless configuration: broadcast=yes driver=iwlagn
 driverversion=3.0.6-tuxonice firmware=9.221.4.1 build 25532 
 latency=0
 link=no multicast=yes wireless=IEEE 802.11abgn

 After switching on, the dmesg says:
 iwlagn :02:00.0: RF_KILL bit toggled to enable radio.
 usb 2-1.7: new full speed USB device number 78 using ehci_hcd

 but wireless control doesn't indicate that it's on and nm-applies 
 says
 the wireless is disabled by hw switch.

 It worked on tuxonice-sources-2.6.38-r1 but now it doesn't work on 
 it
 too :-( Current kernel is tuxonice-sources-3.0.6 (planing upgrade to
 3.0.17, but only with wireless :-) ).

 Please, could someone help me? I have no idea where to start :-\

 Thanks

      Pat
   
Do you have the rfkill module loaded?
   
Regards,
Florian Philipp
   
Yes.
rfkill                 15504  1 cfg80211
  
   I think Florian meant the rfkill package:
  
   net-wireless/rfkill
  
   Install it, and run rfkill list; mine says:
  
   # rfkill list
   0: sony-wifi: Wireless LAN
       Soft blocked: no
       Hard blocked: no
   1: sony-bluetooth: Bluetooth
       Soft blocked: no
       Hard blocked: no
   3: phy0: Wireless LAN
       Soft blocked: no
       Hard blocked: no
   31: hci0: Bluetooth
       Soft blocked: no
       Hard blocked: no
  
   As you can see, all of them say Hard blocked: no. If in your case
   one says Hard blocked: yes, you can change it with rfkill unblock
   wlan0, for example.
 
  ... or pushing the wireless button on the machine?
 
  --
  Regards,
  Mick
 
  Hi,
 
  I've installed the rfkill and when hw switch is off:
  0: phy0: Wireless LAN
         Soft blocked: no
         Hard blocked: yes
 
  And when on:
  0: phy0: Wireless LAN
         Soft blocked: no
         Hard blocked: no
 
  Thanks for help
 
 That means there's a physical toggle switch somewhere on the device
 that's turning the wireless access on and off. Sometimes that's a
 switch on the side, sometimes that's a dedicated button, and 
 sometimes that's something like Fn+(some other keyboard key).
 
 My old Acer Aspire laptop had a wireless toggle button that the side
 of my left hand kept resting on. If my wireless dropped, the first
 thing I always did was poke that button a couple times. (This was
 before any Linux distro properly supported toggling the LED on that
 particular button...)
 
 -- 
 :wq

Sorry my mistake, the first output is with physical toggle switch off and
second one with it on.

My wireless worked about 6 months ago since then I've didn't use it and did a
lot of system updates. Now I need it and it doesn't work. What I should to try
have it back?

Thanks

 Pat




Freehosting PIPNI - http://www.pipni.cz/



[gentoo-user] [OT] max size of bash variable value

2011-11-30 Thread pat
Hi all,

Sorry for this off topic post, but I've been asked how/where to find maximum
size of bash variable value. I've search and found 4M, 1k, 4k ... . But didn't
found how/where this limit is set. I know, that for C it's e.g. sizeof(int),
but for bash?

Thanks for help

 Pat


Freehosting PIPNI - http://www.pipni.cz/



Re: [gentoo-user] [OT] max size of bash variable value

2011-11-30 Thread pat
On Wed, 30 Nov 2011 14:18:35 +0100, Michael Schreckenbauer wrote
 Am Mittwoch, 30. November 2011, 13:19:56 schrieb pat:
  Hi all,
  
  Sorry for this off topic post, but I've been asked how/where to find maximum
  size of bash variable value. I've search and found 4M, 1k, 4k ... . But
  didn't found how/where this limit is set. I know, that for C it's e.g.
  sizeof(int), but for bash?
 
 afaik you can query that value with
 getconf ARG_MAX
 How to set it, I have no idea.
 
  Thanks for help
   Pat
 
 Best,
 Michael

Thanks a lot that's exactly they looking for ... I hope :-)

Thanks

 Pat


Freehosting PIPNI - http://www.pipni.cz/



Re: [gentoo-user] scanner CanoScan LiDE210

2011-05-09 Thread pat
On Sun, 8 May 2011 23:28:39 +0100, Neil Bothwick wrote
 On Mon, 9 May 2011 00:17:42 +0200, pat wrote:
 
  I've bought USB scanner CanoScan LiDE210 which is listed with status
  complete on sane-project. The driver backend name is genesys.
  
  I've followed the instructions on [1]. The sane-find-device -q finds
  my scanner as:
  found USB scanner (vendor=0x04a9 [Canon], product=0x190a [CanoScan],
  chip=GL848+) at libusb:002:006
  
  But when trying to use xsane or scanimage -L ends with information
  that there's not a scanner device.
 
 What happens when you run scanimage -L as root? When I've seen this
 problem before, it was caused by permissions in /dev/usb.
 

Hi,

Nothing :-( Same output as for user: No scanners were identified. If you were
expecting something different, check that the scanner is plugged in, turned on
and detected by the sane-find-scanner tool (if appropriate). Please read the
documentation which came with this software (README, FAQ, manpages).

 Pat



Freehosting PIPNI - http://www.pipni.cz/



[SOLVED] Re: [gentoo-user] scanner CanoScan LiDE210

2011-05-09 Thread pat
On Mon, 9 May 2011 09:15:33 +0100, Neil Bothwick wrote
 On Mon, 9 May 2011 08:41:04 +0200, pat wrote:
 
  Nothing :-( Same output as for user: No scanners were identified. If
  you were expecting something different, check that the scanner is
  plugged in, turned on and detected by the sane-find-scanner tool (if
  appropriate). Please read the documentation which came with this
  software (README, FAQ, manpages).
 
 An update to sane-backends appeared when I updated today. This adds
 entries for the LiDE210 to genesys.conf, so updating to 1.0.22 may solve
 this for you.
 
 -- 
 Neil Bothwick
 
 There is never enough beer, sex or disk space!

Thanks Neil !!! It works :-D

 Pat


Freehosting PIPNI - http://www.pipni.cz/



[gentoo-user] scanner CanoScan LiDE210

2011-05-08 Thread pat
Hello,

I've bought USB scanner CanoScan LiDE210 which is listed with status
complete on sane-project. The driver backend name is genesys.

I've followed the instructions on [1]. The sane-find-device -q finds my
scanner as:
found USB scanner (vendor=0x04a9 [Canon], product=0x190a [CanoScan],
chip=GL848+) at libusb:002:006

But when trying to use xsane or scanimage -L ends with information that
there's not a scanner device.

I've found that there are not records for my scanner in these configuration 
files:
/etc/hotplug/usb/libsane.usermap
/etc/sane.d/genesys.conf
/lib/udev/rules.d/41-libsane.rules
so, I've added the correct records, but nothing :-(

Please, could someone help?

Thanks

 Pat


[1] http://en.gentoo-wiki.com/wiki/USB_Scanner



Freehosting PIPNI - http://www.pipni.cz/



Re: [gentoo-user] Re: broken X.org

2011-03-01 Thread pat
On Tue, 01 Mar 2011 12:31:47 -0800, walt wrote
 On 03/01/2011 11:50 AM, pat wrote:
 
 
  When using X.org with intel driver there's an error in log:
  FATAL: Module fbcon not found.
 
 I know nothing about Intel graphics, but my guess is that your 
 kernel has no framebuffer console support.  It's a relatively new 
 addition to the kernel graphics config menu, and it's easy to overlook.
 
 I don't know that the intel driver needs fb/fbcon support, but 
 that's what the error message complains about so it's worth a look.
 

Well I've installed uvesafb and i915 directly to kernel: DRM_I915 and
FB_UVESA, so I think this is not the case.

Thanks

 Pat


Freehosting PIPNI - http://www.pipni.cz/



[SOLVED] Re: [gentoo-user] Re: broken X.org

2011-03-01 Thread pat
On Tue, 1 Mar 2011 21:51:00 +0100, pat wrote
 On Tue, 01 Mar 2011 12:31:47 -0800, walt wrote
  On 03/01/2011 11:50 AM, pat wrote:
  
  
   When using X.org with intel driver there's an error in log:
   FATAL: Module fbcon not found.
  
  I know nothing about Intel graphics, but my guess is that your 
  kernel has no framebuffer console support.  It's a relatively new 
  addition to the kernel graphics config menu, and it's easy to overlook.
  
  I don't know that the intel driver needs fb/fbcon support, but 
  that's what the error message complains about so it's worth a look.
 
 
 Well I've installed uvesafb and i915 directly to kernel: DRM_I915 and
 FB_UVESA, so I think this is not the case.
 
 Thanks
 
  Pat

I've try to downgrade some packages and the winner is xf86-video-linux ...
downgraded to version 2.13.0.

Thanks

 Pat



Freehosting PIPNI - http://www.pipni.cz/



[gentoo-user] vbox gentoo guest mac address issue

2010-06-27 Thread pat
Hello,

I have running gentoo vbox guest image. I've made its clone using VBoxManage
clonehd ... and setup new vbox guest using this system copy. Everything is
same except MAC address. When starting system from this cloned image I've got
an eth0 failure. It looks like the original MAC address is somewhere cached in
the cloned system. I've googled how to reset this cached MAC address but
without luck :-(

Please, could you help me?

Thanks

 Pat



Freehosting PIPNI - http://www.pipni.cz/



[SOLVED] Re: [gentoo-user] vbox gentoo guest mac address issue

2010-06-27 Thread pat
On Sun, 27 Jun 2010 23:45:00 +0200, pat wrote
 Hello,
 
 I have running gentoo vbox guest image. I've made its clone using VBoxManage
 clonehd ... and setup new vbox guest using this system copy. 
 Everything is same except MAC address. When starting system from 
 this cloned image I've got an eth0 failure. It looks like the 
 original MAC address is somewhere cached in the cloned system. I've 
 googled how to reset this cached MAC address but without luck :-(
 
 Please, could you help me?
 
 Thanks
 
  Pat

OK, last try solved the issue :-) Edit MAC address for eth0
/etc/udev/rules.d/70-persistent-net.rules and comment other eth interfaces.

 Pat



Freehosting PIPNI - http://www.pipni.cz/



[gentoo-user] turn on wifi enables also bluetooth

2010-06-17 Thread pat
Hello,

I have Dell Latitude E4300 notebook where the wifi and bluetooth (BT) is
turned on by one HW switch. So, on windows if the switch is turned on there is
possible to turn off one of these devices (from windows try stop the device).
Is there something similar in Linux? Some application which is opened right
after turning on of the switch and the application allow me to choose to turn
on wifi or bt or both? Or is there a script which can be used to turn of the
device even if the switch is on?

In common I don't want to turn on BT when using wifi and vice versa.

Thanks to all for help

 Pat


Freehosting PIPNI - http://www.pipni.cz/



Re: [gentoo-user] cannot setup acpi

2009-10-05 Thread pat
On Sat, 3 Oct 2009 23:40:01 +0900, daid kahl wrote
 I'm trying to setup acpi, but I cannot get it work 
 
 Hello,
 
 I didn't set up acpi for power save yet, but I did do it for getting my 
 laptop to go to sleep on lid close, and it was really easy. Since I imagine 
 this might be a function you also want (and I got it working really easily), 
 you might try your hand at this first to be sure acpi events are generally 
 working.
 
 If others had given some more knowledgeable and specific reply, I'd omit 
 comment, since my response is somewhat peripheral. But at least this might be 
 somewhere to start.
 
 I attach my log file for setting up sleep (I omitted what kernel 
 configurations I set, so if you need me to try and figure that out, let me 
 know, since I should have included it in my own log file). I think this 
 requires at least kernel 2.6.27.
 
 ~daid

Thanks, but problem is the events are not fired and I'm afraid I've did 
somethink wrong during kernel configuration - missing something :-(

Thnaks for your time.

 Pat

 


---
Modern Hosting PIPNI - http://www.pipni.cz/

[SOLVED] Re: [gentoo-user] hal and keyboard layout switching

2009-09-08 Thread pat
On Tue, 08 Sep 2009 00:39:25 +0200, Pat wrote
 Hello,
 
 I want to setup hal to enable me switching between two keyboard layouts.
 My original configuration in xorg.conf is:
 Section InputDevice
 Identifier  Keyboard0
 Driver  kbd
 Option  XkbModel pc104
 Option  XkbLayout us,cz
 Option  XkbOptions grp:shift_toggle,grp_led:num
 EndSection
 
 I've searched web and got some information, but I'm doing something wrong.
 
 I've created file /etc/hal/fdi/policy/x11-input.fdi and configure it 
 like: device match key=info.capabilities contains=input.keyboard
 merge key=input.x11_options.XkbModel type=stringpc104/merge
 merge key=input.x11_options.XkbLayout type=stringus,cz/merge
 merge key=input.x11_options.XkbOptions
 type=stringgrp:shifts_toggle/merge
 /match
 /device
 
 I have installed hal and running hald. The xorg-server version is 
 1.5.3-r6.
 
 Thanks for help
 
   Pat
 


Sorry !!! I have to restart hald and not only X server !!!

 Pat


---
Modern Hosting PIPNI - http://www.pipni.cz/



[gentoo-user] hal and keyboard layout switching

2009-09-07 Thread Pat
Hello,

I want to setup hal to enable me switching between two keyboard layouts.
My original configuration in xorg.conf is:
Section InputDevice
Identifier  Keyboard0
Driver  kbd
Option  XkbModel pc104
Option  XkbLayout us,cz
Option  XkbOptions grp:shift_toggle,grp_led:num
EndSection

I've searched web and got some information, but I'm doing something wrong.

I've created file /etc/hal/fdi/policy/x11-input.fdi and configure it like:
device
match key=info.capabilities contains=input.keyboard
merge key=input.x11_options.XkbModel type=stringpc104/merge
merge key=input.x11_options.XkbLayout type=stringus,cz/merge
merge key=input.x11_options.XkbOptions
type=stringgrp:shifts_toggle/merge
/match
/device

I have installed hal and running hald. The xorg-server version is 1.5.3-r6.

Thanks for help

Pat



[SOLVED] Re: [gentoo-user] Re: crashing X.org

2009-08-13 Thread pat
On Thu, 13 Aug 2009 09:33:09 +0200, Remy Blank wrote
 Pat wrote:
  I have interesting problem. When I running a video (using mplayer) and
  another window partially overlap the video window the X.org crashes
  (better say restarts) and the login screen appears.
  
  The log is clean. The graphics card is intel i915 (or i945?). Using:
  xf86-video-intel-2.6.3-r1
  xorg-server-1.5.3-r6
  
  But this starts since I've bought new laptop Dell Latitude E4300.
 
 I had the same issue with an E6500, and it seems that a later 
 version of the video driver fixed it. Add this to your
/etc/portage/package.keywords:
 
   ~x11-drivers/xf86-video-intel-2.7.1
 
 and re-emerge xf86-video-intel.
 
 -- Remy

Hello,

Thanks !!! It solves my problem.

 Pat


---
Modern Hosting PIPNI - http://www.pipni.cz/



[gentoo-user] crashing X.org

2009-08-12 Thread Pat
Hello,

I have interesting problem. When I running a video (using mplayer) and
another window partially overlap the video window the X.org crashes
(better say restarts) and the login screen appears.

The log is clean. The graphics card is intel i915 (or i945?). Using:
xf86-video-intel-2.6.3-r1
xorg-server-1.5.3-r6

But this starts since I've bought new laptop Dell Latitude E4300.

Thanks for help

Pat
Section ServerLayout
Identifier X.org Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
ModulePath   /usr/lib64/xorg/modules
FontPath built-ins
FontPath /usr/share/fonts/misc/
FontPath /usr/share/fonts/TTF/
FontPath /usr/share/fonts/Type1/
#FontPath /usr/share/fonts/CID/
FontPath /usr/share/fonts/75dpi/
FontPath /usr/share/fonts/100dpi/

#FontPath /usr/share/fonts/sharefonts
FontPath /usr/share/fonts/freefonts
FontPath /usr/share/fonts/freefont-ttf
#FontPath /usr/share/fonts/lfp-fix
#FontPath /usr/share/fonts/urw-fonts
#FontPath /usr/share/fonts/terminus
Fontpath /usr/share/fonts/corefonts
FontPath /usr/share/fonts/ttf-bitstream-vera
#FontPath /usr/share/fonts/unifont
EndSection

Section Module
Load  glx
Load  extmod
Load  xtrap
Load  record
Load  dbe
Load  dri
#Load  freetype
EndSection

Section InputDevice
Identifier  Keyboard0
Driver  kbd
Option  XkbModel pc104
Option  XkbLayout us,cz
#Option  XkbOptions grp:shift_toggle
#Option  XkbOptions grp:shift_toggle,grp_led:caps
Option  XkbOptions grp:shift_toggle,grp_led:num
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol auto
#Option Device /dev/input/mice
Option  Device /dev/input/mouse0
Option  ZAxisMapping 4 5 6 7
EndSection

Section Monitor
Identifier   Monitor0
VendorName   Monitor Vendor
ModelNameMonitor Model
Option   DPMS
#Option   ReducedBlanking
EndSection

Section Monitor
Identifier  Monitor1
VendorName  ViewSonic
ModelName   VA1616w
Option  DPMS
#Option  ReducedBlanking
Modeline1366x768   85.25  1368 1440 1576 1784  768 771 781 798 
-hsync +vsync
EndSection


Section Device
### Available Driver options are:-
### Values: i: integer, f: float, bool: True/False,
### string: String, freq: f Hz/kHz/MHz
### [arg]: arg optional
#Option NoAccel   # [bool]
#Option SWcursor  # [bool]
#Option ColorKey  # i
#Option CacheLines# i
#Option Dac6Bit   # [bool]
#Option DRI   # [bool]
#Option NoDDC # [bool]
#Option ShowCache # [bool]
#Option XvMCSurfaces  # i
#Option PageFlip  # [bool]
Identifier  Card0
Driver  intel
VendorName  Intel Corporation
BoardName   Unknown Board
BusID   PCI:0:2:0
EndSection

Section Screen
Identifier Screen0
Device Card0
MonitorMonitor0
SubSection Display
Viewport   0 0
Depth 24
Modes 1280x800
Virtual   2048 2048
EndSubSection
EndSection

Section DRI
Mode   0666
EndSection
#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.29-gentoo-r5
# Sun Jun 21 00:05:55 2009
#
CONFIG_64BIT=y
# CONFIG_X86_32 is not set
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_ARCH_DEFCONFIG=arch/x86/configs/x86_64_defconfig
CONFIG_GENERIC_TIME=y
CONFIG_GENERIC_CMOS_UPDATE=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_HAVE_LATENCYTOP_SUPPORT=y
CONFIG_FAST_CMPXCHG_LOCAL=y
CONFIG_MMU=y
CONFIG_ZONE_DMA=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_RWSEM_GENERIC_SPINLOCK=y
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_DEFAULT_IDLE=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_HAVE_CPUMASK_OF_CPU_MAP=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_ZONE_DMA32=y

[gentoo-user] jumping mouse cursor

2009-08-12 Thread Pat
Hi,

And another important problem. When I drag a window the mouse pointer
(including the window) jumping. Sometimes the mouse pointer moves during
the double click. After while the the mouse freezes and only switch to
text console (ctrl+alt+fx) unfreezes the mouse.

The dmesg gives:
psmouse.c: DualPoint TouchPad at isa0060/serio1/input0 lost sync at byte 1
psmouse.c: DualPoint TouchPad at isa0060/serio1/input0 - driver resynched.

In my laptop I have track point and touch pad. In X.org I'm using only
the track point.

Thanks for help.

Pat
Section ServerLayout
Identifier X.org Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
ModulePath   /usr/lib64/xorg/modules
FontPath built-ins
FontPath /usr/share/fonts/misc/
FontPath /usr/share/fonts/TTF/
FontPath /usr/share/fonts/Type1/
#FontPath /usr/share/fonts/CID/
FontPath /usr/share/fonts/75dpi/
FontPath /usr/share/fonts/100dpi/

#FontPath /usr/share/fonts/sharefonts
FontPath /usr/share/fonts/freefonts
FontPath /usr/share/fonts/freefont-ttf
#FontPath /usr/share/fonts/lfp-fix
#FontPath /usr/share/fonts/urw-fonts
#FontPath /usr/share/fonts/terminus
Fontpath /usr/share/fonts/corefonts
FontPath /usr/share/fonts/ttf-bitstream-vera
#FontPath /usr/share/fonts/unifont
EndSection

Section Module
Load  glx
Load  extmod
Load  xtrap
Load  record
Load  dbe
Load  dri
#Load  freetype
EndSection

Section InputDevice
Identifier  Keyboard0
Driver  kbd
Option  XkbModel pc104
Option  XkbLayout us,cz
#Option  XkbOptions grp:shift_toggle
#Option  XkbOptions grp:shift_toggle,grp_led:caps
Option  XkbOptions grp:shift_toggle,grp_led:num
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol auto
#Option Device /dev/input/mice
Option  Device /dev/input/mouse0
Option  ZAxisMapping 4 5 6 7
EndSection

Section Monitor
Identifier   Monitor0
VendorName   Monitor Vendor
ModelNameMonitor Model
Option   DPMS
#Option   ReducedBlanking
EndSection

Section Monitor
Identifier  Monitor1
VendorName  ViewSonic
ModelName   VA1616w
Option  DPMS
#Option  ReducedBlanking
Modeline1366x768   85.25  1368 1440 1576 1784  768 771 781 798 
-hsync +vsync
EndSection


Section Device
### Available Driver options are:-
### Values: i: integer, f: float, bool: True/False,
### string: String, freq: f Hz/kHz/MHz
### [arg]: arg optional
#Option NoAccel   # [bool]
#Option SWcursor  # [bool]
#Option ColorKey  # i
#Option CacheLines# i
#Option Dac6Bit   # [bool]
#Option DRI   # [bool]
#Option NoDDC # [bool]
#Option ShowCache # [bool]
#Option XvMCSurfaces  # i
#Option PageFlip  # [bool]
Identifier  Card0
Driver  intel
VendorName  Intel Corporation
BoardName   Unknown Board
BusID   PCI:0:2:0
EndSection

Section Screen
Identifier Screen0
Device Card0
MonitorMonitor0
SubSection Display
Viewport   0 0
Depth 24
Modes 1280x800
Virtual   2048 2048
EndSubSection
EndSection

Section DRI
Mode   0666
EndSection


Re: [gentoo-user] problem with X.org (i915) [SOLVED]

2009-02-22 Thread Pat
pat wrote:
 On Mon, 26 Jan 2009 16:08:33 +0100, Pat wrote
 Hello,

 I'm using Gentoo on my laptop and quite often the graphic output goes
 mad. There are messed lines and the contend is not readable. I've 
 made screen shots (attached). Please, could someone help me?

 In the system log I've found these lines:
 [drm] Initialized i915 1.6.0 20060119 on minor 0
 [drm:i915_getparam] *ERROR* Unknown parameter 5
 [drm:i915_initialize] *ERROR* can not ioremap virtual address for 
 ring buffer

 The system configuration:
 amd64, 2.6.26-gentoo-r4, Core2 Duo CPU, DRM i915 graphics driver
 ~amd64: xorg-server-1.5.3-r1, xf86-video-intel-2.5.1-r1, xorg-x11-
 7.4, mesa-7.2

 Thanks a lot for the help

  Pat
 
 I've forget to attach the screen shots, sorry :-\
 

Switching to newer kernel (I've switched to 2.6.27-gentoo-r8) fixed to
problem.

Pat



[gentoo-user] problem with X.org (i915)

2009-01-26 Thread Pat
Hello,

I'm using Gentoo on my laptop and quite often the graphic output goes
mad. There are messed lines and the contend is not readable. I've made
screen shots (attached). Please, could someone help me?

In the system log I've found these lines:
[drm] Initialized i915 1.6.0 20060119 on minor 0
[drm:i915_getparam] *ERROR* Unknown parameter 5
[drm:i915_initialize] *ERROR* can not ioremap virtual address for ring
buffer

The system configuration:
amd64, 2.6.26-gentoo-r4, Core2 Duo CPU, DRM i915 graphics driver
~amd64: xorg-server-1.5.3-r1, xf86-video-intel-2.5.1-r1, xorg-x11-7.4,
mesa-7.2

Thanks a lot for the help

Pat



[gentoo-user] volume buttons doesn't work

2009-01-03 Thread Pat
Hello,

I've bought Dell Latitude E4300 and start to install Gentoo on it, but
the volume buttons don't work. Please, could someone give me hint where
I have to start to fix it?

Thanks a lot

Pat

P.S. kernel 2.6.26-gentoo-r4, architecture amd64



[gentoo-user] fonts problem

2009-01-03 Thread Pat
Hello,

I'm trying to install new system based on amd64 and there are the font
problems during the installation.
1) the skype menus are blank
2) Eterm giving this error message:
Eterm:  Error:  Unable to load font
-adobe-helvetica-medium-r-normal--10-100-75-75-p-56-iso8859-1.
Falling back on fixed
Eterm:  Error:  Unable to load font
-misc-fixed-medium-r-semicondensed--13-*-*-*-c-*-iso10646-1.  Falling
back on k14
Eterm:  FATAL:  Couldn't load the fallback font either.  Giving up.

Can someone help?

Thanks a lot

Pat

P.S. kernel 2.6.26-gentoo-r4, architecture amd64, X.org 7.4 (unmasked by
~amd64)



Re: [gentoo-user] [bit OT] 32 vs. 64 bits (Thanks)

2008-12-09 Thread pat
On Mon, 8 Dec 2008 14:59:00 +0100, pat wrote
 Hello,
 
 I've bought a new laptop with Core 2 Duo processor which is 64 bit. 
 My question is if applications (see below) compiled and running over 
 64 bits are stable enough or if I should compile for 32 bits.
 
 The applications are:
 - Seamoneky/Firefox
 - Java
 - Flash
 - Audacious
 - mplayer
 - VirtualBox/VMware
 - Qemu
 - Kerberos/OpenLDAP/OpenSSH (for these I think they are stable)
 - X.org/fluxbox
 - system suspending
 
 I have 4GB RAM and I know better is to compile for 64 bits, but for 
 me is more important stability.
 
 Thanks a lot
 
  Pat


Thanks for all advices. I'm going to try amd64 and I'll see :-D

Thanks

 Pat




[gentoo-user] [bit OT] 32 vs. 64 bits

2008-12-08 Thread pat
Hello,

I've bought a new laptop with Core 2 Duo processor which is 64 bit. My
question is if applications (see below) compiled and running over 64 bits are
stable enough or if I should compile for 32 bits.

The applications are:
- Seamoneky/Firefox
- Java
- Flash
- Audacious
- mplayer
- VirtualBox/VMware
- Qemu
- Kerberos/OpenLDAP/OpenSSH (for these I think they are stable)
- X.org/fluxbox
- system suspending

I have 4GB RAM and I know better is to compile for 64 bits, but for me is more
important stability.

Thanks a lot

 Pat



Re: [gentoo-user] virtualbox networking [CONTINUE]

2008-09-19 Thread pat
On Wed, 17 Sep 2008 21:11:29 -0300, Norberto Bensa wrote
 Quoting pat [EMAIL PROTECTED]:
 
  Hilco Wijbenga wrote:
  Or my be another question :-) I need to run more then one guest OS, so
  I expect I need to create next bridge, but how?
 
 No no.. You're confusing bridges and interfaces. You make ONE bridge 
  and add interfaces to it. Search my email with scripts to create vb 
  interfaces on-demand.
 
 Regards,
 Norberto
 

Thanks a lot. It works for me now :-)

 Pat



Re: [gentoo-user] virtualbox networking [SOLVED]

2008-09-17 Thread pat

Thanks to all !!! It works :-)

Pat



[gentoo-user] virtualbox networking

2008-09-16 Thread pat

Hello,

I'm trying to setup virtualbox networking. I went through the tutorial at gentoo 
wiki, but I have troubles ... obvious :-(


In the howto there's called /sbin/ip, but I have no idea in which package this 
program rise ;-)


What I need is the bidirectional communication between host and guest.

Thanks for help

Pat



Re: [gentoo-user] Re: ctrl+alt+fx doesn't work

2008-09-05 Thread pat

Dale wrote:

Grant Edwards wrote:

On 2008-09-05, Dale [EMAIL PROTECTED] wrote:
 

pat wrote:
   
Well, I found DontVTSwitch and set it to off in the X.org 
keyboard section

but doesn't help. Is it what you have meant?

Thanks

 Pat



That may be one but there is also this one:

#OptionNoTrapSignals

# Uncomment this to disable the CrtlAltFn VT switch sequence
# (where n is 1 through 12).  This allows clients to receive these key
# events.

I think if it is not there, it will work.  Basically, it is disabled 
by default.  I don't have that line at all in my file and it works fine.



I have neither NoTrapSignals nor DontVTSwitch, but I've never
been able to get any of the CtrlAlt keys to work on a
couple of my machines.

  


My xorg.conf file is small.  I attached a copy.  Maybe a side by side or 
a diff will help.  Maybe it is something else that loads up that I have 
that is missing for yours.


Dale

:-)  :-)




Setting NoTrapSignals doesn't help :-(

Ano other ideas?

Thanks a lot

Pat



Re: [gentoo-user] Re: ctrl+alt+fx doesn't work [SOLVED]

2008-09-05 Thread pat
On Fri, 05 Sep 2008 17:04:14 -0500, Dale wrote
 pat wrote:
  Dale wrote:
  Grant Edwards wrote:
  On 2008-09-05, Dale [EMAIL PROTECTED] wrote:
   
  pat wrote:

  Well, I found DontVTSwitch and set it to off in the X.org 
  keyboard section
  but doesn't help. Is it what you have meant?
 
  Thanks
 
   Pat
 
  
  That may be one but there is also this one:
 
  #OptionNoTrapSignals
 
  # Uncomment this to disable the CrtlAltFn VT switch sequence
  # (where n is 1 through 12).  This allows clients to receive these key
  # events.
 
  I think if it is not there, it will work.  Basically, it is 
  disabled by default.  I don't have that line at all in my file and 
  it works fine.
  
 
  I have neither NoTrapSignals nor DontVTSwitch, but I've never
  been able to get any of the CtrlAlt keys to work on a
  couple of my machines.
 

 
  My xorg.conf file is small.  I attached a copy.  Maybe a side by side 
  or a diff will help.  Maybe it is something else that loads up that I 
  have that is missing for yours.
 
  Dale
 
  :-)  :-)
 
 
 
  Setting NoTrapSignals doesn't help :-(
 
  Ano other ideas?
 
  Thanks a lot
 
  Pat
 
 
 
 Does your modules list look normal?  I'm not really sure what could 
 cause this or what it is that makes it work.  Not even sure that the 
 kernel makes a difference really.
 
 Dale
 
 :-)  :-)

Problem is this line in the keyboard section:
Option XkbLayout us,cz

Simply, enabling another language disable switching to console (I've check it
for another languages too). Ugh =8-()

If someone is able to explain why that happen and how to solve it for two
languages I'll be glad :-)

But right now I'm setting up the dualhead display, so I need to switch to
console ... after that I'll turn on the language :-D

Thanks to Dale and others for help

 Pat




[gentoo-user] ctrl+alt+fx doesn't work

2008-09-04 Thread pat
Hello,

Ages ago switching from X to console gone :-( I need this functionality right
now, but cannot find where to start ... I've googled a lot but without luck.
Please can someone point me where I should to start? I think the functionality
gone when I change kernel, but I don't remember the version ... .

Thanks for help

 Pat



Re: [gentoo-user] ctrl+alt+fx doesn't work

2008-09-04 Thread pat
On Thu, 4 Sep 2008 13:50:37 -0700 (PDT), BRM wrote
 Is it your keyboard? I have a couple keyboards (e.g. Microsoft 
 Keyboards) that toggle the functionality of the Function keys. If I 
 don't have the Function Lock key set correctly, then that 
 functionality will not work. Just press the appropriate key if that 
 is the case and it should work. (Took me a while the first time to 
 figure that one out too. A little annoying when it gets pressed 
 accidentally.)
 
 Ben
 
 - Original Message 
 From: pat [EMAIL PROTECTED]
 To: Gentoo gentoo-user@lists.gentoo.org
 Sent: Thursday, September 4, 2008 4:13:23 PM
 Subject: [gentoo-user] ctrl+alt+fx doesn't work
 
 Hello,
 
 Ages ago switching from X to console gone :-( I need this 
 functionality right now, but cannot find where to start ... I've 
 googled a lot but without luck. Please can someone point me where I 
 should to start? I think the functionality gone when I change kernel,
  but I don't remember the version ... .
 
 Thanks for help
 
  Pat

It's my IBM TP T43 keyboard and th functionality worked well ... until update
of something ... I have no idea what I changed :-(

Please could you explain to me what do you mean by Function Lock? I don't
know what it can be :-(

Thanks

 Pat



Re: [gentoo-user] ctrl+alt+fx doesn't work

2008-09-04 Thread pat
On Thu, 04 Sep 2008 18:03:44 -0500, Dale wrote
 BRM wrote:
  Is it your keyboard? I have a couple keyboards (e.g. Microsoft Keyboards)
that toggle the functionality of the Function keys. If I don't have the
Function Lock key set correctly, then that functionality will not work. Just
press the appropriate key if that is the case and it should work. (Took me a
while the first time to figure that one out too. A little annoying when it
gets pressed accidentally.)
 
  Ben
 
 
 
  - Original Message 
  From: pat [EMAIL PROTECTED]
  To: Gentoo gentoo-user@lists.gentoo.org
  Sent: Thursday, September 4, 2008 4:13:23 PM
  Subject: [gentoo-user] ctrl+alt+fx doesn't work
 
  Hello,
 
  Ages ago switching from X to console gone :-( I need this functionality 
  right
  now, but cannot find where to start ... I've googled a lot but without luck.
  Please can someone point me where I should to start? I think the 
  functionality
  gone when I change kernel, but I don't remember the version ... .
 
  Thanks for help
 
   Pat
 
 
 
 
 I also think there is a setting in xorg.conf that will disable this 
 feature.  May want to check there.
 
 Dale
 
 :-)  :-)
 
 P.S.  What's up with the top posting?

Well, I found DontVTSwitch and set it to off in the X.org keyboard section
but doesn't help. Is it what you have meant?

Thanks

 Pat 



[gentoo-user] virtualbox-ose build failed

2008-08-31 Thread pat
Hello,

I'm trying to build virtualbox-ose, but it fails :-( I've googled but without
luck.

Error message is:

Checking for Qt4 uic3: 
  ** not found!
 * 
 * ERROR: app-emulation/virtualbox-ose-1.6.4 failed.
 * Call stack:
 *   ebuild.sh, line   49:  Called src_compile
 * environment, line 2756:  Called die
 * The specific snippet of code:
 *   ./configure --with-gcc=$(tc-getCC) --with-g++=$(tc-getCXX)
${myconf} || die configure failed;
 *  The die message:
 *   configure failed
 * 
 * If you need support, post the topmost build error, and the call stack if
relevant.
 * A complete build log is located at
'/var/tmp/portage/app-emulation/virtualbox-ose-1.6.4/temp/build.log'.
 * The ebuild environment file is located at
'/var/tmp/portage/app-emulation/virtualbox-ose-1.6.4/temp/environment'.
 * 

Any suggestions?

Thanks

 Pat



Re: [gentoo-user] virtualbox-ose build failed

2008-08-31 Thread pat
On Sun, 31 Aug 2008 06:45:14 -0500, Dale wrote
 pat wrote:
  Hello,
 
  I'm trying to build virtualbox-ose, but it fails :-( I've googled but 
  without
  luck.
 
  Error message is:
 
  Checking for Qt4 uic3: 
** not found!
   * 
   * ERROR: app-emulation/virtualbox-ose-1.6.4 failed.
   * Call stack:
   *   ebuild.sh, line   49:  Called src_compile
   * environment, line 2756:  Called die
   * The specific snippet of code:
   *   ./configure --with-gcc=$(tc-getCC) --with-g++=$(tc-getCXX)
  ${myconf} || die configure failed;
   *  The die message:
   *   configure failed
   * 
   * If you need support, post the topmost build error, and the call stack if
  relevant.
   * A complete build log is located at
  '/var/tmp/portage/app-emulation/virtualbox-ose-1.6.4/temp/build.log'.
   * The ebuild environment file is located at
  '/var/tmp/portage/app-emulation/virtualbox-ose-1.6.4/temp/environment'.
   * 
 
  Any suggestions?
 
  Thanks
 
   Pat
 
 
 
 
 Do you have qt 4 installed?  It says it can't find a part of qt4 in 
 the error.  If you have it installed, check your USE flags.
 
 Dale
 

make.conf
~
USE=a52 accessibility -apm acpi alsa -arts audiofile browserplugin dbus
divx4linux -directfb -doc dts dvb dvd dvdr dvdread -eds -emacs -emboss flac
gnome -kde kerberos mad mime mmx mozilla nptl nptlonly nsplugin opengl posix
-qt -qt3 -qt3support -qt4 -qt-static -samba slang sse -svga unicode usb v4l
v4l2 videos win32codecs X xinerama -xmms xsl xvid

package.use
~~~
app-emulation/virtualbox-ose additions alsa pulseaudio qt qt3 qt3support qt4

emerge --pretend qt
~~~
[ebuild   R   ] x11-libs/qt-4.3.3

What I have to change or emerge?

Thanks

 Pat



Re: [gentoo-user] virtualbox-ose build failed

2008-08-31 Thread pat
On Sun, 31 Aug 2008 14:18:56 +0200, Daniel Pielmeier wrote
 pat schrieb am 31.08.2008 14:03:
  make.conf
  ~
  USE=a52 accessibility -apm acpi alsa -arts audiofile browserplugin dbus
  divx4linux -directfb -doc dts dvb dvd dvdr dvdread -eds -emacs -emboss flac
  gnome -kde kerberos mad mime mmx mozilla nptl nptlonly nsplugin opengl posix
  -qt -qt3 -qt3support -qt4 -qt-static -samba slang sse -svga unicode usb v4l
  v4l2 videos win32codecs X xinerama -xmms xsl xvid
  
  package.use
  ~~~
  app-emulation/virtualbox-ose additions alsa pulseaudio qt qt3 qt3support qt4
  
  emerge --pretend qt
  ~~~
  [ebuild   R   ] x11-libs/qt-4.3.3
  
  What I have to change or emerge?
 
 Do you have /usr/bin/uic3 installed?

No. Which package contains it?




Re: [gentoo-user] virtualbox-ose build failed

2008-08-31 Thread pat
On Sun, 31 Aug 2008 14:43:03 +0200, Daniel Pielmeier wrote
 pat schrieb am 31.08.2008 14:21:
  On Sun, 31 Aug 2008 14:18:56 +0200, Daniel Pielmeier wrote
  pat schrieb am 31.08.2008 14:03:
  make.conf
  ~
  USE=a52 accessibility -apm acpi alsa -arts audiofile browserplugin dbus
  divx4linux -directfb -doc dts dvb dvd dvdr dvdread -eds -emacs -emboss 
  flac
  gnome -kde kerberos mad mime mmx mozilla nptl nptlonly nsplugin opengl 
  posix
  -qt -qt3 -qt3support -qt4 -qt-static -samba slang sse -svga unicode usb 
  v4l
  v4l2 videos win32codecs X xinerama -xmms xsl xvid
 
  package.use
  ~~~
  app-emulation/virtualbox-ose additions alsa pulseaudio qt qt3 qt3support 
  qt4
 
  emerge --pretend qt
  ~~~
  [ebuild   R   ] x11-libs/qt-4.3.3
 
  What I have to change or emerge?
  Do you have /usr/bin/uic3 installed?
  
  No. Which package contains it?
  
  
 
 
 x11-libs/qt-qt3support-4.4.1
 
 But as you can see I am on qt-4.4.1 already where the qt package has 
 been split up. In qt-4.3.3 it should be part of x11-libs/qt when 
 qt3support is enabled. But you should verify if uic3 is in a 
 different location for 4.3.3.
 
 What gives emerge -pv qt and emerge -pvNDt virtualbox-ose
 
 Regards,
 
 Daniel

Well, I've enabled qt3support in make.conf and the my Qt (4.3.3) library
contains the uic3 source, so I'll see if the Qt rebuild helps :-)

I'll inform if it helped or not.

Thanks

 Pat




Re: [gentoo-user] virtualbox-ose build failed [SOLVED]

2008-08-31 Thread pat
On Sun, 31 Aug 2008 14:49:14 +0200, pat wrote
 On Sun, 31 Aug 2008 14:43:03 +0200, Daniel Pielmeier wrote
  pat schrieb am 31.08.2008 14:21:
   On Sun, 31 Aug 2008 14:18:56 +0200, Daniel Pielmeier wrote
   pat schrieb am 31.08.2008 14:03:
   make.conf
   ~
   USE=a52 accessibility -apm acpi alsa -arts audiofile browserplugin dbus
   divx4linux -directfb -doc dts dvb dvd dvdr dvdread -eds -emacs -emboss
flac
   gnome -kde kerberos mad mime mmx mozilla nptl nptlonly nsplugin opengl
posix
   -qt -qt3 -qt3support -qt4 -qt-static -samba slang sse -svga unicode
usb v4l
   v4l2 videos win32codecs X xinerama -xmms xsl xvid
  
   package.use
   ~~~
   app-emulation/virtualbox-ose additions alsa pulseaudio qt qt3
qt3support qt4
  
   emerge --pretend qt
   ~~~
   [ebuild   R   ] x11-libs/qt-4.3.3
  
   What I have to change or emerge?
   Do you have /usr/bin/uic3 installed?
   
   No. Which package contains it?
   
   
  
  
  x11-libs/qt-qt3support-4.4.1
  
  But as you can see I am on qt-4.4.1 already where the qt package has 
  been split up. In qt-4.3.3 it should be part of x11-libs/qt when 
  qt3support is enabled. But you should verify if uic3 is in a 
  different location for 4.3.3.
  
  What gives emerge -pv qt and emerge -pvNDt virtualbox-ose
  
  Regards,
  
  Daniel
 
 Well, I've enabled qt3support in make.conf and the my Qt (4.3.3) library
 contains the uic3 source, so I'll see if the Qt rebuild helps :-)
 
 I'll inform if it helped or not.
 
 Thanks
 
  Pat

Enabling qt3support solved the problem.

Thanks to all for help.

 Pat



Re: [gentoo-user] disks order

2008-06-16 Thread pat
On Mon, 16 Jun 2008 00:51:26 +0200, Nicolas Sebrecht wrote
 pat [EMAIL PROTECTED] a écrit:
 
  So, if I use Hitachi disk in box and Seagate disk in box, I'll be
  able to define their order in both ways? (udev and UUID).
 
 Define the order is not the real problem. The problem is to be able 
 to mount the file-systems to the correct mount points. Both ways can 
 do that.
 
 -- 
 Nicolas Sebrecht

Thanks to all.

 Pat
-- 
gentoo-user@lists.gentoo.org mailing list



[gentoo-user] disks order

2008-06-15 Thread pat
Hello,

Is it possible to define disk order for the USB disks? For example I have
external disk A and external disk B and I want to bundle disk A always with
/dev/sdd and disk B always with /dev/sde.

Thanks a lot

 Pat
-- 
gentoo-user@lists.gentoo.org mailing list



Re: [gentoo-user] disks order

2008-06-15 Thread pat
On Sun, 15 Jun 2008 18:41:29 +0200, Justin wrote
 Dirk Heinrichs schrieb:
  Am Sonntag, 15. Juni 2008 schrieb pat:

  Hello,
 
  Is it possible to define disk order for the USB disks? For example I have
  external disk A and external disk B and I want to bundle disk A always with
  /dev/sdd and disk B always with /dev/sde.
  
 
  You can use udev to give them any names you like, see 
  http://reactivated.net/writing_udev_rules.html
 
  HTH...
 
  Dirk

 You can also use the UUID to mount it, which let you distinguish 
 between the different usb devices.

So, if I use Hitachi disk in box and Seagate disk in box, I'll be able to
define their order in both ways? (udev and UUID).

Thanks a lot

 Pat

-- 
gentoo-user@lists.gentoo.org mailing list



  1   2   >