Re: Hardware RAID

2009-10-09 Thread Alexander Kraev
Hi,

Check the dmesg output. E.g, `dmesg | grep -i contr` shows:

[1.484080] 3ware 9000 Storage Controller device driver for Linux 
v2.26.02.012. 

[1.720017] scsi2 : 3ware 9000 Storage Controller 
 

[1.720079] 3w-9xxx: scsi2: Found a 3ware 9000 Storage Controller at 
0xfc9ff000, IRQ: 20.

Regards,
Alexander

Kaushal Shriyan wrote:
 Hi,
 
 is there a way to know what type of Hardware RAID has been configured
 on the running ubuntu 8.04 server
 
 Thanks,
 
 Kaushal
 

-- 
ubuntu-server mailing list
ubuntu-server@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server
More info: https://wiki.ubuntu.com/ServerTeam


Re: lsmod shows nothing

2009-09-03 Thread Alexander Kraev
Hi,

No, it's a dedicated server.

modprobe -ls shows:

/lib/modules/2.6.27.9/kernel/drivers/scsi/scsi_wait_scan.ko

Regards,
Sasha

brent timothy saner wrote:
 Alexander Kraev wrote:
 Hi,

 I have a server running on Ubuntu 8.04. I just got an access, so I 
 started to check how the system works and I was confused by the fact 
 that 'lsmod' command shows nothing, '/proc/modules' is also empty. Is it ok?

 Regards,
 Sasha

 
 might be a VPS which uses a shared-kernel system.
 
 i'm guesing modprobe -ls also returns nothing?
 
 do lease it from a company or is it a physical box you have?

-- 
ubuntu-server mailing list
ubuntu-server@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server
More info: https://wiki.ubuntu.com/ServerTeam


Re: Ubuntu Server Tips

2009-08-17 Thread Alexander Kraev
Hi Dave,

Just finished the Russian translations. There is also a typo in the tip #24:

Ubuntu Server Tip: Use pastebinit _top_ copy a file, or output of a 
command to a webpage allowing you to share it with others. e.g. 
pastebinit /proc/cpuinfo or df -h | pastebinit

s/top/to/g

Regards,
Sasha

Dave Walker wrote:
 Dave Walker wrote:
 Hi,

 As blogged [0], we really need some more Ubuntu Server Tips for
 inclusion in the ubuntu-server-tips project.  I won't repeat the
 contents of the blog post, but if anyone has any useful tips - raising a
 bug would be highly appreciated.

 Kind Regards,
 Dave Walker

 [0] http://blog.daviey.com/

   
 Hi All,
 
 Just a followup, the project seems to be gaining momentum.  Currently 32
 tips committed, and translations are happening slowly.  I have pinged
 the ubuntu-translators mailing list asking for more help.
 
 Here is a list of as yet, untouched suggestions:
 http://tinyurl.com/rcnxx5
 
 Currently the process is perhaps flawed, as so far it's been me
 approving suggestions and committing them to source.  I would perhaps
 feel more comfortable if the suggestions so far committed, and future
 ones were also checked by someone else.  Although they seem suitable to
 me; my opinion is of course fallible.
 
 Going forwards, I've already noticed the first duplicate suggestions. 
 As i've been recommending people raise launchpad bugs for a suggestion,
 hopefully LP automatically suggesting possible duplicates at report time
 will help.  However, as this project is likely to become quite large, i
 imagine it's going to be tricky to track duplicates.. So suggestions
 other than grep welcome. :)
 
 So if people want to help:
 * We still need many more suggestions.  Personally i'm finding it quite
 tricky to think of things that perhaps a novice server user would find
 useful, and i suspect the rest of you will agree.  Many of the tips seem
 obvious, until you actually think about them.
 
 * Could do with help processing suggestions:
= In approval (marking as confirmed)
= Improving the suggestion, normally via adding brevity to the
 description
 
 * Translations, i'm keen to try and get and get a base of translations
 done before seeking inclusion in the archives.  Therefore, if people can
 help with this aspect it would be appreciated.
 
 Thanks.
 
 Kind Regards,
 Dave Walker
 

-- 
ubuntu-server mailing list
ubuntu-server@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server
More info: https://wiki.ubuntu.com/ServerTeam


Re: Permissions on /var/www

2009-08-17 Thread Alexander Kraev
Hi Brazen,

Right you are, that was not an appropriate example. I meant that all 
virtual host under the /var/www has to be owned by the same user and 
group www-data in case if you have only one user to manage many virtual 
hosts. www-data as an owner of root directory is not a secure option.

Sasha

James Dinkel wrote:
 On Mon, Aug 17, 2009 at 12:00 PM, Alexander Kraev 
 alexander.kr...@gmail.com mailto:alexander.kr...@gmail.com wrote:
 
 Hi,
 
 It depends on web-server architecture and how many sites you are going
 to run inside /var/www.
 
 root:root is good for /var/www if you are running many sites in
 /var/www. Let's say:
 
 /var/www/example.org http://example.org
 /var/www/example.net http://example.net
 /var/www/sub.example.org http://sub.example.org
 
 Each of these directory has to be owned as www-data:www-data if you use
 only www-data user to manage all virtual hosts and unix_user:www-data in
 case of multi-user virtual host based web server.
 
 It's a quick tip, all depends on your needs and web server's
 architecture.
 
 
  Each of these directory has to be owned as www-data:www-data
 
 This is absolutely not true, and a bad idea for reasons already pointed 
 out in this thread (Roy Sigurd Karlsbakk's email).  Only set www-data as 
 the owner when a web application specifically calls for it and only on 
 the folder or file that it calls for.
 
 For instance, say a web application requires the web server to have 
 write access to /var/www/myapp/uploads/.  Then keep /var/www owned by 
 root.root and perms set to 755, and change just the uploads folder to be 
 owned by www-data.root (or www-data.www-data, or root.www-data with 775 
 perms, it's all the same).
 
 If you do want users without root privileges to be able to modify the 
 directories, then that is ok give them permissions to write to whatever 
 they need, but you do not want to give www-data any more than read 
 permissions unless your web application specifically calls for it.
 
 Brazen

-- 
ubuntu-server mailing list
ubuntu-server@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server
More info: https://wiki.ubuntu.com/ServerTeam


Re: Best IDE in Ubuntu, or Which IDE do you use ?

2009-07-04 Thread Alexander Kraev
Hi,

It depends on language do you use. NetBeans is good for Java 
development. Anjuta is for C/C++ development. There is also QDevelop and 
others.

Regards,
Alexander

bvidinli wrote:
 Which IDE do you use mostly in Ubuntu.
 
 I mean a programming environment where you develop GUI applications
 like old Delphi one, or Visual Studio.NET 
 
 I want to develop GUI applications,
 I use Ubuntu 9.04, I have knowledge of programming, tried a few one in
 Ubuntu but not succeeded to get programming in a straight forward
 way..
 
 
 Thanks.
 

-- 
ubuntu-server mailing list
ubuntu-server@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server
More info: https://wiki.ubuntu.com/ServerTeam


[Bug 384148] Re: Major bug in Console Security help page (affects all version)

2009-06-06 Thread Alexander Kraev
** Visibility changed to: Public

** This bug is no longer flagged as a security vulnerability

-- 
Major bug in Console Security help page (affects all version)
https://bugs.launchpad.net/bugs/384148
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: ubuntu jaunty server - locale problem

2009-05-27 Thread Alexander Kraev
Hi,

Try to add additional locale:

sudo locale-gen ru_RU.UTF-8 (change this)
sudo dpkg-reconfigure locales

then check:

/var/lib/locales/supported.d
/usr/share/i18n/SUPPORTED

Br,
Alex

Aljosa Mohorovic wrote:
 when i try to install croatian support apt-get install
 language-support-hr it installs non-server stuff (like some
 openoffice packages).
 that's not necessary for server edition, are there any plans to split
 language-support-* packages into server and desktop specific packages?
 
 Aljosa Mohorovic
 

-- 
ubuntu-server mailing list
ubuntu-server@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server
More info: https://wiki.ubuntu.com/ServerTeam


[Ecryptfs] [Bug 364015] Re: Support a wrapped-passphrase.ssh, wrapped with an ssh private key

2009-05-12 Thread Alexander Kraev
Hi Dustin,

Thanks a lot for explanation. Unfortunately such kind of home directory
encryption doesn't suit my needs. So, I have encrypted home directory
and I able to mount it only with login passphrase our mount it manually
in case of public key auth. In the last case I have to mount directory
every time after ssh login.

Is there any way to mount encrypted home directory manually only once(on
server restart)?

-- 
Support a wrapped-passphrase.ssh, wrapped with an ssh private key
https://bugs.launchpad.net/bugs/364015
You received this bug notification because you are a member of eCryptfs,
which is subscribed to ecryptfs-utils in ubuntu.

Status in eCryptfs - Enterprise Cryptographic Filesystem: Confirmed
Status in “ecryptfs-utils” source package in Ubuntu: Confirmed

Bug description:
I had a problem with ssh public key auth and encrypted home directory in 
Jaunty. I fixed the issue by workaround provided by Dustin Kirkland:

https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/362427

But after reboot auto mount of encrypted home directory has stopped to work. 
There is only one error string in auth.log:

Mount of private directory return code [256]

At the same time I am able to mount home directory manually through 
ecryptfs-mount-private command. But  /sbin/mount.ecryptfs_private shows me the 
following:

keyctl_search: Required key not available
Perhaps try the interactive 'ecryptfs-mount-private'

... looks like pam_ecryptfs is not able to read  ~/.ecryptfs/wrapped-passphrase

___
Mailing list: https://launchpad.net/~ecryptfs
Post to : ecryptfs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ecryptfs
More help   : https://help.launchpad.net/ListHelp


[Bug 364015] Re: Support a wrapped-passphrase.ssh, wrapped with an ssh private key

2009-05-12 Thread Alexander Kraev
Hi Dustin,

Thanks a lot for explanation. Unfortunately such kind of home directory
encryption doesn't suit my needs. So, I have encrypted home directory
and I able to mount it only with login passphrase our mount it manually
in case of public key auth. In the last case I have to mount directory
every time after ssh login.

Is there any way to mount encrypted home directory manually only once(on
server restart)?

-- 
Support a wrapped-passphrase.ssh, wrapped with an ssh private key
https://bugs.launchpad.net/bugs/364015
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Ecryptfs] [Bug 364015] Re: Auto mount of encrypted home directory RANDOMLY stops to work

2009-04-28 Thread Alexander Kraev
Just tried with sudo echo hello, it allows me to log in on the next
time with mounted home directory. I don't know does it matter or not,
but I use screen. Just for note.

-- 
Auto mount of encrypted home directory RANDOMLY stops to work
https://bugs.launchpad.net/bugs/364015
You received this bug notification because you are a member of eCryptfs,
which is subscribed to ecryptfs-utils in ubuntu.

Status in eCryptfs - Enterprise Cryptographic Filesystem: Incomplete
Status in “ecryptfs-utils” source package in Ubuntu: Incomplete

Bug description:
I had a problem with ssh public key auth and encrypted home directory in 
Jaunty. I fixed the issue by workaround provided by Dustin Kirkland:

https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/362427

But after reboot auto mount of encrypted home directory has stopped to work. 
There is only one error string in auth.log:

Mount of private directory return code [256]

At the same time I am able to mount home directory manually through 
ecryptfs-mount-private command. But  /sbin/mount.ecryptfs_private shows me the 
following:

keyctl_search: Required key not available
Perhaps try the interactive 'ecryptfs-mount-private'

... looks like pam_ecryptfs is not able to read  ~/.ecryptfs/wrapped-passphrase

___
Mailing list: https://launchpad.net/~ecryptfs
Post to : ecryptfs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ecryptfs
More help   : https://help.launchpad.net/ListHelp


[Bug 364015] Re: Auto mount of encrypted home directory RANDOMLY stops to work

2009-04-28 Thread Alexander Kraev
Ok, I did that. The situation is the same.

On the next login, the system accepted my public key but didn't mount
home dir. The error is the same:

sshd[11368]: Mount of private directory return code [256]

It's strange, but I made a restart of apache2, logged off from the
system, then logged on and the system did mount the private directory.
It looks like I do not need to restart sshd, I just need to type sudo
command to have home directory mounted on the next login.

Hope you are able to understand me and my efforts helps you.

Thanks,
Alex

-- 
Auto mount of encrypted home directory RANDOMLY stops to work
https://bugs.launchpad.net/bugs/364015
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 364015] Re: Auto mount of encrypted home directory RANDOMLY stops to work

2009-04-28 Thread Alexander Kraev
Just tried with sudo echo hello, it allows me to log in on the next
time with mounted home directory. I don't know does it matter or not,
but I use screen. Just for note.

-- 
Auto mount of encrypted home directory RANDOMLY stops to work
https://bugs.launchpad.net/bugs/364015
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Ecryptfs] [Bug 364015] Re: Auto mount of encrypted home directory RANDOMLY stops to work

2009-04-27 Thread Alexander Kraev
Hi Dustin,

Just checked - there is only one authorized_keys, it is in unencrypted
mountpoint. I am not sure that I understood you well, but just checked
the symlink to ~/.ecryptfs, it exists in both encrypted and unencrypted
mountpoints, but it doesn't contain authorized_keys in both cases.

-- 
Auto mount of encrypted home directory RANDOMLY stops to work
https://bugs.launchpad.net/bugs/364015
You received this bug notification because you are a member of eCryptfs,
which is subscribed to ecryptfs-utils in ubuntu.

Status in eCryptfs - Enterprise Cryptographic Filesystem: Incomplete
Status in “ecryptfs-utils” source package in Ubuntu: Incomplete

Bug description:
I had a problem with ssh public key auth and encrypted home directory in 
Jaunty. I fixed the issue by workaround provided by Dustin Kirkland:

https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/362427

But after reboot auto mount of encrypted home directory has stopped to work. 
There is only one error string in auth.log:

Mount of private directory return code [256]

At the same time I am able to mount home directory manually through 
ecryptfs-mount-private command. But  /sbin/mount.ecryptfs_private shows me the 
following:

keyctl_search: Required key not available
Perhaps try the interactive 'ecryptfs-mount-private'

... looks like pam_ecryptfs is not able to read  ~/.ecryptfs/wrapped-passphrase

___
Mailing list: https://launchpad.net/~ecryptfs
Post to : ecryptfs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ecryptfs
More help   : https://help.launchpad.net/ListHelp


[Bug 96644] Re: zabbix_agentd will not start after reboot

2009-04-27 Thread Alexander Kraev
This issue still affects Jaunty. The init scripts for zabbix-server and
zabbix-agentd doesn't create PID directory at startup.

-- 
zabbix_agentd will not start after reboot
https://bugs.launchpad.net/bugs/96644
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-b...@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

-- 
universe-bugs mailing list
universe-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/universe-bugs


[Bug 364015] Re: Auto mount of encrypted home directory RANDOMLY stops to work

2009-04-27 Thread Alexander Kraev
Hi Dustin,

Just checked - there is only one authorized_keys, it is in unencrypted
mountpoint. I am not sure that I understood you well, but just checked
the symlink to ~/.ecryptfs, it exists in both encrypted and unencrypted
mountpoints, but it doesn't contain authorized_keys in both cases.

-- 
Auto mount of encrypted home directory RANDOMLY stops to work
https://bugs.launchpad.net/bugs/364015
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 96644] Re: zabbix_agentd will not start after reboot

2009-04-27 Thread Alexander Kraev
This issue still affects Jaunty. The init scripts for zabbix-server and
zabbix-agentd doesn't create PID directory at startup.

-- 
zabbix_agentd will not start after reboot
https://bugs.launchpad.net/bugs/96644
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Ecryptfs] [Bug 364015] Re: Auto mount of encrypted home directory RANDOMLY stops to work

2009-04-24 Thread Alexander Kraev
Hi Dustin, I am creator of this bug ;)

As for me I do not use libpam-ssh. I just have a fresh installation of
9.04 and I use workaround provided by you to have ssh public key auth
working. It works randomly, sometime I need to restart ssh and log in
again to have encrypted home dir mounted. I am also able to mount home
dir through ecryptfs-mount-private.

-- 
Auto mount of encrypted home directory RANDOMLY stops to work
https://bugs.launchpad.net/bugs/364015
You received this bug notification because you are a member of eCryptfs,
which is subscribed to ecryptfs-utils in ubuntu.

Status in eCryptfs - Enterprise Cryptographic Filesystem: Incomplete
Status in “ecryptfs-utils” source package in Ubuntu: Incomplete

Bug description:
I had a problem with ssh public key auth and encrypted home directory in 
Jaunty. I fixed the issue by workaround provided by Dustin Kirkland:

https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/362427

But after reboot auto mount of encrypted home directory has stopped to work. 
There is only one error string in auth.log:

Mount of private directory return code [256]

At the same time I am able to mount home directory manually through 
ecryptfs-mount-private command. But  /sbin/mount.ecryptfs_private shows me the 
following:

keyctl_search: Required key not available
Perhaps try the interactive 'ecryptfs-mount-private'

... looks like pam_ecryptfs is not able to read  ~/.ecryptfs/wrapped-passphrase

___
Mailing list: https://launchpad.net/~ecryptfs
Post to : ecryptfs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ecryptfs
More help   : https://help.launchpad.net/ListHelp


[Bug 364015] Re: Auto mount of encrypted home directory RANDOMLY stops to work

2009-04-24 Thread Alexander Kraev
Hi Dustin, I am creator of this bug ;)

As for me I do not use libpam-ssh. I just have a fresh installation of
9.04 and I use workaround provided by you to have ssh public key auth
working. It works randomly, sometime I need to restart ssh and log in
again to have encrypted home dir mounted. I am also able to mount home
dir through ecryptfs-mount-private.

-- 
Auto mount of encrypted home directory RANDOMLY stops to work
https://bugs.launchpad.net/bugs/364015
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 364015] Re: Auto mount of encrypted home directory RANDOMLY stops to work

2009-04-21 Thread Alexander Kraev
Today it has stoped to work again. I did sshd restart then it has
started to work on next ssh login. It really looks like a bug.

-- 
Auto mount of encrypted home directory RANDOMLY stops to work
https://bugs.launchpad.net/bugs/364015
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 364015] Re: Auto mount of encrypted home directory has stopped to work

2009-04-21 Thread Alexander Kraev
Strange, but It has started to work after sshd restart.

-- 
Auto mount of encrypted home directory RANDOMLY stops to work
https://bugs.launchpad.net/bugs/364015
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 364015] Re: Auto mount of encrypted home directory RANDOMLY stops to work

2009-04-21 Thread Alexander Kraev
** Summary changed:

- Auto mount of encrypted home directory has stopped to work
+ Auto mount of encrypted home directory RANDOMLY stops to work

-- 
Auto mount of encrypted home directory RANDOMLY stops to work
https://bugs.launchpad.net/bugs/364015
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 364015] [NEW] Auto mount of encrypted home directory has stopped to work

2009-04-20 Thread Alexander Kraev
Public bug reported:

I had a problem with ssh public key auth and encrypted home directory in
Jaunty. I fixed the issue by workaround provided by Dustin Kirkland:

https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/362427

But after reboot auto mount of encrypted home directory has stopped to
work. There is only one error string in auth.log:

Mount of private directory return code [256]

At the same time I am able to mount home directory manually through
ecryptfs-mount-private command. But  /sbin/mount.ecryptfs_private shows
me the following:

keyctl_search: Required key not available
Perhaps try the interactive 'ecryptfs-mount-private'

... looks like pam_ecryptfs is not able to read  ~/.ecryptfs/wrapped-
passphrase

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: ecryptfs pam

** Description changed:

  I had a problem with ssh public key auth and encrypted home directory in
- Jaunty. I fixed the issue by a
- 
href=https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/362427;workaround/a
- provided by Dustin Kirkland. But after reboot auto mount of of encrypted
- home directory has stopped to work. There is only one error string in
- auth.log:
+ Jaunty. I fixed the issue by workaround provided by Dustin Kirkland:
+ 
+ https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/362427
+ 
+ But after reboot auto mount of encrypted home directory has stopped to
+ work. There is only one error string in auth.log:
  
  Mount of private directory return code [256]
  
- In the same time I am able to mount home directory manually through
- ecryptfs-mount-private command. The /sbin/mount.ecryptfs_private shows
+ At the same time I am able to mount home directory manually through
+ ecryptfs-mount-private command. But  /sbin/mount.ecryptfs_private shows
  me the following:
  
  keyctl_search: Required key not available
  Perhaps try the interactive 'ecryptfs-mount-private'
  
  ... looks like pam_ecryptfs is not able to read  ~/.ecryptfs/wrapped-
  passphrase

** Tags added: ecryptfs pam

-- 
Auto mount of encrypted home directory has stopped to work
https://bugs.launchpad.net/bugs/364015
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 364015] Re: Auto mount of encrypted home directory has stopped to work

2009-04-20 Thread Alexander Kraev
** Also affects: ecryptfs
   Importance: Undecided
   Status: New

-- 
Auto mount of encrypted home directory has stopped to work
https://bugs.launchpad.net/bugs/364015
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Ecryptfs] [Bug 362427] Re: Public key ssh auth doesn't work with my Encrypted Home Directory

2009-04-19 Thread Alexander Kraev
Hi, Dustin!

The workaround works. Could you please give me a link to good
description of private directory's encryption in Ubuntu, internals and
so on.

Many thanks,
Alex

-- 
Public key ssh auth doesn't work with my Encrypted Home Directory
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of eCryptfs,
which is subscribed to ecryptfs-utils in ubuntu.

Status in eCryptfs - Enterprise Cryptographic Filesystem: Invalid
Status in “ecryptfs-utils” source package in Ubuntu: Invalid
Status in “openssh” source package in Ubuntu: Invalid

Bug description:
Spent all night to understand why public key ssh auth doesn't work. It seems to 
me that issue only affects Jaunty. Please have a look at the details below.

So, the configuration is:

1. Client
- lsb_release: Ubuntu 8.10 intrepid
- ssh-client: OpenSSH_5.1p1 Debian-3ubuntu1, OpenSSL 0.9.8g 19 Oct 2007

2. Server A
- lsb_release: Ubuntu 8.04.2 hardy
- sshd: OpenSSH_4.7p1 Debian-8ubuntu1.2, OpenSSL 0.9.8g 19 Oct 2007

3. Server B
- lsb_release: Ubuntu 9.04 jaunty
- sshd: OpenSSH_5.1p1 Debian-5ubuntu1, OpenSSL 0.9.8g 19 Oct 2007

Server A and Server B have the same /etc/ssh/sshd_config:
RSAAuthentication yes
PubkeyAuthentication yes
StrictModes no

I turned StrictModes to no, but every server has the same permissions on 
user's .ssh folder and .ssh/authorized_keys file. authorized_keys is the same 
on Server A and Server B.

So, I am able to connect with public key from Client machine to Server A, but I 
can't connect to Server B.

I run ssh client and sshd on Server B in debug mode, please find logs attached.

Most important strings from auth.log:

...
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_request_receive entering
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: monitor_read: checking request 21
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed entering
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed: 
key_from_blob: 0xb9084978
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: Checking blacklist file 
/usr/share/ssh/blacklist.DSA-1024
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: Checking blacklist file 
/etc/ssh/blacklist.DSA-1024
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: temporarily_use_uid: 1000/1000 
(e=0/0)
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: trying public key file 
/home/sasha/.ssh/authorized_keys
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: restore_uid: 0/0
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: temporarily_use_uid: 1000/1000 
(e=0/0)
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: trying public key file 
/home/sasha/.ssh/authorized_keys2
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: restore_uid: 0/0
Apr 16 20:58:47 ubuntu sshd[21728]: Failed publickey for sasha from 10.0.0.11 
port 51194 ssh2
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed: key 
0xb9084978 is not allowed
...

___
Mailing list: https://launchpad.net/~ecryptfs
Post to : ecryptfs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ecryptfs
More help   : https://help.launchpad.net/ListHelp


[Bug 362427] Re: Public key ssh auth doesn't work with my Encrypted Home Directory

2009-04-19 Thread Alexander Kraev
Hi, Dustin!

The workaround works. Could you please give me a link to good
description of private directory's encryption in Ubuntu, internals and
so on.

Many thanks,
Alex

-- 
Public key ssh auth doesn't work with my Encrypted Home Directory
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 362427] Re: Public key ssh auth doesn't work with my Encrypted Home Directory

2009-04-19 Thread Alexander Kraev
Strange but auto mount of encrypted private directory has stopped to
work.  There is only Mount of private directory return code [256]
error in auth.log. But I am able to mount manually the private dir after
ssh login.

-- 
Public key ssh auth doesn't work with my Encrypted Home Directory
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 362427] Re: Public key ssh auth doesn't work with my Encrypted Home Directory

2009-04-19 Thread Alexander Kraev
Hi, Dustin!

The workaround works. Could you please give me a link to good
description of private directory's encryption in Ubuntu, internals and
so on.

Many thanks,
Alex

-- 
Public key ssh auth doesn't work with my Encrypted Home Directory
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 362427] Re: Public key ssh auth doesn't work with my Encrypted Home Directory

2009-04-19 Thread Alexander Kraev
Strange but auto mount of encrypted private directory has stopped to
work.  There is only Mount of private directory return code [256]
error in auth.log. But I am able to mount manually the private dir after
ssh login.

-- 
Public key ssh auth doesn't work with my Encrypted Home Directory
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Ecryptfs] [Bug 362427] Re: Public key ssh auth doesn't work with my Encrypted Home Directory

2009-04-17 Thread Alexander Kraev
Thanks, Dustin.

Just tried your workaround. But it doesn't work. I steel get the same
error.

Just for note, there is no /sbin/ecryptfs.umount_private, there is
/sbin/umount.ecryptfs_private

-- 
Public key ssh auth doesn't work with my Encrypted Home Directory
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of eCryptfs,
which is subscribed to ecryptfs-utils in ubuntu.

Status in eCryptfs - Enterprise Cryptographic Filesystem: Invalid
Status in “ecryptfs-utils” source package in Ubuntu: Invalid
Status in “openssh” source package in Ubuntu: Invalid

Bug description:
Spent all night to understand why public key ssh auth doesn't work. It seems to 
me that issue only affects Jaunty. Please have a look at the details below.

So, the configuration is:

1. Client
- lsb_release: Ubuntu 8.10 intrepid
- ssh-client: OpenSSH_5.1p1 Debian-3ubuntu1, OpenSSL 0.9.8g 19 Oct 2007

2. Server A
- lsb_release: Ubuntu 8.04.2 hardy
- sshd: OpenSSH_4.7p1 Debian-8ubuntu1.2, OpenSSL 0.9.8g 19 Oct 2007

3. Server B
- lsb_release: Ubuntu 9.04 jaunty
- sshd: OpenSSH_5.1p1 Debian-5ubuntu1, OpenSSL 0.9.8g 19 Oct 2007

Server A and Server B have the same /etc/ssh/sshd_config:
RSAAuthentication yes
PubkeyAuthentication yes
StrictModes no

I turned StrictModes to no, but every server has the same permissions on 
user's .ssh folder and .ssh/authorized_keys file. authorized_keys is the same 
on Server A and Server B.

So, I am able to connect with public key from Client machine to Server A, but I 
can't connect to Server B.

I run ssh client and sshd on Server B in debug mode, please find logs attached.

Most important strings from auth.log:

...
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_request_receive entering
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: monitor_read: checking request 21
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed entering
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed: 
key_from_blob: 0xb9084978
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: Checking blacklist file 
/usr/share/ssh/blacklist.DSA-1024
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: Checking blacklist file 
/etc/ssh/blacklist.DSA-1024
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: temporarily_use_uid: 1000/1000 
(e=0/0)
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: trying public key file 
/home/sasha/.ssh/authorized_keys
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: restore_uid: 0/0
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: temporarily_use_uid: 1000/1000 
(e=0/0)
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: trying public key file 
/home/sasha/.ssh/authorized_keys2
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: restore_uid: 0/0
Apr 16 20:58:47 ubuntu sshd[21728]: Failed publickey for sasha from 10.0.0.11 
port 51194 ssh2
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed: key 
0xb9084978 is not allowed
...

___
Mailing list: https://launchpad.net/~ecryptfs
Post to : ecryptfs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ecryptfs
More help   : https://help.launchpad.net/ListHelp


[Bug 362427] Re: Public key ssh auth doesn't work with my Encrypted Home Directory

2009-04-17 Thread Alexander Kraev
Thanks, Dustin.

Just tried your workaround. But it doesn't work. I steel get the same
error.

Just for note, there is /sbin/ecryptfs.umount_private, there is
/sbin/umount.ecryptfs_private

-- 
Public key ssh auth doesn't work with my Encrypted Home Directory
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 362427] Re: Public key ssh auth doesn't work with my Encrypted Home Directory

2009-04-17 Thread Alexander Kraev
Thanks, Dustin.

Just tried your workaround. But it doesn't work. I steel get the same
error.

Just for note, there is no /sbin/ecryptfs.umount_private, there is
/sbin/umount.ecryptfs_private

-- 
Public key ssh auth doesn't work with my Encrypted Home Directory
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 362427] Re: Public key ssh auth doesn't work with my Encrypted Home Directory

2009-04-17 Thread Alexander Kraev
Thanks, Dustin.

Just tried your workaround. But it doesn't work. I steel get the same
error.

Just for note, there is /sbin/ecryptfs.umount_private, there is
/sbin/umount.ecryptfs_private

-- 
Public key ssh auth doesn't work with my Encrypted Home Directory
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 362427] Re: Public key ssh auth doesn't work with my Encrypted Home Directory

2009-04-17 Thread Alexander Kraev
Thanks, Dustin.

Just tried your workaround. But it doesn't work. I steel get the same
error.

Just for note, there is no /sbin/ecryptfs.umount_private, there is
/sbin/umount.ecryptfs_private

-- 
Public key ssh auth doesn't work with my Encrypted Home Directory
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 362427] [NEW] Public key ssh auth doesn't work in Jauny

2009-04-16 Thread Alexander Kraev
Public bug reported:

Spent all night to understand why public key ssh auth doesn't work. It
seems to me that issue only affects Jaunty. Please have a look at the
details below.

So, the configuration is:

1. Client
- lsb_release: Ubuntu 8.10 intrepid
- ssh-client: OpenSSH_5.1p1 Debian-3ubuntu1, OpenSSL 0.9.8g 19 Oct 2007

2. Server A
- lsb_release: Ubuntu 8.04.2 hardy
- sshd: OpenSSH_4.7p1 Debian-8ubuntu1.2, OpenSSL 0.9.8g 19 Oct 2007

3. Server B
- lsb_release: Ubuntu 9.04 jaunty
- sshd: OpenSSH_5.1p1 Debian-5ubuntu1, OpenSSL 0.9.8g 19 Oct 2007

Server A and Server B have the same /etc/ssh/sshd_config:
RSAAuthentication yes
PubkeyAuthentication yes
StrictModes no

I turned StrictModes to no, but every server has the same permissions
on user's .ssh folder and .ssh/authorized_keys file. authorized_keys is
the same on Server A and Server B.

So, I am able to connect with public key from Client machine to Server
A, but I can't connect to Server B.

I run ssh client and sshd on Server B in debug mode, please find logs
attached.

Most important strings from auth.log:

...
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_request_receive entering
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: monitor_read: checking request 21
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed entering
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed: 
key_from_blob: 0xb9084978
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: Checking blacklist file 
/usr/share/ssh/blacklist.DSA-1024
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: Checking blacklist file 
/etc/ssh/blacklist.DSA-1024
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: temporarily_use_uid: 1000/1000 
(e=0/0)
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: trying public key file 
/home/sasha/.ssh/authorized_keys
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: restore_uid: 0/0
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: temporarily_use_uid: 1000/1000 
(e=0/0)
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: trying public key file 
/home/sasha/.ssh/authorized_keys2
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: restore_uid: 0/0
Apr 16 20:58:47 ubuntu sshd[21728]: Failed publickey for sasha from 10.0.0.11 
port 51194 ssh2
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed: key 
0xb9084978 is not allowed
...

** Affects: openssh (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: issue jaunty key public ssh

-- 
Public key ssh auth doesn't work in Jauny
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 362427] Re: Public key ssh auth doesn't work in Jauny

2009-04-16 Thread Alexander Kraev

** Attachment added: ssh -
   http://launchpadlibrarian.net/25547970/ssh-client.txt

-- 
Public key ssh auth doesn't work in Jauny
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 362427] Re: Public key ssh auth doesn't work in Jauny

2009-04-16 Thread Alexander Kraev
Please try public key ssh auth with Jaunty server and confirm. It seems
to me this is an important issue.

-- 
Public key ssh auth doesn't work in Jauny
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 362427] Re: Public key ssh auth doesn't work in Jauny

2009-04-16 Thread Alexander Kraev
Yes, I do. You can find some information related to encryptfs in sshd
log.

** Summary changed:

- Public key ssh auth doesn't work in Jauny
+ Public key ssh auth doesn't work in Jaunty

-- 
Public key ssh auth doesn't work in Jaunty
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 362427] Re: Public key ssh auth doesn't work in Jaunty

2009-04-16 Thread Alexander Kraev
Hmm.. Well, sound like it's not a bug.  Thank you for explanation!

But are there any solution or workaround to use public key auth with
encrypted home dir?

-- 
Public key ssh auth doesn't work in Jaunty
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 362427] Re: Public key ssh auth doesn't work in Jaunty

2009-04-16 Thread Alexander Kraev
I think it's a bug, but not related to openssh.

I fixed the issue by adding this to sshd_config:
AuthorizedKeysFile  /etc/.ssh/%u/authorized_keys

-- 
Public key ssh auth doesn't work in Jaunty
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 362427] Re: Public key ssh auth doesn't work in Jauny

2009-04-16 Thread Alexander Kraev

** Attachment added: ssh -
   http://launchpadlibrarian.net/25547970/ssh-client.txt

-- 
Public key ssh auth doesn't work in Jauny
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 362427] [NEW] Public key ssh auth doesn't work in Jauny

2009-04-16 Thread Alexander Kraev
Public bug reported:

Spent all night to understand why public key ssh auth doesn't work. It
seems to me that issue only affects Jaunty. Please have a look at the
details below.

So, the configuration is:

1. Client
- lsb_release: Ubuntu 8.10 intrepid
- ssh-client: OpenSSH_5.1p1 Debian-3ubuntu1, OpenSSL 0.9.8g 19 Oct 2007

2. Server A
- lsb_release: Ubuntu 8.04.2 hardy
- sshd: OpenSSH_4.7p1 Debian-8ubuntu1.2, OpenSSL 0.9.8g 19 Oct 2007

3. Server B
- lsb_release: Ubuntu 9.04 jaunty
- sshd: OpenSSH_5.1p1 Debian-5ubuntu1, OpenSSL 0.9.8g 19 Oct 2007

Server A and Server B have the same /etc/ssh/sshd_config:
RSAAuthentication yes
PubkeyAuthentication yes
StrictModes no

I turned StrictModes to no, but every server has the same permissions
on user's .ssh folder and .ssh/authorized_keys file. authorized_keys is
the same on Server A and Server B.

So, I am able to connect with public key from Client machine to Server
A, but I can't connect to Server B.

I run ssh client and sshd on Server B in debug mode, please find logs
attached.

Most important strings from auth.log:

...
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_request_receive entering
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: monitor_read: checking request 21
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed entering
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed: 
key_from_blob: 0xb9084978
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: Checking blacklist file 
/usr/share/ssh/blacklist.DSA-1024
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: Checking blacklist file 
/etc/ssh/blacklist.DSA-1024
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: temporarily_use_uid: 1000/1000 
(e=0/0)
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: trying public key file 
/home/sasha/.ssh/authorized_keys
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: restore_uid: 0/0
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: temporarily_use_uid: 1000/1000 
(e=0/0)
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: trying public key file 
/home/sasha/.ssh/authorized_keys2
Apr 16 20:58:47 ubuntu sshd[21728]: debug1: restore_uid: 0/0
Apr 16 20:58:47 ubuntu sshd[21728]: Failed publickey for sasha from 10.0.0.11 
port 51194 ssh2
Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed: key 
0xb9084978 is not allowed
...

** Affects: openssh (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: issue jaunty key public ssh

-- 
Public key ssh auth doesn't work in Jauny
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 362427] Re: Public key ssh auth doesn't work in Jauny

2009-04-16 Thread Alexander Kraev
Please try public key ssh auth with Jaunty server and confirm. It seems
to me this is an important issue.

-- 
Public key ssh auth doesn't work in Jauny
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 362427] Re: Public key ssh auth doesn't work in Jauny

2009-04-16 Thread Alexander Kraev

** Attachment added: sshd in debug3 mode
   http://launchpadlibrarian.net/25548018/sshd-debug.txt

** Description changed:

  Spent all night to understand why public key ssh auth doesn't work. It
- seems to me that it only affects only Jaunty. Please have a look at the
+ seems to me that issue only affects Jaunty. Please have a look at the
  details below.
  
  So, the configuration is:
  
  1. Client
  - lsb_release: Ubuntu 8.10 intrepid
  - ssh-client: OpenSSH_5.1p1 Debian-3ubuntu1, OpenSSL 0.9.8g 19 Oct 2007
  
  2. Server A
  - lsb_release: Ubuntu 8.04.2 hardy
  - sshd: OpenSSH_4.7p1 Debian-8ubuntu1.2, OpenSSL 0.9.8g 19 Oct 2007
  
  3. Server B
  - lsb_release: Ubuntu 9.04 jaunty
  - sshd: OpenSSH_5.1p1 Debian-5ubuntu1, OpenSSL 0.9.8g 19 Oct 2007
  
  Server A and Server B have the same /etc/ssh/sshd_config:
  RSAAuthentication yes
  PubkeyAuthentication yes
  StrictModes no
  
  I turned StrictModes to no, but every server has the same permissions
  on user's .ssh folder and .ssh/authorized_keys file. authorized_keys is
  the same on Server A and Server B.\
  
  So, I am able to connect with public key from Client machine to Server
  A, but I can't connect to Server B.
  
  I run ssh client and sshd on Server B in debug mode, please find them
  attached.
  
  Most important strings from auth.log:
  
  ...
  Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_request_receive entering
  Apr 16 20:58:47 ubuntu sshd[21728]: debug3: monitor_read: checking request 21
  Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed entering
  Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed: 
key_from_blob: 0xb9084978
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: Checking blacklist file 
/usr/share/ssh/blacklist.DSA-1024
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: Checking blacklist file 
/etc/ssh/blacklist.DSA-1024
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: temporarily_use_uid: 1000/1000 
(e=0/0)
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: trying public key file 
/home/sasha/.ssh/authorized_keys
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: restore_uid: 0/0
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: temporarily_use_uid: 1000/1000 
(e=0/0)
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: trying public key file 
/home/sasha/.ssh/authorized_keys2
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: restore_uid: 0/0
  Apr 16 20:58:47 ubuntu sshd[21728]: Failed publickey for sasha from 10.0.0.11 
port 51194 ssh2
  Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed: key 
0xb9084978 is not allowed
  ...

** Tags added: jaunty key public ssh

** Description changed:

  Spent all night to understand why public key ssh auth doesn't work. It
  seems to me that issue only affects Jaunty. Please have a look at the
  details below.
  
  So, the configuration is:
  
  1. Client
  - lsb_release: Ubuntu 8.10 intrepid
  - ssh-client: OpenSSH_5.1p1 Debian-3ubuntu1, OpenSSL 0.9.8g 19 Oct 2007
  
  2. Server A
  - lsb_release: Ubuntu 8.04.2 hardy
  - sshd: OpenSSH_4.7p1 Debian-8ubuntu1.2, OpenSSL 0.9.8g 19 Oct 2007
  
  3. Server B
  - lsb_release: Ubuntu 9.04 jaunty
  - sshd: OpenSSH_5.1p1 Debian-5ubuntu1, OpenSSL 0.9.8g 19 Oct 2007
  
  Server A and Server B have the same /etc/ssh/sshd_config:
  RSAAuthentication yes
  PubkeyAuthentication yes
  StrictModes no
  
  I turned StrictModes to no, but every server has the same permissions
  on user's .ssh folder and .ssh/authorized_keys file. authorized_keys is
- the same on Server A and Server B.\
+ the same on Server A and Server B.
  
  So, I am able to connect with public key from Client machine to Server
  A, but I can't connect to Server B.
  
- I run ssh client and sshd on Server B in debug mode, please find them
+ I run ssh client and sshd on Server B in debug mode, please find logs
  attached.
  
  Most important strings from auth.log:
  
  ...
  Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_request_receive entering
  Apr 16 20:58:47 ubuntu sshd[21728]: debug3: monitor_read: checking request 21
  Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed entering
  Apr 16 20:58:47 ubuntu sshd[21728]: debug3: mm_answer_keyallowed: 
key_from_blob: 0xb9084978
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: Checking blacklist file 
/usr/share/ssh/blacklist.DSA-1024
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: Checking blacklist file 
/etc/ssh/blacklist.DSA-1024
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: temporarily_use_uid: 1000/1000 
(e=0/0)
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: trying public key file 
/home/sasha/.ssh/authorized_keys
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: restore_uid: 0/0
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: temporarily_use_uid: 1000/1000 
(e=0/0)
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: trying public key file 
/home/sasha/.ssh/authorized_keys2
  Apr 16 20:58:47 ubuntu sshd[21728]: debug1: restore_uid: 0/0
  Apr 16 20:58:47 ubuntu sshd[21728]: Failed publickey for sasha from 10.0.0.11 

[Bug 362427] Re: Public key ssh auth doesn't work in Jauny

2009-04-16 Thread Alexander Kraev
Yes, I do. You can find some information related to encryptfs in sshd
log.

** Summary changed:

- Public key ssh auth doesn't work in Jauny
+ Public key ssh auth doesn't work in Jaunty

-- 
Public key ssh auth doesn't work in Jaunty
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 362427] Re: Public key ssh auth doesn't work in Jaunty

2009-04-16 Thread Alexander Kraev
Hmm.. Well, sound like it's not a bug.  Thank you for explanation!

But are there any solution or workaround to use public key auth with
encrypted home dir?

-- 
Public key ssh auth doesn't work in Jaunty
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 362427] Re: Public key ssh auth doesn't work in Jaunty

2009-04-16 Thread Alexander Kraev
I think it's a bug, but not related to openssh.

I fixed the issue by adding this to sshd_config:
AuthorizedKeysFile  /etc/.ssh/%u/authorized_keys

-- 
Public key ssh auth doesn't work in Jaunty
https://bugs.launchpad.net/bugs/362427
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 361984] [NEW] Can't login via ssh with public key because of encryptfs

2009-04-15 Thread Alexander Kraev
Public bug reported:

I'm running on development version of Jaunty.

It seems that I can't login via ssh with public key because of
encryptfs.

ssh -v -p 1022 10.0.0.1 shows:

...
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password
debug1: Next authentication method: publickey
debug1: Offering public key: /home/sasha/.ssh/id_dsa
debug1: Authentications that can continue: publickey,password
debug1: Offering public key: id_dsa
debug1: Authentications that can continue: publickey,password
debug1: Offering public key: id_dsa
debug1: Authentications that can continue: publickey,password
debug1: Trying private key: /home/sasha/.ssh/identity
debug1: Trying private key: /home/sasha/.ssh/id_rsa
debug1: Next authentication method: password

cat /var/log/auth.log | grep ssh shows:

Apr 16 00:53:58 ubuntu sshd[31597]: pam_sm_authenticate: Called 
Apr 16 00:53:58 ubuntu sshd[31597]: pam_sm_authenticate: username = [sasha] 
Apr 16 00:53:58 ubuntu sshd[31597]: Warning: Using default salt value 
(undefined in ~/.ecryptfsrc) 
Apr 16 00:54:02 ubuntu sshd[31617]: Passphrase key already in keyring; rc = [1] 
Apr 16 00:54:02 ubuntu sshd[31617]: ecryptfs_add_passphrase_key_to_keyring: 
Error adding auth tok with sig [a9a45ab9bd111d61] to the keyring; rc = [1] 
Apr 16 00:54:02 ubuntu sshd[31617]: Error attempting to add filename encryption 
key to user session keyring; rc = [1] 
Apr 16 00:54:03 ubuntu sshd[31617]: Passphrase key already in keyring; rc = [1] 
Apr 16 00:54:03 ubuntu sshd[31617]: ecryptfs_add_passphrase_key_to_keyring: 
Error adding auth tok with sig [0be34e5e83e96c4f] to the keyring; rc = [1] 
Apr 16 00:54:03 ubuntu sshd[31617]: Error attempting to add passphrase key to 
user session keyring; rc = [1] 
Apr 16 00:54:03 ubuntu sshd[31617]: There is already a key in the user session 
keyring for the given passphrase. 
Apr 16 00:54:03 ubuntu sshd[31597]: Accepted password for sasha from 10.0.0.11 
port 58989 ssh2
Apr 16 00:54:03 ubuntu sshd[31597]: pam_unix(sshd:session): session opened for 
user sasha by (uid=0)
Apr 16 00:54:03 ubuntu sshd[31597]: Mount of private directory return code [0]

** Affects: ubuntu
 Importance: Undecided
 Status: New

** Description changed:

- I'm running in development version of Jaunty.
+ I'm running on development version of Jaunty.
  
  It seems that I can't login via ssh with public key because of
  encryptfs.
  
  ssh -v -p 1022 10.0.0.1 shows:
  
  ...
  debug1: SSH2_MSG_SERVICE_ACCEPT received
  debug1: Authentications that can continue: publickey,password
  debug1: Next authentication method: publickey
  debug1: Offering public key: /home/sasha/.ssh/id_dsa
  debug1: Authentications that can continue: publickey,password
  debug1: Offering public key: id_dsa
  debug1: Authentications that can continue: publickey,password
  debug1: Offering public key: id_dsa
  debug1: Authentications that can continue: publickey,password
  debug1: Trying private key: /home/sasha/.ssh/identity
  debug1: Trying private key: /home/sasha/.ssh/id_rsa
  debug1: Next authentication method: password
  
  cat /var/log/auth.log | grep ssh shows:
  
  Apr 16 00:53:58 ubuntu sshd[31597]: pam_sm_authenticate: Called 
  Apr 16 00:53:58 ubuntu sshd[31597]: pam_sm_authenticate: username = [sasha] 
  Apr 16 00:53:58 ubuntu sshd[31597]: Warning: Using default salt value 
(undefined in ~/.ecryptfsrc) 
  Apr 16 00:54:02 ubuntu sshd[31617]: Passphrase key already in keyring; rc = 
[1] 
  Apr 16 00:54:02 ubuntu sshd[31617]: ecryptfs_add_passphrase_key_to_keyring: 
Error adding auth tok with sig [a9a45ab9bd111d61] to the keyring; rc = [1] 
  Apr 16 00:54:02 ubuntu sshd[31617]: Error attempting to add filename 
encryption key to user session keyring; rc = [1] 
  Apr 16 00:54:03 ubuntu sshd[31617]: Passphrase key already in keyring; rc = 
[1] 
  Apr 16 00:54:03 ubuntu sshd[31617]: ecryptfs_add_passphrase_key_to_keyring: 
Error adding auth tok with sig [0be34e5e83e96c4f] to the keyring; rc = [1] 
  Apr 16 00:54:03 ubuntu sshd[31617]: Error attempting to add passphrase key to 
user session keyring; rc = [1] 
  Apr 16 00:54:03 ubuntu sshd[31617]: There is already a key in the user 
session keyring for the given passphrase. 
  Apr 16 00:54:03 ubuntu sshd[31597]: Accepted password for sasha from 
10.0.0.11 port 58989 ssh2
  Apr 16 00:54:03 ubuntu sshd[31597]: pam_unix(sshd:session): session opened 
for user sasha by (uid=0)
  Apr 16 00:54:03 ubuntu sshd[31597]: Mount of private directory return code [0]

-- 
Can't login via ssh with public key because of encryptfs
https://bugs.launchpad.net/bugs/361984
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 361984] Re: Can't login via ssh with public key because of encryptfs

2009-04-15 Thread Alexander Kraev
It seems that I'am wrong. Please close this bug, I guess the issue is
not related to encryptfs. LogLevel of sshd shows me more details on the
issue.

-- 
Can't login via ssh with public key because of encryptfs
https://bugs.launchpad.net/bugs/361984
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 315922] Re: 2.6.27-11 makes brightness not work

2009-01-16 Thread Alexander Kraev
i have upgraded the 2.6.27-11-generic today and now the screen
brightness control works fine.

-- 
2.6.27-11 makes brightness not work
https://bugs.launchpad.net/bugs/315922
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-power-manager in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 315922] Re: 2.6.27-11 makes brightness not work

2009-01-16 Thread Alexander Kraev
i have upgraded the 2.6.27-11-generic today and now the screen
brightness control works fine.

-- 
2.6.27-11 makes brightness not work
https://bugs.launchpad.net/bugs/315922
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 315255] Re: screen brightness control stopped working with 2.6.27-11

2009-01-12 Thread Alexander Kraev
The same problem for me. Screen brightness control stopped working after
upgrade to 2.6.27-11. I am running an HP Pavilion dv6000 series laptop.

-- 
screen brightness control stopped working with 2.6.27-11
https://bugs.launchpad.net/bugs/315255
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 292839] Re: Sound doesn't work on HP Pavilion dv6650eo laptop / Ubuntu 8.10

2008-11-04 Thread Alexander Kraev
Thanks Arnaud!

The PCM device was muted, so the problem is fixed.

-- 
Sound doesn't work on HP Pavilion dv6650eo laptop / Ubuntu 8.10
https://bugs.launchpad.net/bugs/292839
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 292839] Re: Sound doesn't work on HP Pavilion dv6650eo laptop / Ubuntu 8.10

2008-11-04 Thread Alexander Kraev
** Changed in: linux (Ubuntu)
   Status: Incomplete = Fix Released

-- 
Sound doesn't work on HP Pavilion dv6650eo laptop / Ubuntu 8.10
https://bugs.launchpad.net/bugs/292839
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 292839] [NEW] Sound doesn't work on HP Pavilion dv6650eo laptop / Ubuntu 8.10

2008-11-02 Thread Alexander Kraev
Public bug reported:

There is no sound on a fresh install of Ubuntu 8.10 on my HP Pavilion
dv6650eo laptop. Sound worked fine before on 8.04.

Please let me know if I can assist more to solve this issue.

Many thanks!

lspci shows the device as:

00:07.0 Audio device: nVidia Corporation MCP65 High Definition Audio
(rev a1)

lsmod | grep snd shows:

snd_hda_intel 381488  3 
snd_pcm_oss46848  0 
snd_mixer_oss  22784  1 snd_pcm_oss
snd_pcm83204  3 snd_hda_intel,snd_pcm_oss
snd_seq_dummy  10884  0 
snd_seq_oss38528  0 
snd_seq_midi   14336  0 
snd_rawmidi29824  1 snd_seq_midi
snd_seq_midi_event 15232  2 snd_seq_oss,snd_seq_midi
snd_seq57776  6 
snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event
snd_timer  29960  2 snd_pcm,snd_seq
snd_seq_device 15116  5 
snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq
snd63268  14 
snd_hda_intel,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_oss,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
soundcore  15328  1 snd
snd_page_alloc 16136  2 snd_hda_intel,snd_pcm

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Sound doesn't work on HP Pavilion dv6650eo laptop / Ubuntu 8.10
https://bugs.launchpad.net/bugs/292839
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Rhythmbox-devel] Cover Art and Credit Card Safety

2008-08-06 Thread Alexander Kraev

Hi Maximilian,

Yes, RB's cover art plugin is still using AWS for getting cover art. But 
we could move to Last.fm API. I think Last.fm is much better than AWS, 
it seems that their records/albums DB is larger. For example, there are 
not cover arts for Russian artists, but it's possible to find them on 
Last.fm. Because people update DB of Last.fm every day, because social 
networks rule.


Here is an API:

http://www.last.fm/api/show?service=290

Br,
Alex

Maximilian Schwerin wrote:

Hi all,

I got two questions:

1) Are you still using Amazon Webservices for getting cover art? As far 
as I understand their license this is not allowed:


-- snip --
5.1.3. You are not permitted to use Amazon Associates Web Service with any
Application or for any use that does not have, as its principal purpose, 
driving
traffic to the Amazon Website and driving sales of products and services 
on the

Amazon Website.
-- snap --

What is your read on this? I'd like to use AWS in a project of my own 
but have some reservations due to the license...


2) I tried to find a word about how credit card data is handled when 
buying from magnatune via rhythmbox. I guess you do all you can to make 
this safe but I do believe this subject justifies a BIG section in the 
help files and the FAQ on your webpage explaining what you do to keep 
the data safe. Not knowing anything about the way you handle the data is 
a reason not to use it for me...


Keep up the good work! Cheers, Maximilian
___
rhythmbox-devel mailing list
rhythmbox-devel@gnome.org
http://mail.gnome.org/mailman/listinfo/rhythmbox-devel


___
rhythmbox-devel mailing list
rhythmbox-devel@gnome.org
http://mail.gnome.org/mailman/listinfo/rhythmbox-devel


[Rhythmbox-devel] plugin development

2008-08-04 Thread Alexander Kraev

Hello all,

I am developing a plugin for one of social networks(just a home project 
for myself and friends). I almost do not know Python, but it seems that 
I can study it faster than GObject or Vala. I have a one question about 
plugin development for Rhythmbox on Pyton.


I have reviewed the source code of few plugins and, in principle, I 
understand the logic of Pyton plugin system. But most of the existed 
plugins using BrowserSource work with a list of already prepared tracks 
from remote files or something else. The essence of my plugin - do 
search in the remote database and use the response to fill the track 
list of BrowserSource. The problem is that the search bar of 
BrowserSource is connected to the track list already filled with tracks 
and I don't know how to change the behaviour of search bar.


Is it possible to do so with BrowserSource or do I need to use normal 
PlaylistSource and use customized search bar based on GTK?


Thank you for any help,
Alexander

___
rhythmbox-devel mailing list
rhythmbox-devel@gnome.org
http://mail.gnome.org/mailman/listinfo/rhythmbox-devel


[Bug 118706] Re: TI SD Card reader doesn't work on LG laptop

2008-08-01 Thread Alexander Kraev

** Attachment added: syslog.log
   http://launchpadlibrarian.net/16480510/syslog.log

-- 
TI SD Card reader doesn't work on LG laptop
https://bugs.launchpad.net/bugs/118706
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 118706] Re: TI SD Card reader doesn't work on LG laptop

2008-08-01 Thread Alexander Kraev

** Attachment added: dmesg.log
   http://launchpadlibrarian.net/16480507/dmesg.log

-- 
TI SD Card reader doesn't work on LG laptop
https://bugs.launchpad.net/bugs/118706
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 118706] Re: TI SD Card reader doesn't work on LG laptop

2008-08-01 Thread Alexander Kraev
it seems that hardy still doesn't support TI SD card reader.

uname -a
Linux home-mobile 2.6.24-19-generic #1 SMP Fri Jul 11 23:41:49 UTC 2008 i686 
GNU/Linux

SD card was inserted into notebook, after dmesg and syslog were
captured. Please find all details in the attachment.

** Attachment added: lspci.log
   http://launchpadlibrarian.net/16480502/lspci.log

-- 
TI SD Card reader doesn't work on LG laptop
https://bugs.launchpad.net/bugs/118706
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: ZFS on Linux?

2008-07-14 Thread Alexander Kraev
Hi,

Have a look at

http://www.wizy.org/wiki/ZFS_on_FUSE
http://zfs-on-fuse.blogspot.com/

Regards,
Alex

DULMANDAKH Sukhbaatar wrote:
 As I know there is no such project to port ZFS into Linux. ZFS is
 still licensed under CDDL, which is not compatible with GPL though.
 
 On Sat, Jul 12, 2008 at 2:53 AM, Brett Alton [EMAIL PROTECTED] wrote:
 Does anyone know what the latest status of ZFS on Linux is? Is Sun
 re-licencing the code from CDDL to GPL? Have there been improvements
 to ZFS through FUSE with benchmarks comparable to NFTS over FUSE?

 What about the status of ZFS in Ubuntu?

 I just see a lot of repeat articles on the Internet, so I'm hoping
 someone might bring something fresh to the table.

 Thanks for your time.

 --
 Brett Alton
 [EMAIL PROTECTED]

 Do you really need to print this email? Help preserve our environment!

 --
 ubuntu-server mailing list
 ubuntu-server@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-server
 More info: https://wiki.ubuntu.com/ServerTeam

 
 
 


-- 
ubuntu-server mailing list
ubuntu-server@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server
More info: https://wiki.ubuntu.com/ServerTeam


Re: Looking for users of redhat-cluster-suite on Ubuntu

2008-07-13 Thread Alexander Kraev
Hi Etienne,

One year ago I built HA cluster based on heartbeat and ocfs2. The 
cluster contains two Dell servers and one storage running in a cluster 
mode and directly connected to the servers via SCSI cables(DAS). The 
system is powered by SLES 10.2 and it's still in production. The HA 
cluster contains several resource groups like Apache + VIP, MySQL + VIP, 
Oracle XE + VIP and our Java based application. The application like 
Apache, MySQL and Oracle XE use the same storage but they have different 
per nodes log directory, pid files and some other files like 
listener.ora. I use OCFS2CDSL to make one file or directory unique per 
node. I used the Heartbeat GUI application to configure the cluster and 
now I use it as a cluster management tool. Let me know if you need more 
details.

Sorry for my English.

Regards,
Alexander

Etienne Goyer wrote:
 Hello all,
 
 I guess this list is the best place to ask for such a question.  Hope it
 is on-topic enough.
 
 We (some colleagues and myself) are currently working on white paper
 about HA clustering using redhat-cluster-suite on Ubuntu.  We would like
 to hear about different real-world deployments to be able to synthesise
 a set of best practices.  The cookie-cutter Apache/NFS/Samba scenarios
 are well covered, but if you do anything more intricate, we would like
 to hear about your experiences and especially any snags you may have
 come upon during design and deployment.
 
 If you prefer not to discuss that on the list, it is ok to contact me
 out of band.
 
 Cheers!
 
 


-- 
ubuntu-server mailing list
ubuntu-server@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server
More info: https://wiki.ubuntu.com/ServerTeam


[Bug 196085] [NEW] No splash screen during boot in widescreen laptop

2008-02-27 Thread Alexander Kraev
Public bug reported:

I am owner of HP Pavilion dv6650eo, its native resolution is 1280x800,
and it's powered by nVidia GeForce 8400M GS. I am not able to see splash
screen during Ubuntu boot. I tried to use startupmanager to manually set
up the grub settings - but it took no effect. The actual grub settings
in the menu.lst are:

title   Ubuntu 7.10, kernel 2.6.22-14-generic
root(hd0,2)
kernel  /boot/vmlinuz-2.6.22-14-generic 
root=UUID=ec69886a-c650-41fc-9cb7-763508b99f88 ro vga=792 splash
initrd  /boot/initrd.img-2.6.22-14-generic
quiet


How to get splash screen working on my laptop?

** Affects: grub (Ubuntu)
 Importance: Undecided
 Status: New

-- 
No splash screen during boot in widescreen laptop
https://bugs.launchpad.net/bugs/196085
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 196085] Re: No splash screen during boot in widescreen laptop

2008-02-27 Thread Alexander Kraev
*** This bug is a duplicate of bug 147623 ***
https://bugs.launchpad.net/bugs/147623

Hi InsClusoe,

Yes I confirm that this bug is duplicate of bug posted by you above.

-- 
No splash screen during boot in widescreen laptop
https://bugs.launchpad.net/bugs/196085
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[gnome-cyr] Картинки

2008-01-26 Thread Alexander Kraev
Всем привет!

Недавно перешел на использование стандартных папок вроде Документы, 
Музыка в домашней директории. Зачастую коробит перевод папки/закладки 
Pictures как Картинки, особенно когда приходится перемещать туда 
профессиональное фото. Что касается меня, то внутри папки я использую 
разделение папок по фотографиям и обычным картинкам. Возможно, вы 
согласитесь что было бы более удачным вариантом взять одно из значений 
слова Pictures - Изображения. Которое является более общим ко всем 
графическим файлам, будь то фотографии, картинки, растр и прочее.

Точно не уверен, но скорее всего за название папок отвечает Nautilus. В 
Ubuntu нашел следующие пакеты содержащие слово Картинки:

/usr/share/locale-langpack/ru/LC_MESSAGES/gnome-icon-theme.mo
/usr/share/locale-langpack/ru/LC_MESSAGES/nautilus.mo
/usr/share/locale-langpack/ru/LC_MESSAGES/xdg-user-dirs.mo
/usr/share/locale/ru/LC_MESSAGES/xdg-user-dirs.mo

С уважением,
Александр
___
gnome-cyr mailing list
gnome-cyr@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-cyr


[Bug 118706] Re: TI SD Card reader doesn't work on LG laptop

2008-01-23 Thread Alexander Kraev
Hi Leann,

Please find dmesg output attached.

** Attachment added: dmesg.out.gz
   http://launchpadlibrarian.net/11512509/dmesg.out.gz

-- 
TI SD Card reader doesn't work on LG laptop
https://bugs.launchpad.net/bugs/118706
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 175510] Re: VNC connections doesn't work wtih SLES10.3: Unknown server message type

2008-01-11 Thread Alexander Kraev
My bad, please close this bug.

** Changed in: vnc4 (Ubuntu)
   Status: New = Invalid

-- 
VNC connections doesn't work wtih SLES10.3: Unknown server message type
https://bugs.launchpad.net/bugs/175510
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 118706] Re: TI SD Card reader doesn't work on LG laptop

2008-01-11 Thread Alexander Kraev
The same situation with latest Hardy Heron - card reader doesn't work.

02:00.0 CardBus bridge: Texas Instruments Unknown device ac49 (rev 01)
02:00.1 CardBus bridge: Texas Instruments Unknown device ac4b (rev 01)

Please find lspci output attached.

** Attachment added: lspci.txt.gz
   http://launchpadlibrarian.net/11283239/lspci.txt.gz

-- 
TI SD Card reader doesn't work on LG laptop
https://bugs.launchpad.net/bugs/118706
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 175510] VNC connections doesn't work wtih SLES10.3: Unknown server message type

2007-12-11 Thread Alexander Kraev
Public bug reported:

I can't make VNC connection with Suse Linux Enterprise Server 10.3 in
Gutsy. I tried xvnc3viewer, vncviewer and xtightvncviewer. It works fine
in Feisty with xtightvncviewer. I get an Unknown server message type
message. Please find details in the attachment.

** Affects: vnc4 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
VNC connections doesn't work wtih SLES10.3: Unknown server message type
https://bugs.launchpad.net/bugs/175510
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 175510] Re: VNC connections doesn't work wtih SLES10.3: Unknown server message type

2007-12-11 Thread Alexander Kraev

** Attachment added: trace.txt
   http://launchpadlibrarian.net/10840790/trace.txt

-- 
VNC connections doesn't work wtih SLES10.3: Unknown server message type
https://bugs.launchpad.net/bugs/175510
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 175510] Re: VNC connections doesn't work wtih SLES10.3: Unknown server message type

2007-12-11 Thread Alexander Kraev
** Description changed:

- I can't make VNC connection with Suse Linux Enterprise Server 10.3 in
- Gutsy. I tried xvnc3viewer, vncviewer and xtightvncviewer. It works fine
- in Feisty with xtightvncviewer. I get an Unknown server message type
- message. Please find details in the attachment.
+ I can't set up VNC connection with Suse Linux Enterprise Server 10.3 in
+ Gutsy. I tried xvnc4viewer, vncviewer and xtightvncviewer. I get an
+ Unknown server message type message. It worked fine in Feisty with
+ xtightvncviewer.  Please find details in the attachment.
+ 
+ Thanks for any help!

** Tags added: vnc

-- 
VNC connections doesn't work wtih SLES10.3: Unknown server message type
https://bugs.launchpad.net/bugs/175510
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


telnet source address

2007-12-10 Thread Alexander Kraev
Всем привет!

А можно как-то telnet заставить делать соединения с виртуального 
интерфейса, то есть указать ему интерфейс в качестве источник.

А.

-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


[Bug 118706] Re: TI SD Card reader doesn't work on LG laptop

2007-12-07 Thread Alexander Kraev
Hi all!

Does anyone could make something with this issue? Every time I need to
boot in MS WinXP to get data from SD card. This is really problem for me
and other LG laptop owners :( Let me know if you need more information
from me.

-- 
TI SD Card reader doesn't work on LG laptop
https://bugs.launchpad.net/bugs/118706
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: qemu kqemu

2007-11-29 Thread Alexander Kraev
Кроме того что VB основан на qemu я ничего не знаю. Может тогда сразу 
проясните разницу чтобы мне понять?

С.

Roman Makurin пишет:
 В Пнд, 26/11/2007 в 14:30 +0300, Alexander Kraev пишет:
 Это почему же? Есть тесты сравнительные или другие доказательства?

 
 Для начала поймите разницу между virtualbox`ом и qemu, после этого
 вопросы должны исчезнуть
 
 

-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: qemu kqemu

2007-11-26 Thread Alexander Kraev
Это почему же? Есть тесты сравнительные или другие доказательства?

Roman Makurin пишет:
 qemu тормоз как ни крути, юзай vitualbox

Александр.

-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Выключение компа по Cron'у

2007-11-08 Thread Alexander Kraev
тупо проверь содержания файла кронтаба или sudo crontab -l, проверь 
пользователя под которым ты пишешь и проверь локальну почту! или включи 
обработчик почты чтобы знать что пишет крон в почту по поводу твой 
строки запуска. так сидеть можно неделями и ждать у моря погоды.

С.

Денис Марков пишет:
 Блин даже не знаю что и делать. Задание пишу от рута, куда уж сложнее:
 
 * sudo -s -H
 * crontab -e
 * далее добавляю: 30 23 * * 0-4 /sbin/halt
 
 И полный ноль.
 

-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


[Bug 118706] Re: TI SD Card reader doesn't work on LG laptop

2007-11-01 Thread Alexander Kraev
hi all,

i have just jested this issue on my lg lm40 laptop with gutsy - the sd
card still doesn't work.

$ uname -a
Linux india 2.6.22-14-generic #1 SMP Sun Oct 14 23:05:12 GMT 2007 i686 GNU/Linux

$ lspci | grep -i unk
02:00.0 CardBus bridge: Texas Instruments Unknown device ac49 (rev 01)
02:00.1 CardBus bridge: Texas Instruments Unknown device ac4b (rev 01)

-- 
TI SD Card reader doesn't work on LG laptop
https://bugs.launchpad.net/bugs/118706
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [spb.linux] [Saint-Petersburg] Ubuntu 7.10 release party

2007-10-18 Thread Alexander Kraev
Хех, поздно спланировали... Но отчет все равно интересно послущать.

18.10.07, andrey i. mavlyanov [EMAIL PROTECTED] написал(а):

 andrey i. mavlyanov wrote:

  Собираемся начиная с 19 часов в баре БарSПб, который находится по адресу
Комендантский проспект дом 17 (метро Комендантский проспект).


 я конечно накосячил и забыл дату указать. дата - 19е октября.

 p.s. приходите все, независимо каким вы дистрибутивом пользуетесб или
 планируете пользоваться - ведь мы все линуксоиды и найдём общий язык. да
 и потом это же вечеринка! ;-)




-- 
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Удалённое администрирование

2007-10-11 Thread Alexander Kraev
Можно еще пустить иксы через ssh-туннел.

На удаленной машине:
/etc/ssh/sshd_config : X11Forwarding yes

Соединяетесь с удаленной машиной:
ssh -X [EMAIL PROTECTED]

На удаленной машине делаете эскопорт на удаленный дисплей:
export DISPLAY=10.0

На удаленной машине запускаем нужную программу в том же окне терминала где и
делали экспорт дисплея:
firefox 

Ждем появления firefox на локальной машине...

10.10.07, Антон [EMAIL PROTECTED] написал(а):

 Возможно ли управлять ПК в ЛС, если на у меня установлена ОС Ubuntu
 6.10, а на удалённом - Xubuntu 7.04. При этом хотелось бы видеть
 рабочий стол управляемой машины и т. п. Если возможно, то, пожалуйста,
 подскажите как.
 Заранее благодарю.




-- 
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Удалённое администрирование

2007-10-11 Thread Alexander Kraev
А зачем?

Задача была: При этом хотелось бы видеть рабочий стол управляемой машины

2007/10/11, Sergei Stolyarov [EMAIL PROTECTED]:

 И как это, интересно, можно используя ssh -X подключиться к работающей
 иксовой
 программе?




-- 
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Удалённое администрирование

2007-10-11 Thread Alexander Kraev
Да, это так. Но, опять же, этод метод решает поставленную человеком задачу
без всяких рюшечек вроде VNC и прочего.

2007/10/11, Sergei Stolyarov [EMAIL PROTECTED]:


 А потом обрываем соединение и все запущенные таким образом программы
 рушатся.




-- 
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Удалённое администрирование

2007-10-11 Thread Alexander Kraev
Он самописный или на базе чего-то? Есть такая вещь как webmin, но для меня
консоль - первый инструмент. Кстати, что может сотрудник Alt(?) найти
полезного в рассылке Ubuntu?

11.10.07, Maxim Bodyansky [EMAIL PROTECTED] написал(а):

 У нас (в ALT Linux) есть такая тузла -- Alterator, на основе
 одних скриптов управления (backend) предоставляющая Web и
 GUI интерфейсы (frontend) для конфигурирования всего и вся.

 В Ubuntu есть/намечается что-либо подобное?




-- 
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: http://forum.ubuntu.ru сдох?

2007-10-11 Thread Alexander Kraev
В предыдущий раз у меня возникло желание сделать это:

http://ubuntero.ru/forum

Не помню что я там так и не доделал, но сайт решил не открывать - так как
форум на ubuntu.ru снова заработал ;) Поэтому, ради случай сегодня октрыл
доступ. Если кому-то будет полезен пустой форум - то велкам!

Надеюсь, что основной форум все же скоро заработает.

11.10.07, Vyacheslav Karamov [EMAIL PROTECTED] написал(а):

 Привет всем!

 http://forum.ubuntu.ru сдох насовсем или как?
 Известно что-то определённое?




-- 
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Удалённое администрирование

2007-10-11 Thread Alexander Kraev
Э... ну в Solaris 8,9 этого не происходит. Все зависит от версии ssh ;)
Это на всякий случай, чтобы знать суть.

2007/10/11, ph [EMAIL PROTECTED]:

 On 11-Oct-2007, Alexander Kraev wrote:

 
  На удаленной машине делаете эскопорт на удаленный дисплей:
  export DISPLAY=10.0
 Так ведь ssh -X сам высатавляет переменную окружения DISPLAY
 А также делает на время сессии xhost +remote_addr




-- 
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: обоина в Ubuntu 7.10 (Gutsy)

2007-09-27 Thread Alexander Kraev
Вариант ужасные и не тянет на правду. Мне подошла для последней Human theme
обои от Netbeans:
http://www.netbeans.org/community/teams/evangelism/collateral.html#wallpapers

Особенно я исползую этот вариант:
http://www.netbeans.org/images/wallpapers/wallpaper4-6.png

27.09.07, Maxim Ushakov [EMAIL PROTECTED] написал(а):

 Прислали по аське такое:
 -- 8 
 В интернете появилось изображение обоины 
 (http://volanin.com.br/petition/default-brown-fluid.jpg
 ), которая будет стоять в Ubuntu 7.10 (Gutsy) по умолчанию.Многие сразу же
 возненавидели ее по нескольким причинам:
 * скучная, похожая на обоины из старых версий
 * похожа на маковскую и вистовскую обоину
 * слишком темная ubuntu-ru@lists.ubuntu.com


-- 
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: CS 1.5

2007-09-11 Thread Alexander Kraev
А разве линусковый бинарь это не сервер CS под линукс? Я самой CS для
конечного пользователя по линукс не видел.

2007/9/10, Vyacheslav Karamov [EMAIL PROTECTED]:

 Взять родной линуксовый бинарник на
 ftp://ftp.linuxcenter.ru/projects/games/Action/Cs/
 и не париться.


-- 
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: поклонникам QIP

2007-09-06 Thread Alexander Kraev
Читаю вас и понять не могу, сижу в pidgin(gaim), все в нем есть, все
работает. Что не так? Объясните мне тупому чем QIP лучше pidgin чтобы так
его тут рекламировать?

04.09.07, rvadmin [EMAIL PROTECTED] написал(а):

 Привет всем. Недавно написал письмо разработчикам QIP, c вопросом,
 собираются ли они делать версию для linux.




-- 
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: поклонникам QIP

2007-09-06 Thread Alexander Kraev
так я и не понял чем автора топика не устраивают имеющиеся клиенты. если
дело все в привычке, тогда нужно вернуться к истокам - к виндовс, раз автор
с него и начал свои привычки.

да, и про оверквотинг тоже не стоит забывать, товарищи. то, что рассылка
превратилась в помойку и так понятно, но не стоит так откровенно ее портить.


-- 
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: поклонникам QIP

2007-09-06 Thread Alexander Kraev
Да, я бы дальше с вами спорил, только вот у вас несколько сообщения и в них
тема QIP(я не знаю что это) не раскрыта. О чем можно говорить? Просто по
сообщению вида сидел на квипе, хочу его теперь на линуксе можно судить,
что вам просто его рюшечки, к примеру, могли понравится. Может тему
подыскать для GAIM? Хоть бы несколько пунктов привели, чем ваш квип лучше
остальных. А если дело только в привычке - то читайте мое сообщение выше.

06.09.07, rvadmin [EMAIL PROTECTED] написал(а):

 Qip мне больше нравится чем клиенты под Linux, и это моё мнение. То что
 вы не видите разницы - не означает, что её нет. Может для вас она не
 существенная, и вы на то, что для меня важно, не обращаете внимание.




-- 
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


[Bug 133308] Re: Inaccurate russian translation of LiveCD boot menu

2007-08-19 Thread Alexander Kraev
There I can find strings to be translated for casper? There is no templates in 
gusty:
https://translations.launchpad.net/ubuntu/gutsy/+source/casper

-- 
Inaccurate russian translation of LiveCD boot menu
https://bugs.launchpad.net/bugs/133308
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 118706] Re: TI SD Card reader doesn't work on LG laptop

2007-06-04 Thread Alexander Kraev

** Attachment added: lspci -vvn
   http://launchpadlibrarian.net/7961554/lspci.out

** Tags added: card sd

-- 
TI SD Card reader doesn't work on LG laptop
https://bugs.launchpad.net/bugs/118706
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 118706] TI SD Card reader doesn't work on LG laptop

2007-06-04 Thread Alexander Kraev
Public bug reported:

Ok, I have seen a lot of bugs related to the SD Card reader problems.
But I haven't found solution for my case and my case seems to be unique
than others. I have an internal SD Card Reader from Texas Instruments on
LG LM40 laptop. In WinXP I see two devices under PCMCIA adapters:

- TI CardBus Controller with FlashMedia
- TI PCI7410 CardBus Controller

I have tried a lot of tricks with modprobe, tifm_* and mmc_* modules but
without any success. There weren't even any mentions in dmesg about SD
Card Reader when I tried to load modules.

Here is output of lspci:

00:00.0 Host bridge: Intel Corporation 82855PM Processor to I/O Controller (rev 
21)
00:01.0 PCI bridge: Intel Corporation 82855PM Processor to AGP Controller (rev 
21)
00:1d.0 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) 
USB UHCI Controller #1 (rev 03)
00:1d.1 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) 
USB UHCI Controller #2 (rev 03)
00:1d.2 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) 
USB UHCI Controller #3 (rev 03)
00:1d.7 USB Controller: Intel Corporation 82801DB/DBM (ICH4/ICH4-M) USB2 EHCI 
Controller (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 83)
00:1f.0 ISA bridge: Intel Corporation 82801DBM (ICH4-M) LPC Interface Bridge 
(rev 03)
00:1f.1 IDE interface: Intel Corporation 82801DBM (ICH4-M) IDE Controller (rev 
03)
00:1f.3 SMBus: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus 
Controller (rev 03)
00:1f.5 Multimedia audio controller: Intel Corporation 82801DB/DBL/DBM 
(ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 03)
00:1f.6 Modem: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 
Modem Controller (rev 03)
01:00.0 VGA compatible controller: ATI Technologies Inc M9+ 5C63 [Radeon 
Mobility 9200 (AGP)] (rev 01)
02:00.0 CardBus bridge: Texas Instruments Unknown device ac49 (rev 01)
02:00.1 CardBus bridge: Texas Instruments Unknown device ac4b (rev 01)
02:00.2 FireWire (IEEE 1394): Texas Instruments PCI7410,7510,7610 OHCI-Lynx 
Controller
02:00.3 System peripheral: Texas Instruments PCI7410,7510,7610 PCI Firmware 
Loading Function
02:02.0 Network controller: Intel Corporation PRO/Wireless LAN 2100 3B Mini PCI 
Adapter (rev 04)
02:06.0 Ethernet controller: 3Com Corporation 3c905C-TX/TX-M [Tornado] (rev 78)

** Affects: linux-source-2.6.20 (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed


** Tags: card sd

-- 
TI SD Card reader doesn't work on LG laptop
https://bugs.launchpad.net/bugs/118706
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re:

2007-06-03 Thread Alexander Kraev

Самый простой способ:
нажать на апплете network configuration в gnome или
система-администрирование-сеть

Или править вручную:
/etc/network/interfaces

03.06.07, Дякин Кирилл [EMAIL PROTECTED] написал(а):


Здравствуйте ubuntu-ru,

Каждый раз мне приходится настраивать eth0: sudo ifconfig eth0
xxx.xxx.xxx.xxx
netmask 255.xxx.xxx.xxx
Вопрос: как сделать, что бы эти настройки сохранаялись и не
приходилось при каждом запуске повторять эти действия?



--
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: запуск игры Nexuiz

2007-05-29 Thread Alexander Kraev

Павел, а что внутри .sh? Может плюнуть на это дело и попробовать Warsow?

29.05.07, Pavel A. Letskiy [EMAIL PROTECTED] написал(а):


Я же привел строку как запускал:

  $ ./nexuiz-linux-sdl.sh
  exec: 114: ./nexuiz-linux-686-sdl: Permission denied

Так разве так можно запустить файл без прав на запуск? :))



--
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: запуск игры Nexuiz

2007-05-29 Thread Alexander Kraev

Собственно, гугл... сразу выводит домашнюю страницу. Вот скриншоты:
http://www.warsow.net/?page=media

тупое предположение, может к дисплею не может подключится?
да, а такой файлик не пробовал nexuiz-linux-glx.sh?

2007/5/29, Pavel A. Letskiy [EMAIL PROTECTED]:


On Tue, May 29, 2007 at 05:30:12PM +0400, Alexander Kraev wrote:
 Павел, а что внутри .sh? Может плюнуть на
 это дело и попробовать Warsow?

Саша, Warsow - это чего такое? :)

Внутри вот что:





--
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: GAIM - ошибка с русскими коддировками

2007-05-23 Thread Alexander Kraev

cp1251 не помогает?

23.05.07, Maxim Pilipchuk [EMAIL PROTECTED] написал(а):


Подскажите, в информации о пользователе (Аська) проблема с кодировкой
в русских полях. Это лечится? Как?
Спасибо




--
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: GAIM - ошибка с русскими коддировками

2007-05-23 Thread Alexander Kraev

В свойствах учетной записи можно указать кодировку.

23.05.07, Maxim Pilipchuk [EMAIL PROTECTED] написал(а):


а где регулируются раскладки у gaim?
самое интересное, что при общении через аську проблем с кодировкой
нет, только при просмотре инфы о пользователе



--
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: GAIM - ошибка с русскими коддировками

2007-05-23 Thread Alexander Kraev

Попробуй так:

#!/bin/bash
export LC_ALL=CP1251
export LANG=ru_RU.CP1251
gaim 

Если заработает, то пропиши экспорты в свойствах ярлыка для запуска Gaim.



23.05.07, Roma Yandolin [EMAIL PROTECTED] написал(а):


On 5/23/07, Alexander Kraev [EMAIL PROTECTED] wrote:

 cp1251 не помогает?

От этого вроде не помогает. Проблема в том, что если в контак-листе
названия групп были написаны по-русски, то в gaim'e они отображаются
кракозябрами при любой кодировке в настройках.




--
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Сверхмедленная загрузка (xubuntu)

2007-05-10 Thread Alexander Kraev

fsk с момента ввода логина и пароля по появления рабочего стола XFCE ?

10.05.07, Alexander Smirnov [EMAIL PROTECTED] написал(а):


Проверь fstab - не проверяет ли fsck при загрузке разделы?



--
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Сверхмедленная загрузка (xubuntu)

2007-05-10 Thread Alexander Kraev

Опять же, это было после ввода логина и пароля?

10.05.07, Ivlev Kirill [EMAIL PROTECTED] написал(а):


Лично у меня такое было, с просто ubuntu, грузилось долго потому что
пыталась получить адрес по dhcp, чего делать не надо было...



--
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Скрипт на bash

2007-05-02 Thread Alexander Kraev

tar - create tape archives

тут можно долго спорить,для меня ключевой момент что это именно tape. то
есть когда он создавался он возможно и не имел функциональности заворачивать
все в файл а просто на ленту писал. то есть, я думаю что когда он создавался
никто и не думал использовать его в качесте инструмента для создания
тарболов/архивов. а потом все просекли что можно tar зипануть и все и вообще
удобно.

так что, спорить можно, но та ли это вещь чтобы спорить?

02.05.07, Ilya Petrov [EMAIL PROTECTED] написал(а):



В Вск, 29/04/2007 в 00:49 +0500, Aleksey Korotkov пишет:
 Вы путаете архивирование со сжатием. tar именно архиватор.
 Архивирование вовсе не подразумевает обязательного сжатия.

вот я долго на эту тему спорил с преподом по информатике :)
мол, изначально в досе (уже бугога) все архиваторы были со сжатием.
в итоге зачет я получил через месяц после сессии


--
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru





--
Alexander Kraev
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


  1   2   >