Bug#783982: D-i: preseed from floppy no longer works !

2015-05-02 Thread Alexey Eromenko
I have created /dev/fd0 via.
# mknod /dev/fd0 b 2 0
# mkdir floppy

Results: mknod never reported any problem, But (!)

# mount /dev/fd0 floppy
Works in Debian 7 (d-i), and fails in Debain 8 (d-i) with message:
mount: mounting /dev/fd0 on floppy failed: No such device or address

-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#783982: D-i: preseed from floppy no longer works !

2015-05-02 Thread Alexey Eromenko
I ask to reverse decision about floppy-modules, because while
physical floppies aren't used in years, this functionality is very
much used for virtualization.

Like my vbox-unattened patch; Without floppy driver there will not be
an automated installer for Debian 8 VMs in VirtualBox.

-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#783982: D-i: preseed from floppy no longer works !

2015-05-02 Thread Alexey Eromenko
I have extracted initrd from all 3 medias: Debian(6,7,8)-amd64-DVD,

alexey@deb6-xrig:~/debian6-auto/bootiso/install.amd/tmp2$ find . |
grep ko | grep floppy
./lib/modules/2.6.32-5-amd64/kernel/drivers/block/floppy.ko

alexey@deb6-xrig:~/debian7-auto/bootiso/install.amd/tmp2$ find . |
grep ko | grep floppy
./lib/modules/3.2.0-4-amd64/kernel/drivers/block/floppy.ko

alexey@deb6-xrig:~/debian8-auto/bootiso/install.amd/tmp2$ find . |
grep ko | grep floppy
alexey@deb6-xrig:~/debian8-auto/bootiso/install.amd/tmp2$

Basically we have a proof, that Debian 8 d-i kernel lacks
drivers/block/floppy.ko module. Which causes the problem.

Now what ? Who is responsible for d-i kernels ? Should I open a separate bug ?

Thanks for help,
-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#783982: D-i: preseed from floppy no longer works !

2015-05-02 Thread Alexey Eromenko
I'd prefer not to introduce any new dependecies, for portability reasons.
Would like to have floppy support back.


Bug#783982: D-i: preseed from floppy no longer works !

2015-05-02 Thread Alexey Eromenko
No idea about GNU cpio.
Is it compatible with BSD cpio ?
I can't easily introduce new dependency for portable code. (host-side
must be very portable code)
It will require investigation.

Besides, this command didn't work for me. (preseed.cfg wasn't added)

On Sun, May 3, 2015 at 1:36 AM, Ben Hutchings b...@decadent.org.uk wrote:
 On Sat, 2015-05-02 at 16:50 +0300, Alexey Eromenko wrote:
 I ask to reverse decision about floppy-modules, because while
 physical floppies aren't used in years, this functionality is very
 much used for virtualization.

 Like my vbox-unattened patch; Without floppy driver there will not be
 an automated installer for Debian 8 VMs in VirtualBox.

 You should be able to add the preseed file to the initrd like this:

 echo preseed.cfg | cpio -o -H newc | gzip  initrd.gz

 Does that not work for you?

 Ben.

 --
 Ben Hutchings
 Q.  Which is the greater problem in the world today, ignorance or apathy?
 A.  I don't know and I couldn't care less.



-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#783982: D-i: preseed from floppy no longer works !

2015-05-01 Thread Alexey Eromenko
You said
 I think you are looking for providing a preseed file,
hence my advice
https://www.google.nl/search?q=virtualbox+host+http+server+for+guests;

1. You're correct in that I'm looking to provide preseed file. But
host-side HTTP server won't work for my needs, unless VirtualBox has
it integrated. My technology is aimed at people, who require *zero*
configuration, and should work across all hosts. Like click, click,
click...
Basically I need very minimal (and portable) host-side logic (and move
as much complexity into the guest as possible).

You said:
Do an attended install. Verify that reading from floppy is possible.
That is important. It proofs that the Virtualbox host provides
a floppy disk controller and that the Vbox guest has a kernel kernel
for the f.d.c.  Also it shows there is /dev/fd0 (IIRC)

2. Well... you'r right ! /dev/fd0 is the problem !
Yes, I ensured, that VM has floppy controller configured, plus
floppy.img inserted.

Debian 8 (mini-)kernel (inside amd64-DVD) does NOT see /dev/fd0 !
(part of debian-installer); This works just fine with Debian 6 and 7 !
Post-install Debian 8 kernel _does_ see /dev/fd0, can loop-mount and
can read files from it. (after installing from Debian 8 amd64-DVD), so
no problem here.

The natural question: Are those kernels different ? (I always assumed
it is the *same* kernel)
It seems the mini-kernel does not provide me with /proc/config.gz,
so I have no clue what's included and what's excluded.
How can I check ?

Thanks for finding the problem !

-Alexey


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#783995: [feature-request] Please allow to view kernel config via /proc/config.gz in all Debian kernels

2015-05-01 Thread Alexey Eromenko
Why would it be good for this to be exposed inside a container?

So that applications know, if they can use advanced features such as
AppArmor or not. And to give more complete environment for the admins.

Plus, to debug problems inside debian-installer. (it lacks /boot/config),
like bug # 783982, where normal Debian 8 kernel supports floppy /dev/fd0,
but d-I kernel doesn't.

Why it can't be changed in stable releases?  I mean if the change is small
and beneficial, why not ? (Assuming it doesn't require major kernel source
code changes, but only kernel config)


Bug#783995: [feature-request] Please allow to view kernel config via /proc/config.gz in all Debian kernels

2015-05-01 Thread Alexey Eromenko
Package: linux-image-amd64
Version: 3.16.7-ckt7-1

Hi,

It would help me very much, if Debian kernel provided a quick ability
to see it's own configuration in /proc/config.gz.

Reason:
in some cases viewing current kernel configuration via #
/boot/config-$(uname -r) is not available; For example when working
with Debian-installer (booting from DVD), or working inside an OpenVZ
(or LXC) container.

For those reasons I ask you to enable /proc/config.gz in all
supported Debian kernels (Debian 6, 7 and 8), if possible.

As far as I'm aware it's stable feature, and there is no downside from
enabling it.

+General setup
[*] Kernel .config support
[*] Enable access to .config through /proc/config.gz

Original article:
http://superuser.com/questions/287371/obtain-kernel-config-from-currently-running-linux-system

Thanks in advance,
--
-Alexey Eromenko Technologov, 01.May.2015.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#783982: D-i: preseed from floppy no longer works !

2015-05-01 Thread Alexey Eromenko
Package: debian-installer
Version: 20150422

Hi,

in older versions of Debian (6.x and 7.x), I could load preseed script
from floppy, and it would work.

I had to change isolinux / bootloader with preseed/file=/floppy/preseed.cfg:

label debian
  kernel /install.$arch/vmlinuz
  append initrd=/install.$arch/initrd.gz debian-installer/locale=en_US
keymap=us console-setup/layoutcode=us netcfg/choose_interface=auto
priority=critical preseed/file=/floppy/preseed.cfg --

Debian 8 returns me Failed to retrieve the preconfiguration file
error, with exactly the same setup.

I need this feature to enable unattended install of Debian 8 VM in
VirtualBox (vbox-unattended feature), where preseed script gets loaded
from virtual floppy.
https://forums.virtualbox.org/viewtopic.php?f=10t=46798

Working with debian-8.0.0-amd64-DVD-1.iso. Official Jessie 8.0
Debian installer.
Please fix preseed/file=/floppy/preseed.cfg:

As a separate, but related question: is it possible to load preseed
script from 2nd CDROM ? (IDE Secondary Slave, or SATA 2nd CD...)
I tried preseed/file=/cdrom2/preseed.cfg, but it didn't work.

Thanks in advance,
-- 
-Alexey Eromenko Technologov, 01.May.2015.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#767130: Suspend/sleep causes my laptop to never wake up, lose data

2014-10-28 Thread Alexey Eromenko
Package: linux-image-amd64
Version: 3.16-2-amd64
Severity: critical

When I close the lid on my laptop, it goes to sleep (suspend).
When I open it up, the system never wakes up, which equals to system
crash and data loss.

Hardware: Toshiba Portege Z30 Ultrabook, Intel Core i7 4600U

DMI decode:
http://pastebin.com/30Jhfr77

lspci -v:
http://pastebin.com/sBWXCGjM

The problem could be upower, or kernel itself.
This bug makes Debian a non-functional on this laptop. Sadly I can't
use Debian 7.0 Wheezy on it, due to lack of Ethernet drivers.

I am using Debian GNU/Linux 8.0 Jessie BETA, kernel Linux version
3.16-2-amd64 Debian 3.16.3-2 (2014-09-20)
-- 
-Alexey Eromenko Technologov, 28.Oct.2014.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#707094: [Pkg-virtualbox-devel] Bug#707094: [virtualbox-dkms] Fails to build the kernel module for kernel 3.8-1-686-pae

2013-05-07 Thread Alexey Eromenko
Upgrading kernel will probably force you to use upstream VirtualBox
(from Oracle).
Debian's VirtualBox only supports Debian kernel (3.2.x).

On Tue, May 7, 2013 at 12:57 PM, Rainer Schwarzbach
rai...@blackstream.de wrote:
 Package: virtualbox-dkms
 Version: 4.1.18-dfsg-2+deb7u1
 Severity: important

 --- Please enter the report below this line. ---

 Dear Maintainer,

 after installing kernel 3.8-1-686-pae, I triggered the build of the
 Virtualbox kernel module by entering 'dpkg-reconfigure virtualbox-dkms'.
 The (re-)build for the old 3.2.0-4-686-pae went well, but for the new
 kernel, I got the following messages:

 Building initial module for 3.8-1-686-pae
 Error! Bad return status for module build on kernel: 3.8-1-686-pae (i686)
 Consult /var/lib/dkms/virtualbox/4.1.18/build/make.log for more information.


 The mentioned make.log contains the following:

 DKMS make.log for virtualbox-4.1.18 for kernel 3.8-1-686-pae (i686)
 Di 7. Mai 13:35:22 CEST 2013
 make: Entering directory `/usr/src/linux-headers-3.8-1-686-pae'
   LD  /var/lib/dkms/virtualbox/4.1.18/build/built-in.o
   LD  /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/built-in.o
   CC [M] /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/linux/SUPDrv-linux.o
   CC [M]  /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/SUPDrv.o
   CC [M]  /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/SUPDrvSem.o
   CC [M]  /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/r0drv/alloc-r0drv.o
   CC [M]
 /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/r0drv/initterm-r0drv.o
   CC [M] /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/r0drv/memobj-r0drv.o
   CC [M]
 /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/r0drv/mpnotification-r0drv.o
   CC [M]
 /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/r0drv/powernotification-r0drv.o
   CC [M]
 /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/r0drv/linux/assert-r0drv-linux.o
   CC [M]
 /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/r0drv/linux/alloc-r0drv-linux.o
   CC [M]
 /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/r0drv/linux/initterm-r0drv-linux.o
   CC [M]
 /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/r0drv/linux/memobj-r0drv-linux.o
 /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/r0drv/linux/memobj-r0drv-linux.c:
 In function ‘rtR0MemObjNativeMapUser’:
 /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/r0drv/linux/memobj-r0drv-linux.c:1451:38:
 error: ‘VM_RESERVED’ undeclared (first use in this function)
 /var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/r0drv/linux/memobj-r0drv-linux.c:1451:38:
 note: each undeclared identifier is reported only once for each function it
 appears in
 make[4]: ***
 [/var/lib/dkms/virtualbox/4.1.18/build/vboxdrv/r0drv/linux/memobj-r0drv-linux.o]
 Fehler 1
 make[3]: *** [/var/lib/dkms/virtualbox/4.1.18/build/vboxdrv] Fehler 2
 make[2]: *** [_module_/var/lib/dkms/virtualbox/4.1.18/build] Fehler 2
 make[1]: *** [sub-make] Fehler 2
 make: *** [all] Fehler 2
 make: Leaving directory `/usr/src/linux-headers-3.8-1-686-pae'


 Kind regards
 Rainer

 --- System information. ---
 Architecture: i386
 Kernel:   Linux 3.2.0-4-686-pae

 Debian Release: jessie/sid
   500 unstableftp.de.debian.org
   500 testing ftp.de.debian.org

 --- Package information. ---
 Depends(Version) | Installed
 -+-==
 dkms(= 2.1.0.0) | 2.2.0.3-1.2
 virtualbox (= 4.1.18-dfsg-2+deb7u1) | 4.1.18-dfsg-2+deb7u1


 Package's Recommends field is empty.

 Package's Suggests field is empty.

 ___
 Pkg-virtualbox-devel mailing list
 pkg-virtualbox-de...@lists.alioth.debian.org
 http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-virtualbox-devel



-- 
-Alexey Eromenko Technologov


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#698607: [Pkg-virtualbox-devel] Bug#698607: Compatibility with 3.7-trunk kernel

2013-01-20 Thread Alexey Eromenko
 I'm attaching a patch to compile with debian 3.7 kernel
 I don't known when VM_RESERVED gone in kernel, my patch checks for 3.7
 I've seen other reports about 3.6 but I've opened a new bug since they are
 duplicated and confusing.

 the check can be done on VM_RESERVED definition but the better way
 would be find when removed in the kernel. I don't have a kernel git tree now


Instead of writing patches from scratch, another option would be to
backport patches from upstream VirtualBox.

Thanks for your hard work
-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#697372: Please add 32-bit compatibility to amd64 Debian desktops *by default*

2013-01-04 Thread Alexey Eromenko
Package: tasksel
Version: 3.14

Dear developers,

32-bit programs, such as FireFox refuse to work on Debian 7.0 64-bit (amd64).
This issue is well documented in the Bug#697270: PC 32-bit programs
fails to work on amd64.
It turns out, that default Debian 7.0 64-bit does not include 32-bit libraries.

I ask you to include LSB 32-bit libraries on amd64 systems, if the
user chooses Desktop environment.
Because this issue will hit desktop users the most. Lots of popular
programs ship in 32-bit by default (such as forementioned FireFox from
mozilla.org)

I am using amd64 Debian GNU/Linux 7.0, kernel 3.2.
--
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Alexey Eromenko
Package: kernel-image
Version: 3.2.0
severity: serious

(kernel-image-3.2.0-4-amd64-di)

Dear developers,

32-bit programs, such as FireFox refuse to work on Debian 7.0 64-bit (amd64).
This is new fresh stock install from di-BETA4 Wheezy DVD. (KDE)
The same works great on Debian 6.0 64-bit !

user@deb7vm:~/Downloads$ uname -a
Linux deb7vm 3.2.0-4-amd64 #1 SMP Debian 3.2.35-2 x86_64 GNU/Linux
user@deb7vm:~/Downloads$ arch
x86_64

32-bit user-space app -- execution FAILURE !!!
user@deb7vm:~/Downloads$ file 32bit/firefox/firefox-bin
32bit/firefox/firefox-bin: ELF 32-bit LSB executable, Intel 80386,
version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux
2.6.9, stripped
user@deb7vm:~/Downloads$ 32bit/firefox/firefox-bin
bash: 32bit/firefox/firefox-bin: No such file or directory

64-bit user-space app - WORKS !
user@deb7vm:~/Downloads$ file 64bit/firefox/firefox-bin
64bit/firefox/firefox-bin: ELF 64-bit LSB executable, x86-64, version
1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.9,
stripped
user@deb7vm:~/Downloads$ 64bit/firefox/firefox-bin
[programs WORKS]

Firefox 64-bit taken from:
http://mozilla.mirrors.tds.net/pub/mozilla.org/firefox/releases/latest/linux-x86_64/en-US/firefox-17.0.1.tar.bz2
The 32-bit comes from mozilla.org home page. (it is the default)

Please enable 32-bit user-space apps to work on 64-bit O.S. *by
default*. There are tons of desktop 32-bit apps for Linux, that should
*just work*. I have no clue if the problem is kernel or someplace
else, so please forward this issue to the appropriate package team.
The CLI output (saying file not found) is of no help either, and is
very misleading.

I am using amd64 Debian GNU/Linux 7.0, kernel 3.2.
-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Alexey Eromenko
User error? Huh ?

No ! This is a Debian Bug !
Debian clearly says: File does not exist, while in fact it DOES EXIST.
This is a 100% proof of Debian bug.

-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Alexey Eromenko
Please keep in mind, that I have wasted 4 hours of my personal time on
this Debian bug, and do you think this is reasonable ?

-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Alexey Eromenko
On Thu, Jan 3, 2013 at 7:25 PM, Thomas Goirand z...@debian.org wrote:

 on a 64 bits arch Debian, when really, you'd better just do:
 apt-get install iceweasel

 and use your newly installed browser in 64 bits mode...

Not, because my job requires the latest FireFox (latest-and-greatest).
And the standard FireFox, which is 32-bits, should work.
Debian should ship with at least basic 32-bit packages, for LSB
dependency. (3rd party vendors code for 32-bit LSB)

-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Alexey Eromenko
But having 32-bit LSB compliance will help people a _LOT_.

-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Alexey Eromenko
On Thu, Jan 3, 2013 at 8:05 PM, Didier 'OdyX' Raboud o...@debian.org wrote:

 release and lsb-base being Architecture: foreign). Patches are welcome to make
 Wheezy+1 more suitable to your needs.

How about changing it from a kernel bug to tasksel feature ?

I recommend: tasksel to install 32-bit libraries by default, if user
chooses stock Desktop (KDE/GNOME/XFCE/...). This should solve the
problem for most users.

-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#696953: [Pkg-virtualbox-devel] Bug#696953: virtualbox-source: Virtualbox does not compile with 3.7 kernels

2012-12-29 Thread Alexey Eromenko
Because Debian 7.0 Wheezy ships with kernel 3.2, not 3.7, this is
not a serious issue, but a *minor* one.

-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#691148: Debian's options

2012-11-22 Thread Alexey Eromenko
Hmm. I did not know of those BIOS news.

What are Debian's options ?

* Move VirtualBox 4.2 from main to contrib repo
Positives: least work required. Keeps 100% compatibility with Upstream.
Negatives: Demotivates Free Software developers.

* Use VirtualBox 4.2: Remove OpenWatcom code, and build BIOS from
assembler files
Positives: relatively little work required.
Negatives: Inability to backport upstream BIOS fixes into Debian's code.

* Move to VirtualBox 4.2 codebase, but keep VBox 4.1 BIOS.
Positives: Allows moving to VirtualBox 4.2 (the really big changes in
VBox are in user-space and in guest additions, not in BIOS and not in
kernel)
Negatives: I did not find out how-to do this.

* Stay with VirtualBox 4.1 forever (mini-fork)
Positives: Keeps stable base
Negatives: Lots of work; Will require constant patching to support new
Linux kernels. (and X11 drivers, for guest additions)

* Full fork of VirtualBox 4.1 (HyperBox ?)
Positives: Will offer major new features, that do not exist in
Oracle's VirtualBox [1]; More community control.
Negatives: Same as with mini-fork; Lots of work; Will require constant
patching to support new upstream Linux kernels. (and X11 drivers, for
guest additions). Taming the 300 MB monster (VBox source code,
unzipped) is a difficult task.
Eventually will lose compatibility with upstream.
Will be difficult to merge with upstream Oracle in the future.

[1] Major new features in question: (patches that Oracle rejected)
A. Unattended Guest OS Install - vbox-unattended (like VMware Easy Install)
https://forums.virtualbox.org/viewtopic.php?f=10t=46798

B. Hide VM from desktop taskbar (like Hyper-V)
https://forums.virtualbox.org/viewtopic.php?f=10t=46616

Any other options, that I forgot ?
-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#691148: [Pkg-virtualbox-devel] Bug#691148: Bug#691148: Bug#691148: Bug#691148: Please package virtualbox 4.2.2

2012-11-16 Thread Alexey Eromenko
 Well, you can change the assembler file directly. I wonder what happened if we
 just remove the OpenWatcom source files from the tarball? Or if the developers
 hadn't told us but instead said they created the assembler file by hand?


Removing OpenWatcom files sounds like a possibility.

-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#691148: [Pkg-virtualbox-devel] Bug#691148: Bug#691148: Bug#691148: Please package virtualbox 4.2.2

2012-11-14 Thread Alexey Eromenko
Can Debian apply an anti patch ? i.e. the BIOS changeset patch in reverse,
so it will become buildable again with bcc ?

-- 
-Alexey Eromenko Technologov


Bug#691148: [Pkg-virtualbox-devel] Bug#691148: Please package virtualbox 4.2.2

2012-11-12 Thread Alexey Eromenko
 Agreed, though virtualbox 4.2 is not DFSG-free [1] anymore which doesn't 
 exactly
 motivate me to invest time into this package.

Can you elaborate ?
I'm not aware of any changes in the VBox BIOS.

AFAIK VBox BIOS was always based on the bochs BIOS, not anymore ?

-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#691169: [Pkg-virtualbox-devel] Bug#691169: virtualbox-dkms: fails to build kernel-module with kernel 3.6.3

2012-10-22 Thread Alexey Eromenko
Debian's VirtualBox is designed to work with Debian's kernel; For
example Debian 6.0 includes VirtualBox 3.2.10, which supports Debian
6.0 kernel 2.6.32, but not any 3.x series kernels.

Same is true for Wheezy: Debian's VirtualBox 4.1.x is designed to work
with Debian 7.0 kernel 3.2, and you shouldn't expect it to work with
other kernels.

For newer kernels, you should use upstream VirtualBox from virtualbox.org.

-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#686226: [FATAL] Wheezy Debian installer fails on Qosmio hardware

2012-08-30 Thread Alexey Eromenko
Package: debian-installer
Version: 20120712
Severity: serious

Hi,

I'm trying to install Debian from Wheezy DVD (BETA1) on amd64. (Qosmio
X300-130 laptop).

Actual Result:
It fails during the Detect network hardware phase. Ie. stops
progressing, and no way to skip this stage.

and in console (F4) it complains about the lack of iwl Intel Wireless
firmware and missing eth1394 (Firewire Ethernet).

Expected Result:
Should proceed without problematic firmware or drivers.
Debian 6.0 works great on this same hardware. (installed from amd64 DVD)

-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#686074: Feature-request: Make IceWeasel work with FireFox, side-by-side

2012-08-28 Thread Alexey Eromenko
Package: iceweasel
Version: 3.5.16-16
Severity: wishlist

The problem with Debian's IceWeasel, is that it becomes outdated so
fast, during Debian's stable lifecycle, so that some sites do not work
with it (properly) anymore.
Real-world problem: GMail, which degrades me to Basic HTML, vs. full
experience. (due to outdated version of Iceweasel). HTML5 sites /
games also refuse to work.

What I would like to do, is to install  run Mozilla FireFox
side-by-side with Debian's IceWeasel.

Actual Result:
Currently, if I start Mozilla FireFox, then Iceweasel I get this ERROR:

Iceweasel is already running, but is not responding. To open a new
window, you must first close the existing Iceweasel process, or
restart your system.

NOTE: I realize this is upstream limitation of FireFox.
Just I ask to use a different default namespace (or how is it named in
FireFox lingo?) for Iceweasel, so those two browsers never ever
collide, if possible, and can run side-by-side.

Expected Result:
The two browsers should run side-by-side, no collisions.

NOTE 2: Google Chrome and Debian's Chromium *do work* side-by-side, no problems.

I am using Debian GNU/Linux 6.0. I believe this problem also related
to upcoming Debian 7.0/Wheezy and it's Iceweasel v10-ESR.
-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#676483: I have same error...

2012-08-16 Thread Alexey Eromenko
Hi,
I have same error when upgrading Debian 6.0.4 to Wheezy:

root@perro:~# apt-get dist-upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Failed
The following packages have unmet dependencies:
 libc6-dev : Breaks: gcc-4.4 ( 4.4.6-4) but 4.4.5-8 is to be installed
 libgcc1 : Breaks: gcc-4.4 ( 4.4.6-4) but 4.4.5-8 is to be installed
 libgfortran3 : Breaks: gcc-4.4 ( 4.4.6-4) but 4.4.5-8 is to be installed
 libgomp1 : Breaks: gcc-4.4 ( 4.4.6-4) but 4.4.5-8 is to be installed
 libstdc++6 : Breaks: gcc-4.4 ( 4.4.6-4) but 4.4.5-8 is to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be
caused by held packages.

root@perro:~# cat /etc/apt/sources.list
#
deb http://ftp.debian.org/debian/ wheezy main
deb-src http://ftp.debian.org/debian/ wheezy main

-- 
-Alexey Eromenko Technologov


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#665979:

2012-05-15 Thread Alexey Eromenko
Update: I decided to create new packages of v0.8.2, based on older
Debian's sources.

Uploaded my new packages to:
http://forum.gns3.net/post15311.html

It was tested in Debian wheezy/testing, amd64, and basic functionality
works, and it is lintian clean.
Would be good to get them into Debian.
-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#665979: GNS3 v0.8.2 available - needs to be packaged

2012-03-27 Thread Alexey Eromenko
Package: gns3
Version: 0.7.4-1

New upstream version, GNS3 v0.8.2 is available, and needs to be
packaged for Debian.
I would like to help, if I can. I have basic knowledge of Debian packaging.
I'm upstream developer of GNS3 and a Debian user.
I would like to become a co-maintainer of this Debian package.

The new version (v0.8.x) is a major upgrade, and has new dependencies,
listed here:
http://forum.gns3.net/topic3732.html

I am using Debian GNU/Linux wheezy/testing.
-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#649401: Is git-review for Debian available ?

2012-02-29 Thread Alexey Eromenko
Hi,

I'm working on OpenStack, and I really need git-review package to
submit patches upstream.

What is the status ?
How can I help ?
Where to download ?

-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#661667: keystone-doc package is broken, lacks content

2012-02-28 Thread Alexey Eromenko
package: keystone-doc
version: 2012.1~e3-4
severity: serious

Package contents:
/.
/usr
/usr/share
/usr/share/doc
/usr/share/doc-base
/usr/share/doc-base/keystone-doc
/usr/share/doc/keystone-doc
/usr/share/doc/keystone-doc/changelog.Debian.gz
/usr/share/doc/keystone-doc/copyright

root@nova-server1:~# ls -l /usr/share/doc-base/keystone-doc
-rw-r--r-- 1 root root 254 Dec 20 04:36 /usr/share/doc-base/keystone-doc

i.e. the actual documentation is missing.

I'm running Debian wheezy/testing.
-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#661254: keystone-manage lacks a man page

2012-02-25 Thread Alexey Eromenko
package: keystone
version: 2012.1~e3-4
severity: serious

Debian Policy Violation: keystone-manage lacks a man page.

I am using Debian GNU/Linux 7.0, 64-bit / wheezy-testing.

-- 
-Alexey Eromenko Technologov, 25.02.2012.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#661255: swift lacks a man page

2012-02-25 Thread Alexey Eromenko
package: swift
version: 1.4.5-1
severity: serious

Debian Policy Violation: swift lacks a man page.
(swift from essex release aka 2012.1~e3)

I am using Debian GNU/Linux 7.0, 64-bit / wheezy-testing.
-- 
-Alexey Eromenko Technologov, 25.Feb.2012.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#660891: Executing keystone-manage with normal user privileges fails.

2012-02-22 Thread Alexey Eromenko
Package: keystone
Version: 2012.1~e3-4

Executing keystone-manage with normal user privileges fails.

Trying to setup dashboard, according to:
http://wiki.openstack.org/OpenStackDashboard

myuser@nova-server1:~$ keystone-manage token add 999888777666 admin
admin 2015-02-05T00:00
WARNING:root:Database (sqlite:var/lib/keystone/keystone.db) is not
version controlled; run `keystone-manage sync_database` or override
your migrate version manually (see docs)
ERROR: (OperationalError) unable to open database file None None
ERROR:keystone.manage:(OperationalError) unable to open database file None None
Traceback (most recent call last):
 File /usr/bin/keystone-manage, line 24, in module
   keystone.manage.main()
 File /usr/lib/python2.7/dist-packages/keystone/manage/__init__.py,
line 483, in main
   process(*parse_args(args))
 File /usr/lib/python2.7/dist-packages/keystone/manage/__init__.py,
line 106, in parse_args
   db.configure_backends()
 File /usr/lib/python2.7/dist-packages/keystone/backends/__init__.py,
line 53, in configure_backends
   backend_module.configure_backend(backend_conf)
 File 
/usr/lib/python2.7/dist-packages/keystone/backends/sqlalchemy/__init__.py,
line 158, in configure_backend
   _DRIVER = Driver(conf)
 File 
/usr/lib/python2.7/dist-packages/keystone/backends/sqlalchemy/__init__.py,
line 53, in __init__
   self._init_engine(model_list)
 File 
/usr/lib/python2.7/dist-packages/keystone/backends/sqlalchemy/__init__.py,
line 77, in _init_engine
   self._init_tables(model_list)
 File 
/usr/lib/python2.7/dist-packages/keystone/backends/sqlalchemy/__init__.py,
line 129, in _init_tables
   checkfirst=True)
 File /usr/lib/python2.7/dist-packages/sqlalchemy/schema.py, line
2535, in create_all
   tables=tables)
 File /usr/lib/python2.7/dist-packages/sqlalchemy/engine/base.py,
line 2230, in _run_visitor
   conn = self.contextual_connect(close_with_result=False)
 File /usr/lib/python2.7/dist-packages/sqlalchemy/engine/base.py,
line 2340, in contextual_connect
   self.pool.connect(),
 File /usr/lib/python2.7/dist-packages/sqlalchemy/pool.py, line
210, in connect
   return _ConnectionFairy(self).checkout()
 File /usr/lib/python2.7/dist-packages/sqlalchemy/pool.py, line
371, in __init__
   rec = self._connection_record = pool._do_get()
 File /usr/lib/python2.7/dist-packages/sqlalchemy/pool.py, line
758, in _do_get
   return self._create_connection()
 File /usr/lib/python2.7/dist-packages/sqlalchemy/pool.py, line
174, in _create_connection
   return _ConnectionRecord(self)
 File /usr/lib/python2.7/dist-packages/sqlalchemy/pool.py, line
256, in __init__
   self.connection = self.__connect()
 File /usr/lib/python2.7/dist-packages/sqlalchemy/pool.py, line
316, in __connect
   connection = self.__pool._creator()
 File /usr/lib/python2.7/dist-packages/sqlalchemy/engine/strategies.py,
line 80, in connect
   return dialect.connect(*cargs, **cparams)
 File /usr/lib/python2.7/dist-packages/sqlalchemy/engine/default.py,
line 280, in connect
   return self.dbapi.connect(*cargs, **cparams)
sqlalchemy.exc.OperationalError: (OperationalError) unable to open
database file None None


===
*** Database config
===
myuser@nova-server1:~$ cat /etc/keystone/keystone.conf | grep -i sql
# Default: 'sqlite'
# Available choices are 'sqlite' [future will include LDAP, PAM, etc]
default_store = sqlite
backends = keystone.backends.sqlalchemy
[keystone.backends.sqlalchemy]
# SQLAlchemy connection string for the reference implementation registry
# server. Any valid SQLAlchemy connection string is fine.
sql_connection = sqlite:var/lib/keystone/keystone.db
# Period in seconds after which SQLAlchemy should reestablish its connection
sql_idle_timeout = 30

File Check:

myuser@nova-server1:~$ ls /var/lib/keystone/keystone.db
ls: cannot access /var/lib/keystone/keystone.db: Permission denied

root@nova-server1:~# ls -la /var/lib/keystone/keystone.db
-rw-r--r-- 1 root root 28672 Feb 21 03:44 /var/lib/keystone/keystone.db

I am using Debian GNU/Linux 7.0 / testing.
-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#660893: Executing nova-manage with normal user privileges fails.

2012-02-22 Thread Alexey Eromenko
Package: nova
Version: 2012.1~e3-4

Executing nova-manage with normal user privileges fails.

myuser@nova-server1:~$ nova-manage user list
Traceback (most recent call last):
 File /usr/bin/nova-manage, line 2376, in module
  main()
 File /usr/bin/nova-manage, line 2316, in main
  logging.setup()
 File /usr/lib/python2.7/dist-packages/nova/log.py, line 349, in setup
  logging.root = NovaRootLogger(nova)
 File /usr/lib/python2.7/dist-packages/nova/log.py, line 284, in __init__
  NovaLogger.__init__(self, name, level)
 File /usr/lib/python2.7/dist-packages/nova/log.py, line 142, in __init__
  self.setup_from_flags()
 File /usr/lib/python2.7/dist-packages/nova/log.py, line 299, in
setup_from_flags
  self.filelog = WatchedFileHandler(logpath)
 File /usr/lib/python2.7/logging/handlers.py, line 386, in __init__
  logging.FileHandler.__init__(self, filename, mode, encoding, delay)
 File /usr/lib/python2.7/logging/__init__.py, line 897, in __init__
  StreamHandler.__init__(self, self._open())
 File /usr/lib/python2.7/logging/__init__.py, line 916, in _open
  stream = open(self.baseFilename, self.mode)
IOError: [Errno 13] Permission denied: '/var/log/nova/nova-manage.log'

Workas as root:

root@nova-server1:~# nova-manage user list
novaadmin


root@nova-server1:~# dpkg -l | grep nova
ii  nova-api                              2012.1~e3-4
 OpenStack Compute - API frontend
ii  nova-common                           2012.1~e3-4
 OpenStack Compute - common files
ii  nova-compute                          2012.1~e3-4
 OpenStack Compute - compute node
ii  nova-compute-kvm                      2012.1~e3-4
 OpenStack Compute - compute node (KVM)
ii  nova-doc                              2012.1~e3-4
 OpenStack Compute - documentation
ii  nova-network                          2012.1~e3-4
 OpenStack Compute - Network manager
ii  nova-objectstore                      2012.1~e3-4
 OpenStack Compute - object store
ii  nova-scheduler                        2012.1~e3-4
 OpenStack Compute - virtual machine scheduler
ii  nova-volume                           2012.1~e3-4
 OpenStack Compute - storage
ii  python-nova                           2012.1~e3-4
 OpenStack Compute - libraries
ii  python-novaclient                     1:2012.1~e3-1
 client library for OpenStack Compute API

I am using Debian GNU/Linux 7.0, 64-bit / wheezy-testing.
--
-Alexey Eromenko Technologov



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#659951: CVE-2012-0105

2012-02-15 Thread Alexey Eromenko
Debian lacks the infrastructure to compile
virtualbox-guest-additions-iso, so while the upstream source code is
free, the result is not.
This is due to dependency on non-free software such as Microsoft DDK,
required to compile virtualbox-guest-additions-iso.

Therefore: virtualbox-guest-additions-iso is part of the Debian's
non-free repository, and therefore unlikely to be fixed.

AFAIK Debian's Policy is not to issue security updates for it's
contrib and non-free sections. Only support for the main section
is covered.

Recommended action: CLOSE, WONTFIX (for
virtualbox-guest-additions-iso package)

What might get fixed, is virtualbox-ose-guest-* packages, which are
part of the main section.
Do you want to open a separate bug or change the package of this bug ?

One more note:
v4.1.8 is fixed, according to Oracle. (so potentially only Squeeze is
affected, Wheezy is not)

-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#659950: Bug#659951: Info received (CVE-2012-0105)

2012-02-15 Thread Alexey Eromenko
Oracle (klaus) say that v3.2.x is not affected for both CVE-2012-0105
and CVE-2012-0111. (so Squeeze is not affected)
And that v4.1.8 is fixed for both (so Wheezy is not affected)

-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#658720: Bug#658959: RFS: phpvirtualbox-4.1

2012-02-06 Thread Alexey Eromenko
 I am looking for a sponsor for my package phpvirtualbox-4.1. I
 use the package on my own on a headless server. It connects to vbox via it's 
 soap interface.

Ha-ha !
For some time I expected this one to pop up in Debian, and finally it did :)

(I don't use this one myself, but I definitely appreciate it, and it's
good, that VirtualBox does more inroad into the server market.)

Versions:
To minimize confusion, I think it might be better to keep only one
version in Debian main -- the one that matches VirtualBox. (Surely I
read that 4.0 can manage non-Debian VBox servers, just doubt about the
need to support several versions in Debian. I would submit only
something that matches Debian's VBox (4.1) to Debian, and keep older
(4.0) packages off-tree)

How can I download your proposed package (executable + src) ?

I tried:
user@xrig:~/Linstall$ dget -x
http://mentors.debian.net/debian/pool/main/p/phpvirtualbox-4.1/phpvirtualbox-4.1_7-1.dsc
dget: retrieving
http://mentors.debian.net/debian/pool/main/p/phpvirtualbox-4.1/phpvirtualbox-4.1_7-1.dsc
  % Total% Received % Xferd  Average Speed   TimeTime Time  Current
 Dload  Upload   Total   SpentLeft  Speed
100  1754  100  17540 0   8480  0 --:--:-- --:--:-- --:--:-- 24704
dget: using existing phpvirtualbox-4.1_7.orig.tar.gz
dget: using existing phpvirtualbox-4.1_7-1.debian.tar.gz
phpvirtualbox-4.1_7-1.dsc:
dscverify: phpvirtualbox-4.1_7-1.dsc failed signature check:
gpg: keyblock resource `/home/user/.gnupg/secring.gpg': file open error
gpg: Signature made Sun 05 Feb 2012 07:05:43 PM IST using RSA key ID 5CED39EF
gpg: Can't check signature: public key not found
Validation FAILED!!

-- 
-Alexey Eromenko Technologov, VirtualBox community member.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#656904: Gnash breaks flash-enabled websites (such as Google Finance)

2012-01-22 Thread Alexey Eromenko
Package: gnash
Version: 0.8.10~git20111001-1
Severity: grave

When using IceWeasel (or Chromium) and entering flash-enabled website, like
Google Finance.

To reproduce:
Enter Google Finance:
http://www.google.com/finance?q=EURUSD

You see gray rectangle.

Because this website has a fallback mechanism, removing gnash gives
users static content of the web-site. Web-site detects whenever the
browser is flash-enabled or not, and gives different content according
to it.

This package must be either:
1. fixed, or
2. gnash should be avoided on all new desktop installations, or
3. activate gnash only on supported websites, such as YouTube

I'm not a developed, but willing to assist in testing.

I am using Debian GNU/Linux wheezy/testing on AMD64
(also tried gnash 0.8.8-5 Debian GNU/Linux 6.0.3 on AMD64 and i386)
Same problem applies to other Flash-enabled websites, such as: www.amd.com

-- 
-Alexey Eromenko Technologov
22.Jan.2012.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#656561: Wish: test and include community features into Debian's VirtualBox

2012-01-19 Thread Alexey Eromenko
Package: virtualbox
Version: 4.1.8-dfsg-1
severity: wishlist

Hello,

I have developed certain new features for VirtualBox, and not get
included upstream.
I would like to ask for Debian community help, to test and integrate
those into Debian's VirtualBox.

Namely:

Feature A:
*Ability to hide desktop GUI VMs from taskbar.*
This feature is somewhere in between vboxheadless and standard GUI operation.
It is useful when someone has lots of VMs running, but needs only few at a time.
This patch is stable.

Patch here:
https://forums.virtualbox.org/viewtopic.php?f=10t=46616

Feature B:
*Unattended Install*
I have added the ability to automatically install any supported Guest
OS in just few clicks...
This means complete integration between VirtualBox GUI and Debian Preseed.
This patch is experimental, and needs more community testing. Here I
ask for help in development of this feature.

Patch here:
https://forums.virtualbox.org/viewtopic.php?f=10t=46798

I am using Debian GNU/Linux 6.0. (+various unstable versions of
VirtualBox, often self-compiled)

Oracle have rejected patch A and are slow to review patch B. (read:
not reviewed it at all)

Best wishes,
-- 
-Alexey Eromenko Technologov, 20.01.2012.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549309: Upcoming stable point release

2012-01-15 Thread Alexey Eromenko
Related Bugs:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=655841
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=655839

Most of the discussion is now ongoing here:
655841

such as the composition of the installation media.

What problems can modified media cause ?

-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#655839:

2012-01-15 Thread Alexey Eromenko
Related Bugs:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=655841
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=549309

-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#655841:

2012-01-15 Thread Alexey Eromenko
Proposed patch:
tasksel-proposed-6.0.4.patch

It moves gnash from desktop to gnome-desktop, so it has least
effect on Debian-as-a-whole.

Effects:
A. Effects on Debian:
1. should be zero. Should not affect installation media.

B. Effects on GNOME desktop: None.
1. People will have YouTube (as in 6.0.3)
2. People will not have access to Google Finance (as in 6.0.3)

C. Effects on KDE and other desktops:
1. no KDE konqueror crashes by default
2. People will have access to Google Finance (static version)
3. People will need to install some kind of flash plugin manually to
watch YouTube (no WebM support in Squeeze)

It turns out, that gnome package has dependency on gnash, so I
will not go deep into this. It's up to the gnome people to look into
this -- I left gnome as-is, unchanged.

-- 
-Alexey Eromenko Technologov
diff -uNr orig/tasksel//tasks/desktop patched/tasksel//tasks/desktop
--- orig/tasksel//tasks/desktop	2010-12-05 19:48:52.0 +0200
+++ patched/tasksel//tasks/desktop	2012-01-16 07:40:54.0 +0200
@@ -62,8 +62,5 @@
 # sound
   alsa-utils
   alsa-base
-# flash -- Note that gnome recommends browser-plugin-gnash; if this is changed
-# here to a different flash player, it should also be changed there.
-  browser-plugin-gnash
 # ensure pm-utils is available
   pm-utils
diff -uNr orig/tasksel//tasks/gnome-desktop patched/tasksel//tasks/gnome-desktop
--- orig/tasksel//tasks/gnome-desktop	2010-12-06 22:32:00.0 +0200
+++ patched/tasksel//tasks/gnome-desktop	2012-01-16 07:40:54.0 +0200
@@ -34,3 +34,6 @@
   xsane
 # vector drawing
   inkscape
+# flash -- Note that gnome recommends browser-plugin-gnash; if this is changed
+# here to a different flash player, it should also be changed there.
+  browser-plugin-gnash


Bug#655839: Gnash crashes KDE Konqueror

2012-01-14 Thread Alexey Eromenko
Package: gnash
Version: 0.8.8-5
Severity: important

When using KDE konqueror and entering flash-enabled website (like
www.amd.com) - KDE konqueror plugin crashes.
This bug is critical, as it creates extremely bad user experience on
default Debian-stable KDE installs. (which will drive new users away)

It is related to:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=549309

I am using Debian GNU/Linux 6.0.3 on AMD64 (also tried i386) + default
KDE install.
-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#655841: Please remove Gnash from default Debian install, as it crashes

2012-01-14 Thread Alexey Eromenko
Package: debian-installer
Version: 20110106+squeeze3+b1
Severity: important

Default Debian-6 KDE installs gnash, an extremely unstable
component, that constantly crashes KDE Konqueror, when user accesses
any flash-enabled website (such as www.amd.com).
This makes for very bad newbie user experience, and may drive users away.

I suggest to remove this component from the default Debian KDE
installs until it becomes stable. (starting with the next point
release, 6.0.4)

Related bugs:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=549309
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=655839

NOTE: I'm not sure this bug must be opened against debian-installer,
but I can't seem to find any better alternative.
I am using Debian GNU/Linux 6.0.3 on AMD64 (also tried i386)
-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#655841: Please remove Gnash from default Debian install, as it crashes

2012-01-14 Thread Alexey Eromenko
 gnash is not only installed with KDE, from what I see as its
 installation is triggerred by the desktop task, that's common to KDE
 and GNOME, at least.

 It is triggerred by browser-plugin-gnash.

 What do you suggest as alternative? I don't think it is a good idea to
 not provide any flash-enabled web browser.

Unfortunately the Free Software community has not yet developed stable
flash player, therefore I suggest to avoid installing _unstable_
software by default.

The rule of thumb is to avoid regressions in general, and crashes in particular.

If a particular (even necessary) component is not ready it should not
be pushed into a default desktop installation. It can be provided with
a BETA or technical preview label for advanced users to install
manually.

In many cases, the lack of flash player will _improve_ user
experience: www.amd.com and www.google.com/finance are two examples;
If they detect browser without flash, they give the user static
version of the content. With gnash -- it just crash.

Therefore I suggest to remove gnash from the desktop-task, and put
a BETA tag in the package description for the near point release
(6.0.4). And later make some serious review of this package for
Wheezy, before deciding to re-include it by default. (I will help with
the testing)

-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#655841:

2012-01-14 Thread Alexey Eromenko
Status update: Testing of Gnash.

Platform: Debian 6.0.3. (only main repo)

Test 1 : YouTube
http://www.youtube.com/watch?v=a4NCnH7RPZYfeature=g-logocontext=G2ee8eb5FOAA

IceWeasel 3.5: WORKS
Google Chromium 6: WORKS
Konqueror: CRASH

Test 2 : Google Finance
http://www.google.com/finance?q=EURUSD

IceWeasel 3.5: FAILS (gray rectangle)
Google Chromium 6: FAILS (gray rectangle)
Konqueror: CRASH

Bottom line:
Removing Gnash gives at least static data on Google Finance, and
solves konqueror crash, at the expense of YouTube (with IceWeasel and
Chromium).
Removing konqueror-nsplugins solves konqueror crash, but does not
solve the Google Finance issues with Gnash.

In essence: We have 2 bugs with gnash: Konqueror browser and Google
finance incompatibility. Maturity problems

-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549309: This bug is critical

2012-01-13 Thread Alexey Eromenko
This bug is critical, mostly because it is installed with default KDE,
and many new users experience KDE crash in Debian-stable.
Very ugly end user experience.

If possible, please fix it or remove this package from the default
Debian KDE install.

-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#647749: Ongoing discussion

2011-12-19 Thread Alexey Eromenko
Hi All !

There is now an ongoing discussion on debian-legal ML to remove
components of Debian,
that are dependent on non-free web services from 'main' to 'contrib' repo.

Read more here:
http://lists.debian.org/debian-legal/2011/12/msg2.html
and here:
http://lists.debian.org/debian-legal/2011/12/threads.html

-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#626469: GNS 0.7.4 is now in repository.

2011-12-08 Thread Alexey Eromenko
GNS 0.7.4 is now in repository. (testing)

-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#622159: GNS 0.7.4 is now in repository.

2011-12-08 Thread Alexey Eromenko
Package: gns3
Version: 0.7.2-1

GNS 0.7.4 is now in repository. (testing+unstable)
Please close.

-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#456391: Bug #456391

2011-12-08 Thread Alexey Eromenko
AMD64 kernel on i386 userspace is not supported by upstream, therefore
I recommend to close it as WONTFIX. (as of v4.1.6 and below)
If someone wants this feature, he should contribute patches upstream.

Please close as WONTFIX.
-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#586191: Same question: Why Squeeze and upcoming Wheezy do not support LSB 4.x ?

2011-12-01 Thread Alexey Eromenko
Same question: Why Squeeze and upcoming Wheezy do not support LSB 4.x ?

-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#648723: mysql server fails to install and configure

2011-11-14 Thread Alexey Eromenko
Package: mysql-server-core-5.1
Version: 5.1.49-3
When I try to install 'mantis' bug tracker, it get all the
dependencies, but configuration of the database (mySQL) part fails.

To reproduce:1. Install fresh Debian-stable squeeze 6.0.3 (I used VM
for this purpose)# apt-get install mantis

Here is the full output of apt-get:
http://qumble.org/downloads/debian6-bug-mantis-install-fails.txt

And some screenshots:
http://qumble.org/downloads/debian6-bug-dbconfig-common.png
http://qumble.org/downloads/debian6-bug-mysql-error.png

I'm not sure which component fails, it could be mySQL Server proper,
or some configuration tool (dbconfig?), as I'm new to databases.
If mysql is the wrong package of my troubles, please forward this
bug to proper component.
Please suggest a manual fix, and provide fixed packages for Debian 6.0.4.

I am using Debian GNU/Linux 6.0.3. (only standard Debian components
from main and contrib)--
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#648723: closed by Stuart Prescott stuart+deb...@nanonanonano.net (user should install mysql server on the machine)

2011-11-14 Thread Alexey Eromenko
Hmmm... OK. Maybe you're technically right, still new users do not
expect getting any such errors.

However: when during installation of mantis I were asked by
dbconfig package what to do with MySQL. It seems natural to allow
installation of MySQL during this interactive session on-the-fly,
without introducing hard-dependency.

Current situation is *very* confusing for new users alike, especially
because the installation (of mantis) had interactive questions.

Therefore I propose to open feature-request against dbconfig-common
package to provide an option to install mysql-server on the fly.
(probably for debian-wheezy, because we speak about intrusive change
required)

Is this acceptable outcome ?
-- 
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#641066: Feature-request: Official Debian DL-BD disc

2011-09-09 Thread Alexey Eromenko
Package: debian-cd
Version: 3.1.5

Hi,

May I ask you to introduce one new media for next point release of
Squeeze (6.0.3 or 6.0.4) ?

Dual-layer blue-day disc (aka DL-BD 50 GB disc) -- debian-cd tools
already support it.

It will allow us to put all of Debian (for single architecture, such
as AMD64) into a single physical disc, for those people whom have
BD-RW hardware (blue ray writers).
Perhaps only for jigdo this time...
I ask because it will make life easier for me, and it has really zero
chance for regressions for the rest of Debian users.
I would like to see DL-BD for 3 architectures: i386, AMD64 and sources.

I am using Debian GNU/Linux 6.0 squeeze, and all standard components.

Thanks in advance,
--
-Alexey Eromenko Technologov



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#622159: Bug #622159

2011-05-17 Thread Alexey Eromenko
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=622159

Yes, I agree.. for Wireshark. For Qemu.. not... Debian's Qemu is not
UDP patched, so it won't work with GNS3.

Please make Wireshark recommended package.

-- 
-Alexey Eromenko Technologov, 18.May.2011.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org