[issue36604] Add recipe to itertools

2019-04-11 Thread Bjorn Madsen


New submission from Bjorn Madsen :

I would like to add a recipe to the itertools documentation (if it belongs 
there?)

The recipe presents a method to generate set(powerset([iterable])) in a 
fraction of the runtime. I thought others might find this method helpful and 
pushed it to github under MIT license.

The recipe is available with test here: 
https://github.com/root-11/python_recipes

--
components: Extension Modules
messages: 339984
nosy: Bjorn.Madsen
priority: normal
severity: normal
status: open
title: Add recipe to itertools
type: enhancement

___
Python tracker 
<https://bugs.python.org/issue36604>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



Re: [OSRM-talk] 'penalty' for snapping

2016-04-19 Thread Bjorn Madsen
Use a wrigglefactor:

Say a persons needs to deviate from straight line with a factor of:

   - x 1.2 on flat land
   - x 4.0 in mountains and swamps

and calculate with a walking speed of:

   - 4.3 km/h road
   - 3.5 km/h in fields
   - 2.3 km/h in closed forests
   - 1.2 km/h in jungle
   - 0.025km/h if landmines

Use dxdy to calculate the distance from nearest waypoint to the destination.

Doing this last step in a separate function will have very little overhead
costs.



On Tue, Apr 19, 2016 at 8:39 PM, Steven M. Ottens <ste...@minst.net> wrote:

> Hi all,
>
> I am working on a tool that will calculate the travel time from villages
> to for instance the nearest hospital for rural accessibility analysis. So
> far I have build a tool which will calculate this for 215.000 villages in a
> few minutes, thanks to the help of Daniel P. However I realized that not
> all villages are on a road, actually quite a few are at least an hour walk
> from the nearest drivable road see:
> http://stvno.github.io/img/OSRM-snapping.png
> The villages are typically connected to the roads by informal trails,
> which I do not have as a road network. So I was wondering if it would be
> possible to add a basic penalty to the distance of the point to the nearest
> road.
> I am aware that the nearest service will provide me with the distance:
> https://github.com/Project-OSRM/osrm-backend/wiki/New-Server-api#service-nearest
> but before I am going to calculate the extra traveltime for each village, I
> was wondering if it is possible to integrate this with an osrm.table
> request. I am aware this opens quite a can of worms: if there is a penalty
> to snapping, it might be worth it to snap to a road which is further away,
> but in the end quicker to get to the destination. But for the moment I'm
> happy with just the added traveltime for nearest road snapping.
>
> Any suggestions on how to handle this?
>
> Steven
>
>
>
> ___
> OSRM-talk mailing list
> OSRM-talk@openstreetmap.org
> https://lists.openstreetmap.org/listinfo/osrm-talk
>



-- 
Bjorn Madsen, Ph.D., MIET
Director, Global Operations

Multi-Agent Technology Ltd.
Bessemer Drive,
Stevenage,
SG1 2DX

b...@multiagenttechnology.com
Mobile: +44 779 20 307 20
Main Office: +44 1438 310 035
___
OSRM-talk mailing list
OSRM-talk@openstreetmap.org
https://lists.openstreetmap.org/listinfo/osrm-talk


Re: [OSRM-talk] routing with GPUs or mapD

2016-04-01 Thread Bjorn Madsen
That was a quick response...! :-) Thanks;

Well - if anyone else is working on this - experimental or not - then
please keep me posted as I'm interested in what you find.

On Thu, Mar 31, 2016 at 11:06 PM, Daniel Patterson <dan...@mapbox.com>
wrote:

> Bjorn,
>
>   This paper outlines one approach that is very fast:
>
>   http://www.cs.princeton.edu/~rwerneck/papers/DKW14-crp-gpu.pdf
>
>   and there are others:
>
>
> https://pdfs.semanticscholar.org/0c17/805ab324006d40a8dd37d3550815824498fb.pdf
>   http://research.ijcaonline.org/volume72/number18/pxc3889386.pdf
>   http://public.lanl.gov/sunil/pubs/ipdps14.pdf
>
>   The Contraction Heirachy approach that OSRM uses is not all that
> amenable to GPU acceleration unfortunately.
>
> daniel
>
> On Mar 31, 2016, at 2:50 PM, Bjorn Madsen <b...@multiagenttechnology.com>
> wrote:
>
> Brief introduction:
> The difference between (1) routing + overlaying congestion data and (2)
> routing with congestion data is that the former simply provides a route
> which is extended with the delay given by the reduced travel speed inferred
> from the congestion (option 1). We can do that easily today.
>
> Routing with congestion data (option 2) requires that the quickest path is
> computed based on the congestion currently and the predicted congestion in
> the near future. This results in completely different routes as the road
> network velocity drops, whereby the fastest route (often) ends up being the
> shortest, though junctions with accidents can generate minor detours. The
> shift between the two modes of computation, is not linear, so walking the
> graph is necessary in most cases. However as the walks could be performed
> in concurrent lock-steps, it seems feasible to push such kind of workload
> onto GPUs.
>
> Question:
> I've been looking at mapD for a while and wondered whether it would be the
> better alternative solution for routing that may include dynamic congestion
> data into the routing process. Is anyone out there working with similar
> thoughts - or, on using GPUs in the process?
>
> Kind regards
>
> --
> Bjorn Madsen
>
> ___
> OSRM-talk mailing list
> OSRM-talk@openstreetmap.org
> https://lists.openstreetmap.org/listinfo/osrm-talk
>
>
>
> ___
> OSRM-talk mailing list
> OSRM-talk@openstreetmap.org
> https://lists.openstreetmap.org/listinfo/osrm-talk
>
>


-- 
Bjorn Madsen
Director, Global Operations

Multi-Agent Technology Ltd.
Bessemer Drive,
Stevenage,
SG1 2DX

b...@multiagenttechnology.com
Mobile: +44 779 20 307 20
Main Office: +44 1438 310 035
___
OSRM-talk mailing list
OSRM-talk@openstreetmap.org
https://lists.openstreetmap.org/listinfo/osrm-talk


[OSRM-talk] routing with GPUs or mapD

2016-03-31 Thread Bjorn Madsen
Brief introduction:
The difference between (1) routing + overlaying congestion data and (2)
routing with congestion data is that the former simply provides a route
which is extended with the delay given by the reduced travel speed inferred
from the congestion (option 1). We can do that easily today.

Routing with congestion data (option 2) requires that the quickest path is
computed based on the congestion currently and the predicted congestion in
the near future. This results in completely different routes as the road
network velocity drops, whereby the fastest route (often) ends up being the
shortest, though junctions with accidents can generate minor detours. The
shift between the two modes of computation, is not linear, so walking the
graph is necessary in most cases. However as the walks could be performed
in concurrent lock-steps, it seems feasible to push such kind of workload
onto GPUs.

Question:
I've been looking at mapD for a while and wondered whether it would be the
better alternative solution for routing that may include dynamic congestion
data into the routing process. Is anyone out there working with similar
thoughts - or, on using GPUs in the process?

Kind regards

-- 
Bjorn Madsen
___
OSRM-talk mailing list
OSRM-talk@openstreetmap.org
https://lists.openstreetmap.org/listinfo/osrm-talk


Re: [OSRM-talk] osrm-extract taking hours to complete

2016-03-02 Thread Bjorn Madsen
Hi Kieran,
I added a high speed SSD and pointed the .stxxl towards that to deal with
the swap slowdown. That bought me a drop in processing time from 12 hrs ->
3-4 hrs.

osrm@mat4:~/osrm-backend$ cat .stxxl
*disk=/mnt/tmp/stxxl,40,syscall*

osrm@mat4:~/osrm-backend$ lsblk
NAMEMAJ:MIN RM   SIZE RO TYPE  MOUNTPOINT
sda   8:00 223.6G  0 disk
├─sda18:10 4G  0 part
│ └─md0   9:00 4G  0 raid1 [SWAP]
├─sda28:20   512M  0 part
│ └─md1   9:10 511.7M  0 raid1 /boot
└─sda38:30 219.1G  0 part
  └─md2   9:20   219G  0 raid1 /
sdb   8:16   0 223.6G  0 disk
├─sdb18:17   0 4G  0 part
│ └─md0   9:00 4G  0 raid1 [SWAP]
├─sdb28:18   0   512M  0 part
│ └─md1   9:10 511.7M  0 raid1 /boot
└─sdb38:19   0 219.1G  0 part
  └─md2   9:20   219G  0 raid1 /
*sdc   8:32   0 447.1G  0 disk  *
*└─sdc18:33   0 447.1G  0 part  /mnt*






On Wed, Mar 2, 2016 at 4:51 PM, Kieran Caplice <kieran.capl...@temetra.com>
wrote:

> Hello,
>
> I'm currently extracting the planet PBF (~31 GB), and it's been running
> for hours. I notice in the "Running OSRM" wiki page, it says " On a Core i7
> with 8GB RAM and (slow) 5400 RPM Samsung SATA hard disks it took about 65
> minutes to do so from a PBF formatted planet", which is making me wonder
> why it's taking so long on our server. Below are some example output
> messages:
>
> [info] Parsing finished after 3584.35 seconds
> [extractor] Erasing duplicate nodes   ... ok, after 319.091s
> [extractor] Sorting all nodes   ... ok, after 3632.87s
> [extractor] Building node id map  ... ok, after 2025.29s
> [extractor] Confirming/Writing used nodes ... ok, after 1096.24s
> [extractor] Sorting edges by start... ok, after 2000.08s
>
> Some stxxl errors were outputted as I set the disk size to 100GB thinking
> it was enough - but I didn't think it would cause such slowdowns as this,
> considering extracting the Europe PBF takes hours also without the stxxl
> errors.
>
> Server specs:
> Ubuntu 14.04
> Intel Xeon CPU E5-1650 v3 @ 3.50GHz  (hex-core with HT)
> 64 GB RAM @ 2133 MHz
> 2 TB Western Digital Enterprise 7200 RPM hard drive
>
> At the moment, disk IO is averaging around 35-40 MB/s R/W (~90%).
>
> Anyone have any ideas as to what might be going on? Or is it normal to
> take this long without an SSD?
>
> Thanks in advance.
>
> Kind regards,
> Kieran Caplice
>
>
> _______
> OSRM-talk mailing list
> OSRM-talk@openstreetmap.org
> https://lists.openstreetmap.org/listinfo/osrm-talk
>
>


-- 
Bjorn Madsen
Director, Global Operations

Multi-Agent Technology Ltd.
Bessemer Drive,
Stevenage,
SG1 2DX

b...@multiagenttechnology.com
Mobile: +44 779 20 307 20
Main Office: +44 1438 310 035
___
OSRM-talk mailing list
OSRM-talk@openstreetmap.org
https://lists.openstreetmap.org/listinfo/osrm-talk


Re: [OSRM-talk] polyline usage?

2015-12-25 Thread Bjorn Madsen
Solved. Thanks..!

On Thu, Dec 17, 2015 at 5:23 PM, Sander Deryckere <sander...@gmail.com>
wrote:

> The algorithm is the same, but the precision in OSRM is higher, you should
> call the polyline function with a precision of 6 digits instead of 5.
>
> Regards,
> Sander
>
> 2015-12-17 18:14 GMT+01:00 Bjorn Madsen <b...@multiagenttechnology.com>:
>
>> Hi - I'm wondering what the better option is to get the polyline out as
>> list of latlons
>>
>> As example I'm using:
>>
>> waypoints = [(51.460982, -2.588994), (53.348429, -6.255323)]
>>
>>
>> which gives this long polyline http://pastebin.com/dhMZ2Nqb
>>
>> However, when I decode it, I get (the first 5 records only)
>>
>>  = {tuple} (514.60953, -25.88957)
>> 0001 = {tuple} (514.61061, -25.88728)
>> 0002 = {tuple} (514.60382, -25.88428)
>> 0003 = {tuple} (514.59867, -25.88208)
>> 0004 = {tuple} (514.59651, -25.88124)
>>
>>
>> Any idea to what I'm doing wrong? Has the encoding changed from:
>> http://code.google.com/apis/maps/documentation/polylinealgorithm.html
>>
>>
>>
>>
>>
>>
>> ___
>> OSRM-talk mailing list
>> OSRM-talk@openstreetmap.org
>> https://lists.openstreetmap.org/listinfo/osrm-talk
>>
>>
>
> ___
> OSRM-talk mailing list
> OSRM-talk@openstreetmap.org
> https://lists.openstreetmap.org/listinfo/osrm-talk
>
>


-- 
Bjorn Madsen
Director, Global Operations

Multi-Agent Technology Ltd.
Bessemer Drive,
Stevenage,
SG1 2DX

b...@multiagenttechnology.com
Mobile: +44 779 20 307 20
Main Office: +44 1438 310 035
___
OSRM-talk mailing list
OSRM-talk@openstreetmap.org
https://lists.openstreetmap.org/listinfo/osrm-talk


[OSRM-talk] polyline usage?

2015-12-17 Thread Bjorn Madsen
Hi - I'm wondering what the better option is to get the polyline out as
list of latlons

As example I'm using:

waypoints = [(51.460982, -2.588994), (53.348429, -6.255323)]


which gives this long polyline http://pastebin.com/dhMZ2Nqb

However, when I decode it, I get (the first 5 records only)

 = {tuple} (514.60953, -25.88957)
0001 = {tuple} (514.61061, -25.88728)
0002 = {tuple} (514.60382, -25.88428)
0003 = {tuple} (514.59867, -25.88208)
0004 = {tuple} (514.59651, -25.88124)


Any idea to what I'm doing wrong? Has the encoding changed from:
http://code.google.com/apis/maps/documentation/polylinealgorithm.html
___
OSRM-talk mailing list
OSRM-talk@openstreetmap.org
https://lists.openstreetmap.org/listinfo/osrm-talk


Re: [OSRM-talk] Project-OSRM: In need of advice; can offer some commercial support to you/ your projects in return

2015-11-30 Thread Bjorn Madsen
Hi - We're setting up a server to support the project with a modest 128 Gb
RAM.

Q1: What is the "right way" to get map updates for .pbf files? Any best
practices out there? Nightly/Weekly builds? Do you get the data from
http://download.geofabrik.de/ and are they okay with the traffic?

Q2: What is the "right way" to prevent import of criminal map updates? I
read on the OSM forum that somebody got banned after moving industry
addresses around in updates, with a plausible suspicion on attempting to
redirect deliveries (without payment).

Q3: Any other best practices to keep in mind?

Kind regards
Bjorn



On Tue, Nov 24, 2015 at 4:11 PM, Sander Deryckere <sander...@gmail.com>
wrote:

>
>
> 2015-11-24 16:07 GMT+01:00 Bjorn Madsen <b...@multiagenttechnology.com>:
>
>> Hi Sander & Emil,
>> Thanks for the quick responses. The usage of the lua script is
>> particularly useful.
>>
>> I completely respect the limitations of the demo server and can offer to
>> set up another server to support the project. 20Tb of traffic should help?
>>
>> OSRM is open source, so you're completely free to install your own
> server, to fit your own needs or anything you want. If you want to support
> the community with an extra server, that would be great too.
>
>
>> I've been following the discussions on the OSM forum and they've
>> discussed the quality of the map to a great extend.
>> For planning purposes I appreciate that the main source of error is delay
>> in updates. To counter that we are planning to use our commercial help-desk
>> to collect information from drivers about detours and unrecorded obstacles
>> so that OSM can get the updates with less than a days delay. We can also
>> track some vehicles, and capture information such as slowdown caused by
>> traffic jams, etc. on major roads. Hopefully this can become a valued
>> source of information?
>>
>> OSM only gathers permanent and verifiable information. And permanent
> means that you can expect it to last at least one year after you mapped it.
> Now, you can do some more temporary mapping (like setting a highway state
> to "construction" if they're doing long works on it). But in general,
> traffic jams, temporary obstacles etc don't belong in OSM.
>
> However, OSM is free to mix with other open data, so if anyone takes up
> the job to create a database of temporary data, it can be combined with
> OSM. Mapbox might indeed be interested in it, but I haven't seen any
> successful and open databases like this so far.
>
>
>> If somebody has a burning interest in accelerating this, then please feel
>> free to get in touch for a sponsorship.
>> That's the least I can do.
>>
>> Kind regards
>> Bjorn
>>
>> <https://lists.openstreetmap.org/listinfo/osrm-talk>
>>
>>
>
> ___
> OSRM-talk mailing list
> OSRM-talk@openstreetmap.org
> https://lists.openstreetmap.org/listinfo/osrm-talk
>
>


-- 
Bjorn Madsen
Director, Global Operations

Multi-Agent Technology Ltd.
Bessemer Drive,
Stevenage,
SG1 2DX

b...@multiagenttechnology.com
Mobile: +44 779 20 307 20
Main Office: +44 1438 310 035
___
OSRM-talk mailing list
OSRM-talk@openstreetmap.org
https://lists.openstreetmap.org/listinfo/osrm-talk


[OSRM-talk] Project-OSRM: In need of advice; can offer some commercial support to you/ your projects in return

2015-11-24 Thread Bjorn Madsen
My name is Bjorn, and I'm the director at a commercial project that needs
something like the Open Source Routing Machine with Openstreet Map where
you both appear rather active. You can find a little bit about me on
linkedin <https://uk.linkedin.com/in/bmadsen> and Multi-Agent Technology
<http://www.multiagenttechnology.com/> London.

*Question*: The most pressing question I have is whether OSRM is suitable
for truck/lorry routing in its current state?

I have no need to visualize the map data. Only calculation of the path,
length and duration of the route for heavy goods vehicles for planning
purposes. This means that I need to check for constraints such as weight,
low bridges and width-limitations along the path.

If queries are as quick as on the demo-server for the osrm-project, then
time is on our side. In my lack insight, I imagine that this can be done in
iterations, where first a path is chosen for cars, which subsequently is
inspected for these constraints. If constraints are detected, alternatives
will need to by discovered. I'm sure you have better ideas?

I'm also on Google hangout (using this email) if you'd prefer to talk
instead of writing longer emails.

Thanks again for getting back to me.

-- 
Bjorn Madsen
Director, Global Operations

Multi-Agent Technology Ltd.
Bessemer Drive,
Stevenage,
SG1 2DX

b...@multiagenttechnology.com
Mobile: +44 779 20 307 20
Main Office: +44 1438 310 035
___
OSRM-talk mailing list
OSRM-talk@openstreetmap.org
https://lists.openstreetmap.org/listinfo/osrm-talk


Re: [OSRM-talk] Project-OSRM: In need of advice; can offer some commercial support to you/ your projects in return

2015-11-24 Thread Bjorn Madsen
Hi Sander & Emil,
Thanks for the quick responses. The usage of the lua script is particularly
useful.

I completely respect the limitations of the demo server and can offer to
set up another server to support the project. 20Tb of traffic should help?

I've been following the discussions on the OSM forum and they've discussed
the quality of the map to a great extend.
For planning purposes I appreciate that the main source of error is delay
in updates. To counter that we are planning to use our commercial help-desk
to collect information from drivers about detours and unrecorded obstacles
so that OSM can get the updates with less than a days delay. We can also
track some vehicles, and capture information such as slowdown caused by
traffic jams, etc. on major roads. Hopefully this can become a valued
source of information?

If somebody has a burning interest in accelerating this, then please feel
free to get in touch for a sponsorship.
That's the least I can do.

Kind regards
Bjorn


On Tue, Nov 24, 2015 at 2:51 PM, Sander Deryckere <sander...@gmail.com>
wrote:

> Hi,
>
> I'm writing this as an OSM mapper and user of the OSRM api, I'm not an
> OSRM dev, so I might make some mistakes here.
>
> 2015-11-24 15:20 GMT+01:00 Bjorn Madsen <b...@multiagenttechnology.com>:
>
>> My name is Bjorn, and I'm the director at a commercial project that needs
>> something like the Open Source Routing Machine with Openstreet Map where
>> you both appear rather active. You can find a little bit about me on
>> linkedin <https://uk.linkedin.com/in/bmadsen> and Multi-Agent Technology
>> <http://www.multiagenttechnology.com/> London.
>>
>> *Question*: The most pressing question I have is whether OSRM is
>> suitable for truck/lorry routing in its current state?
>>
>
> The passability and driving speed of road types is determined by lua
> scripts (see
> https://github.com/Project-OSRM/osrm-backend/blob/develop/profiles/car.lua
> for the example car script). So you can at least make one script per
> vehicle type (split up your lorries in discrete types, and have a script
> for every type).
>
> Now, OSRM is suited, but I don't know if OSM data is suited. Lorry tagging
> is something not many mappers do (not many mappers need maxweight or
> maxlength properties of a way), so data may be sparse. But this depends a
> lot on the region you're operating in. It's generally known that Europe has
> better coverage than North America, but even in Europe such tagging will
> depend a lot on the region you're in.
>
>>
>> I have no need to visualize the map data. Only calculation of the path,
>> length and duration of the route for heavy goods vehicles for planning
>> purposes. This means that I need to check for constraints such as weight,
>> low bridges and width-limitations along the path.
>>
>> If queries are as quick as on the demo-server for the osrm-project, then
>> time is on our side. In my lack insight, I imagine that this can be done in
>> iterations, where first a path is chosen for cars, which subsequently is
>> inspected for these constraints. If constraints are detected, alternatives
>> will need to by discovered. I'm sure you have better ideas?
>>
>> The demo server is what it is, a demo. If you want truck routing, you'll
> have to install your own server with your own profiles.
>
>
>> I'm also on Google hangout (using this email) if you'd prefer to talk
>> instead of writing longer emails.
>>
>> Thanks again for getting back to me.
>> <https://lists.openstreetmap.org/listinfo/osrm-talk>
>
>
> As for the return service you propose, if you use the data for truckers,
> it would be great if you could get those truckers to help contribute data
> to the database. In contrast to the average mapper, they will care about
> maxweight and maxlength properties, and will want to correct those where
> wrong. In turn, this also makes your data and your routes better.
>
> It can be achieved by giving the truckers a training on how to add that
> data to OSM, or give them some option to add notes to OSM (in which case
> these notes will have to be interpreted by regular mappers, and mapped).
>
> Regards,
> Sander
>
>
> ___
> OSRM-talk mailing list
> OSRM-talk@openstreetmap.org
> https://lists.openstreetmap.org/listinfo/osrm-talk
>
>


-- 
Bjorn Madsen
Director, Global Operations

Multi-Agent Technology Ltd.
Bessemer Drive,
Stevenage,
SG1 2DX

b...@multiagenttechnology.com
Mobile: +44 779 20 307 20
Main Office: +44 1438 310 035
___
OSRM-talk mailing list
OSRM-talk@openstreetmap.org
https://lists.openstreetmap.org/listinfo/osrm-talk


Re: [OSRM-talk] Project-OSRM: In need of advice; can offer some commercial support to you/ your projects in return

2015-11-24 Thread Bjorn Madsen
Splendid. Do you know who to get in touch with from Mapbox?

On Tue, Nov 24, 2015 at 3:15 PM, Emil Tin <z...@tmf.kk.dk> wrote:

> Sounds great.
>
>
>
> Regarding GPS data, perhaps this is something Mapbox would be interested
> in somehow processing. I think they’ve already worked on using GPS data to
> adjust speed estimates in OSRM for cars. They’re also working on extending
> OSRM so dynamic traffic data can be used to update the routing suggesting
> in near real-time.
>
>
>
>
>
> Med venlig hilsen
>
> *Emil Tin*
> IT- og Processpecialist
> Trafik
> ___
> KØBENHAVNS KOMMUNE
> Teknik- og Miljøforvaltningen
> Byens Anvendelse
>
> Njalsgade 13, 1035
> Postboks 380
> 2300 København S
>
> Direkte
>
> 2369 5986
>
> Mobil
>
> 2369 5986
>
> Email
>
> z...@tmf.kk.dk
>
> EAN
>
> 5798009493149
>
>
>
> *Fra:* Bjorn Madsen [mailto:b...@multiagenttechnology.com]
> *Sendt:* 24. november 2015 16:08
> *Til:* Mailing list to discuss Project OSRM
> *Emne:* Re: [OSRM-talk] Project-OSRM: In need of advice; can offer some
> commercial support to you/ your projects in return
>
>
>
> Hi Sander & Emil,
>
> Thanks for the quick responses. The usage of the lua script is
> particularly useful.
>
>
>
> I completely respect the limitations of the demo server and can offer to
> set up another server to support the project. 20Tb of traffic should help?
>
>
>
> I've been following the discussions on the OSM forum and they've discussed
> the quality of the map to a great extend.
>
> For planning purposes I appreciate that the main source of error is delay
> in updates. To counter that we are planning to use our commercial help-desk
> to collect information from drivers about detours and unrecorded obstacles
> so that OSM can get the updates with less than a days delay. We can also
> track some vehicles, and capture information such as slowdown caused by
> traffic jams, etc. on major roads. Hopefully this can become a valued
> source of information?
>
>
>
> If somebody has a burning interest in accelerating this, then please feel
> free to get in touch for a sponsorship.
>
> That's the least I can do.
>
>
>
> Kind regards
>
> Bjorn
>
>
>
>
>
> On Tue, Nov 24, 2015 at 2:51 PM, Sander Deryckere <sander...@gmail.com>
> wrote:
>
> Hi,
>
> I'm writing this as an OSM mapper and user of the OSRM api, I'm not an
> OSRM dev, so I might make some mistakes here.
>
>
>
> 2015-11-24 15:20 GMT+01:00 Bjorn Madsen <b...@multiagenttechnology.com>:
>
> My name is Bjorn, and I'm the director at a commercial project that needs
> something like the Open Source Routing Machine with Openstreet Map where
> you both appear rather active. You can find a little bit about me on
> linkedin <https://uk.linkedin.com/in/bmadsen> and Multi-Agent Technology
> <http://www.multiagenttechnology.com/> London.
>
>
> *Question*: The most pressing question I have is whether OSRM is suitable
> for truck/lorry routing in its current state?
>
>
>
> The passability and driving speed of road types is determined by lua
> scripts (see
> https://github.com/Project-OSRM/osrm-backend/blob/develop/profiles/car.lua
> for the example car script). So you can at least make one script per
> vehicle type (split up your lorries in discrete types, and have a script
> for every type).
>
> Now, OSRM is suited, but I don't know if OSM data is suited. Lorry tagging
> is something not many mappers do (not many mappers need maxweight or
> maxlength properties of a way), so data may be sparse. But this depends a
> lot on the region you're operating in. It's generally known that Europe has
> better coverage than North America, but even in Europe such tagging will
> depend a lot on the region you're in.
>
>
>
> I have no need to visualize the map data. Only calculation of the path,
> length and duration of the route for heavy goods vehicles for planning
> purposes. This means that I need to check for constraints such as weight,
> low bridges and width-limitations along the path.
>
>
>
> If queries are as quick as on the demo-server for the osrm-project, then
> time is on our side. In my lack insight, I imagine that this can be done in
> iterations, where first a path is chosen for cars, which subsequently is
> inspected for these constraints. If constraints are detected, alternatives
> will need to by discovered. I'm sure you have better ideas?
>
>
>
> The demo server is what it is, a demo. If you want truck routing, you'll
> have to install your own server with your own profiles.
>
>
>
&g

Re: [OSRM-talk] Project-OSRM: In need of advice; can offer some commercial support to you/ your projects in return

2015-11-24 Thread Bjorn Madsen
Hi Florian,
I presume that can assign vehicles to profiles and redirect the query based
on a prepared dataset.
How much space/ram would you anticipate per profile for all of EU?

On Tue, Nov 24, 2015 at 3:36 PM, Florian Lohoff <f...@zz.de> wrote:

> On Tue, Nov 24, 2015 at 02:20:16PM +0000, Bjorn Madsen wrote:
> >
> > I have no need to visualize the map data. Only calculation of the path,
> > length and duration of the route for heavy goods vehicles for planning
> > purposes. This means that I need to check for constraints such as weight,
> > low bridges and width-limitations along the path.
> >
>
> OSRM can do routing for Trucks. The problem might be that you seem
> to want to calculate routing for dynamic height/weight etc.
>
> IMHO this might be difficult to achieve with OSRM. Basically with OSRM
> you once prepare OSM data for usage with OSRM based on the type of
> vehicle and its restrictions. So you would need to create different sets
> for OSRM - Height e.g. 3.6m, 3.8m, 4m and e.g. weight 20to, 30to, 40to.
>
> There is no dynamic evaluation of the prepared graph.
>
> Flo
> --
> Florian Lohoff f...@zz.de
>   We need to self-defend - GnuPG/PGP enable your email today!
>
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.10 (GNU/Linux)
>
> iQIVAwUBVlSD75DdQSDLCfIvAQoi9A/9FlBqCuULY1VQSIJbmskCVQ0vX6H2UgiD
> 28yZagGWoeVWK5+0rXGUSCGSEIXkYFmDm0qxCfiIY1YNCTMfqqY4mEnpXAh8+L6i
> 1sJuuANxH3tMjMb/l2q4DPF20IEuZx2dYiEVLuDP8f6vei1pF7XwrfiurtMIv+RP
> O9wWkKuzy2TBpG7RLd0BfSFw2SWi4P0jfpj0mmLjqVYvOq1Cj8v/fwf6kIS4844b
> TtJJfKTanKA2+wF8ipsiKpfupdhv5ltEfhbeNKq29oAgkXya2CBOREqNuXo/0S9S
> CfYa3StX4Fa138MS14mf1Op9yDPJrOmnXOc+ELVoApf01ILByaliAzmaFNdl3sUH
> WY2MQBQYlorGV6v6qIs9UpEiABpg1zOR16NKXDNWW4I1CVgpY9tMkL2Bz4fWHVza
> pecnza/4dcFYwg3bhOPQSWFDGGz7wcIh5Kf6Jd8qUdJdW8RDGLQF7aUj/l3KkYci
> C+qXQHuG4HGa5/m6t8bRsB5PNLMcgsOWfw0wZea5D7qwpaTHjt1cVJdPz/6735MH
> HpiQ+pHEVZQq2IACRolPXmkizgrb233QJCeJrmjAnBDQFf9dkilmJhcx1rhw57Wp
> 4ZTBInO8IuLsG1iLNIAhEFXgu/UB1zoOPsKijdKgKt0JCufZO1LWLua6SGpUuGyu
> S5iP8rZ86ak=
> =lr/t
> -END PGP SIGNATURE-
>
> _______
> OSRM-talk mailing list
> OSRM-talk@openstreetmap.org
> https://lists.openstreetmap.org/listinfo/osrm-talk
>
>


-- 
Bjorn Madsen
Director, Global Operations

Multi-Agent Technology Ltd.
Bessemer Drive,
Stevenage,
SG1 2DX

b...@multiagenttechnology.com
Mobile: +44 779 20 307 20
Main Office: +44 1438 310 035
___
OSRM-talk mailing list
OSRM-talk@openstreetmap.org
https://lists.openstreetmap.org/listinfo/osrm-talk


[fossil-users] When hitting edit on a ticket, to add comments the original ticket is not visible...

2015-07-30 Thread Bjorn Madsen
Hi -
When hitting edit on a ticket, to add comments the original ticket is not
visible, which makes it hard to refer to the original content.

Is there an easy way to make this visible (setting) or is this a feature
request?

Kind regards

-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Fossil on Raspberry Pi

2014-07-28 Thread Bjorn Madsen
Hi - I just got a newbie asking how to get fossil to run in raspbian and of
course searched the mail archives as the first option.

Could you add a comment on the top of the download site that `apt-get
install fossil` is available?

Thank you :-)



On 15 December 2013 18:11, Stephan Beal sgb...@googlemail.com wrote:

 Hi, all,

 a brief report of success in building fossil on Raspberry Pi (raspbian
 distro) with no source changes or unusual warnings. Took 21 minutes to
 compile on a class 10 SD card, though.

 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[Desktop-packages] [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-03 Thread Bjorn Madsen
(...more brainpower available today...)
I've added the ppa and installed with sudo apt-get update; sudo apt-get upgrade 
-y --force-yes

I get the warning that libnautilus-extension1a nautilus-dbg nautilus-
data nautilus are not authenticated, but it installs under the --force-y

** Attachment added: gdb-nautilus.txt
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3921924/+files/gdb-nautilus.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

Status in “nautilus” package in Ubuntu:
  Incomplete

Bug description:
  Connect to server from file manager by entering
  sftp://sftp.example.com results repeatedly in crash of filemanager on
  13.10 frsh install in virtual box and on asusEEE

  No harddisk faults detected.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: nautilus 1:3.8.2-0ubuntu2
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  Uname: Linux 3.11.0-13-generic i686
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: i386
  Date: Tue Nov 26 09:19:37 2013
  EcryptfsInUse: Yes
  GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'840x550+182+189'
  InstallationDate: Installed on 2013-10-20 (36 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MarkForUpload: True
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-03 Thread Bjorn Madsen
... and terminal dump...

However though I managed to connect nautilus still crashed. The gdb dump
gives you the whole overview.

** Attachment added: terminal2.txt
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3921925/+files/terminal2.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

Status in “nautilus” package in Ubuntu:
  Incomplete

Bug description:
  Connect to server from file manager by entering
  sftp://sftp.example.com results repeatedly in crash of filemanager on
  13.10 frsh install in virtual box and on asusEEE

  No harddisk faults detected.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: nautilus 1:3.8.2-0ubuntu2
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  Uname: Linux 3.11.0-13-generic i686
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: i386
  Date: Tue Nov 26 09:19:37 2013
  EcryptfsInUse: Yes
  GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'840x550+182+189'
  InstallationDate: Installed on 2013-10-20 (36 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MarkForUpload: True
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


Re: [Desktop-packages] [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-03 Thread Bjorn Madsen
can you send an IRC stackexchange invitation to my launchpad email? Then I
can show you more...


On 3 December 2013 10:34, Sebastien Bacher seb...@ubuntu.com wrote:

 could you describe what happens exactly? the new stacktrace seems like a
 bookmark related error which is different

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1255025

 Title:
   filemanager connect to server crashes when using sftp

 Status in “nautilus” package in Ubuntu:
   Incomplete

 Bug description:
   Connect to server from file manager by entering
   sftp://sftp.example.com results repeatedly in crash of filemanager on
   13.10 frsh install in virtual box and on asusEEE

   No harddisk faults detected.

   ProblemType: Bug
   DistroRelease: Ubuntu 13.10
   Package: nautilus 1:3.8.2-0ubuntu2
   ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
   Uname: Linux 3.11.0-13-generic i686
   ApportVersion: 2.12.5-0ubuntu2.1
   Architecture: i386
   Date: Tue Nov 26 09:19:37 2013
   EcryptfsInUse: Yes
   GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry'
 b'840x550+182+189'
   InstallationDate: Installed on 2013-10-20 (36 days ago)
   InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386
 (20131016.1)
   MarkForUpload: True
   SourcePackage: nautilus
   UpgradeStatus: No upgrade log present (probably fresh install)

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions



-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

Status in “nautilus” package in Ubuntu:
  Incomplete

Bug description:
  Connect to server from file manager by entering
  sftp://sftp.example.com results repeatedly in crash of filemanager on
  13.10 frsh install in virtual box and on asusEEE

  No harddisk faults detected.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: nautilus 1:3.8.2-0ubuntu2
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  Uname: Linux 3.11.0-13-generic i686
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: i386
  Date: Tue Nov 26 09:19:37 2013
  EcryptfsInUse: Yes
  GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'840x550+182+189'
  InstallationDate: Installed on 2013-10-20 (36 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MarkForUpload: True
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-03 Thread Bjorn Madsen
... and terminal dump...

However though I managed to connect nautilus still crashed. The gdb dump
gives you the whole overview.

** Attachment added: terminal2.txt
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3921925/+files/terminal2.txt

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


[Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-03 Thread Bjorn Madsen
(...more brainpower available today...)
I've added the ppa and installed with sudo apt-get update; sudo apt-get upgrade 
-y --force-yes

I get the warning that libnautilus-extension1a nautilus-dbg nautilus-
data nautilus are not authenticated, but it installs under the --force-y

** Attachment added: gdb-nautilus.txt
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3921924/+files/gdb-nautilus.txt

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


Re: [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-03 Thread Bjorn Madsen
can you send an IRC stackexchange invitation to my launchpad email? Then I
can show you more...


On 3 December 2013 10:34, Sebastien Bacher seb...@ubuntu.com wrote:

 could you describe what happens exactly? the new stacktrace seems like a
 bookmark related error which is different

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1255025

 Title:
   filemanager connect to server crashes when using sftp

 Status in “nautilus” package in Ubuntu:
   Incomplete

 Bug description:
   Connect to server from file manager by entering
   sftp://sftp.example.com results repeatedly in crash of filemanager on
   13.10 frsh install in virtual box and on asusEEE

   No harddisk faults detected.

   ProblemType: Bug
   DistroRelease: Ubuntu 13.10
   Package: nautilus 1:3.8.2-0ubuntu2
   ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
   Uname: Linux 3.11.0-13-generic i686
   ApportVersion: 2.12.5-0ubuntu2.1
   Architecture: i386
   Date: Tue Nov 26 09:19:37 2013
   EcryptfsInUse: Yes
   GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry'
 b'840x550+182+189'
   InstallationDate: Installed on 2013-10-20 (36 days ago)
   InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386
 (20131016.1)
   MarkForUpload: True
   SourcePackage: nautilus
   UpgradeStatus: No upgrade log present (probably fresh install)

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions



-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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

[Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-03 Thread Bjorn Madsen
... and terminal dump...

However though I managed to connect nautilus still crashed. The gdb dump
gives you the whole overview.

** Attachment added: terminal2.txt
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3921925/+files/terminal2.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


[Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-03 Thread Bjorn Madsen
(...more brainpower available today...)
I've added the ppa and installed with sudo apt-get update; sudo apt-get upgrade 
-y --force-yes

I get the warning that libnautilus-extension1a nautilus-dbg nautilus-
data nautilus are not authenticated, but it installs under the --force-y

** Attachment added: gdb-nautilus.txt
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3921924/+files/gdb-nautilus.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


Re: [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-03 Thread Bjorn Madsen
can you send an IRC stackexchange invitation to my launchpad email? Then I
can show you more...


On 3 December 2013 10:34, Sebastien Bacher seb...@ubuntu.com wrote:

 could you describe what happens exactly? the new stacktrace seems like a
 bookmark related error which is different

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1255025

 Title:
   filemanager connect to server crashes when using sftp

 Status in “nautilus” package in Ubuntu:
   Incomplete

 Bug description:
   Connect to server from file manager by entering
   sftp://sftp.example.com results repeatedly in crash of filemanager on
   13.10 frsh install in virtual box and on asusEEE

   No harddisk faults detected.

   ProblemType: Bug
   DistroRelease: Ubuntu 13.10
   Package: nautilus 1:3.8.2-0ubuntu2
   ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
   Uname: Linux 3.11.0-13-generic i686
   ApportVersion: 2.12.5-0ubuntu2.1
   Architecture: i386
   Date: Tue Nov 26 09:19:37 2013
   EcryptfsInUse: Yes
   GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry'
 b'840x550+182+189'
   InstallationDate: Installed on 2013-10-20 (36 days ago)
   InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386
 (20131016.1)
   MarkForUpload: True
   SourcePackage: nautilus
   UpgradeStatus: No upgrade log present (probably fresh install)

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions



-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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

Re: [Desktop-packages] [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-02 Thread Bjorn Madsen
Hi Sebastien,
Sorry for being in the blanks, but does that change propagate through
ubuntu updates automatically or do I need to do anything at my end?


On 2 December 2013 10:04, Sebastien Bacher seb...@ubuntu.com wrote:

 it seems like it should be fixed with that commit

 https://git.gnome.org/browse/nautilus/commit/?id=c2a5e05231ea0743ef89e666c37a0a77534b9573

 Could you try if that's the case?

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1255025

 Title:
   filemanager connect to server crashes when using sftp

 Status in “nautilus” package in Ubuntu:
   Incomplete

 Bug description:
   Connect to server from file manager by entering
   sftp://sftp.example.com results repeatedly in crash of filemanager on
   13.10 frsh install in virtual box and on asusEEE

   No harddisk faults detected.

   ProblemType: Bug
   DistroRelease: Ubuntu 13.10
   Package: nautilus 1:3.8.2-0ubuntu2
   ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
   Uname: Linux 3.11.0-13-generic i686
   ApportVersion: 2.12.5-0ubuntu2.1
   Architecture: i386
   Date: Tue Nov 26 09:19:37 2013
   EcryptfsInUse: Yes
   GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry'
 b'840x550+182+189'
   InstallationDate: Installed on 2013-10-20 (36 days ago)
   InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386
 (20131016.1)
   MarkForUpload: True
   SourcePackage: nautilus
   UpgradeStatus: No upgrade log present (probably fresh install)

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions



-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

Status in “nautilus” package in Ubuntu:
  Incomplete

Bug description:
  Connect to server from file manager by entering
  sftp://sftp.example.com results repeatedly in crash of filemanager on
  13.10 frsh install in virtual box and on asusEEE

  No harddisk faults detected.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: nautilus 1:3.8.2-0ubuntu2
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  Uname: Linux 3.11.0-13-generic i686
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: i386
  Date: Tue Nov 26 09:19:37 2013
  EcryptfsInUse: Yes
  GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'840x550+182+189'
  InstallationDate: Installed on 2013-10-20 (36 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MarkForUpload: True
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


Re: [Desktop-packages] [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-02 Thread Bjorn Madsen
Hi
I'm a scientist working with supply chain, trucks, warehouses and
production lines. I have no clue what to do with a .c file.

To reproduce the error that I reported is easy:
1) open a free account at livedrive.com (takes 90 seconds)
2) get your username (mine was bjornmadsen)
3) open nautilus to connect to server.
4) enter ssh://sftp.livedrive.com
5) in the popup box enter username and passw (bjornmadsen, x)
6) Watch nautilus crash.

That is all that I did.

Kind regards,
Bjorn


On 2 December 2013 11:08, Sebastien Bacher seb...@ubuntu.com wrote:

 Le 02/12/2013 11:57, Bjorn Madsen a écrit :
  Hi Sebastien,
  Sorry for being in the blanks, but does that change propagate through
  ubuntu updates automatically or do I need to do anything at my end?

 Hey,

 If you could test to confirm the fix it would be good. Otherwise it's
 going to be in some update, but that might take a while if nobosy is
 able to reproduce the issue/confirm the fix...

 Cheers,
 Sebastien Bacher

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1255025

 Title:
   filemanager connect to server crashes when using sftp

 Status in “nautilus” package in Ubuntu:
   Incomplete

 Bug description:
   Connect to server from file manager by entering
   sftp://sftp.example.com results repeatedly in crash of filemanager on
   13.10 frsh install in virtual box and on asusEEE

   No harddisk faults detected.

   ProblemType: Bug
   DistroRelease: Ubuntu 13.10
   Package: nautilus 1:3.8.2-0ubuntu2
   ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
   Uname: Linux 3.11.0-13-generic i686
   ApportVersion: 2.12.5-0ubuntu2.1
   Architecture: i386
   Date: Tue Nov 26 09:19:37 2013
   EcryptfsInUse: Yes
   GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry'
 b'840x550+182+189'
   InstallationDate: Installed on 2013-10-20 (36 days ago)
   InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386
 (20131016.1)
   MarkForUpload: True
   SourcePackage: nautilus
   UpgradeStatus: No upgrade log present (probably fresh install)

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions



-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

Status in “nautilus” package in Ubuntu:
  Incomplete

Bug description:
  Connect to server from file manager by entering
  sftp://sftp.example.com results repeatedly in crash of filemanager on
  13.10 frsh install in virtual box and on asusEEE

  No harddisk faults detected.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: nautilus 1:3.8.2-0ubuntu2
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  Uname: Linux 3.11.0-13-generic i686
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: i386
  Date: Tue Nov 26 09:19:37 2013
  EcryptfsInUse: Yes
  GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'840x550+182+189'
  InstallationDate: Installed on 2013-10-20 (36 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MarkForUpload: True
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


Re: [Desktop-packages] [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-02 Thread Bjorn Madsen
yep. I'm looking at the launchpad site right now. What should I do from
here?


On 2 December 2013 12:37, Sebastien Bacher seb...@ubuntu.com wrote:

 ok, I've uploaded a test package to https://launchpad.net/~ubuntu-
 desktop/+archive/ppa/+packages

 if you could install nautilus from there, restart it (nautilus -q) and
 try with that version?

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1255025

 Title:
   filemanager connect to server crashes when using sftp

 Status in “nautilus” package in Ubuntu:
   Incomplete

 Bug description:
   Connect to server from file manager by entering
   sftp://sftp.example.com results repeatedly in crash of filemanager on
   13.10 frsh install in virtual box and on asusEEE

   No harddisk faults detected.

   ProblemType: Bug
   DistroRelease: Ubuntu 13.10
   Package: nautilus 1:3.8.2-0ubuntu2
   ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
   Uname: Linux 3.11.0-13-generic i686
   ApportVersion: 2.12.5-0ubuntu2.1
   Architecture: i386
   Date: Tue Nov 26 09:19:37 2013
   EcryptfsInUse: Yes
   GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry'
 b'840x550+182+189'
   InstallationDate: Installed on 2013-10-20 (36 days ago)
   InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386
 (20131016.1)
   MarkForUpload: True
   SourcePackage: nautilus
   UpgradeStatus: No upgrade log present (probably fresh install)

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions



-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

Status in “nautilus” package in Ubuntu:
  Incomplete

Bug description:
  Connect to server from file manager by entering
  sftp://sftp.example.com results repeatedly in crash of filemanager on
  13.10 frsh install in virtual box and on asusEEE

  No harddisk faults detected.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: nautilus 1:3.8.2-0ubuntu2
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  Uname: Linux 3.11.0-13-generic i686
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: i386
  Date: Tue Nov 26 09:19:37 2013
  EcryptfsInUse: Yes
  GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'840x550+182+189'
  InstallationDate: Installed on 2013-10-20 (36 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MarkForUpload: True
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


Re: [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-02 Thread Bjorn Madsen
Hi Sebastien,
Sorry for being in the blanks, but does that change propagate through
ubuntu updates automatically or do I need to do anything at my end?


On 2 December 2013 10:04, Sebastien Bacher seb...@ubuntu.com wrote:

 it seems like it should be fixed with that commit

 https://git.gnome.org/browse/nautilus/commit/?id=c2a5e05231ea0743ef89e666c37a0a77534b9573

 Could you try if that's the case?

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1255025

 Title:
   filemanager connect to server crashes when using sftp

 Status in “nautilus” package in Ubuntu:
   Incomplete

 Bug description:
   Connect to server from file manager by entering
   sftp://sftp.example.com results repeatedly in crash of filemanager on
   13.10 frsh install in virtual box and on asusEEE

   No harddisk faults detected.

   ProblemType: Bug
   DistroRelease: Ubuntu 13.10
   Package: nautilus 1:3.8.2-0ubuntu2
   ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
   Uname: Linux 3.11.0-13-generic i686
   ApportVersion: 2.12.5-0ubuntu2.1
   Architecture: i386
   Date: Tue Nov 26 09:19:37 2013
   EcryptfsInUse: Yes
   GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry'
 b'840x550+182+189'
   InstallationDate: Installed on 2013-10-20 (36 days ago)
   InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386
 (20131016.1)
   MarkForUpload: True
   SourcePackage: nautilus
   UpgradeStatus: No upgrade log present (probably fresh install)

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions



-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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

Re: [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-02 Thread Bjorn Madsen
Hi
I'm a scientist working with supply chain, trucks, warehouses and
production lines. I have no clue what to do with a .c file.

To reproduce the error that I reported is easy:
1) open a free account at livedrive.com (takes 90 seconds)
2) get your username (mine was bjornmadsen)
3) open nautilus to connect to server.
4) enter ssh://sftp.livedrive.com
5) in the popup box enter username and passw (bjornmadsen, x)
6) Watch nautilus crash.

That is all that I did.

Kind regards,
Bjorn


On 2 December 2013 11:08, Sebastien Bacher seb...@ubuntu.com wrote:

 Le 02/12/2013 11:57, Bjorn Madsen a écrit :
  Hi Sebastien,
  Sorry for being in the blanks, but does that change propagate through
  ubuntu updates automatically or do I need to do anything at my end?

 Hey,

 If you could test to confirm the fix it would be good. Otherwise it's
 going to be in some update, but that might take a while if nobosy is
 able to reproduce the issue/confirm the fix...

 Cheers,
 Sebastien Bacher

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1255025

 Title:
   filemanager connect to server crashes when using sftp

 Status in “nautilus” package in Ubuntu:
   Incomplete

 Bug description:
   Connect to server from file manager by entering
   sftp://sftp.example.com results repeatedly in crash of filemanager on
   13.10 frsh install in virtual box and on asusEEE

   No harddisk faults detected.

   ProblemType: Bug
   DistroRelease: Ubuntu 13.10
   Package: nautilus 1:3.8.2-0ubuntu2
   ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
   Uname: Linux 3.11.0-13-generic i686
   ApportVersion: 2.12.5-0ubuntu2.1
   Architecture: i386
   Date: Tue Nov 26 09:19:37 2013
   EcryptfsInUse: Yes
   GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry'
 b'840x550+182+189'
   InstallationDate: Installed on 2013-10-20 (36 days ago)
   InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386
 (20131016.1)
   MarkForUpload: True
   SourcePackage: nautilus
   UpgradeStatus: No upgrade log present (probably fresh install)

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions



-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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

Re: [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-02 Thread Bjorn Madsen
yep. I'm looking at the launchpad site right now. What should I do from
here?


On 2 December 2013 12:37, Sebastien Bacher seb...@ubuntu.com wrote:

 ok, I've uploaded a test package to https://launchpad.net/~ubuntu-
 desktop/+archive/ppa/+packages

 if you could install nautilus from there, restart it (nautilus -q) and
 try with that version?

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1255025

 Title:
   filemanager connect to server crashes when using sftp

 Status in “nautilus” package in Ubuntu:
   Incomplete

 Bug description:
   Connect to server from file manager by entering
   sftp://sftp.example.com results repeatedly in crash of filemanager on
   13.10 frsh install in virtual box and on asusEEE

   No harddisk faults detected.

   ProblemType: Bug
   DistroRelease: Ubuntu 13.10
   Package: nautilus 1:3.8.2-0ubuntu2
   ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
   Uname: Linux 3.11.0-13-generic i686
   ApportVersion: 2.12.5-0ubuntu2.1
   Architecture: i386
   Date: Tue Nov 26 09:19:37 2013
   EcryptfsInUse: Yes
   GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry'
 b'840x550+182+189'
   InstallationDate: Installed on 2013-10-20 (36 days ago)
   InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386
 (20131016.1)
   MarkForUpload: True
   SourcePackage: nautilus
   UpgradeStatus: No upgrade log present (probably fresh install)

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions



-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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

Re: [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-02 Thread Bjorn Madsen
Hi Sebastien,
Sorry for being in the blanks, but does that change propagate through
ubuntu updates automatically or do I need to do anything at my end?


On 2 December 2013 10:04, Sebastien Bacher seb...@ubuntu.com wrote:

 it seems like it should be fixed with that commit

 https://git.gnome.org/browse/nautilus/commit/?id=c2a5e05231ea0743ef89e666c37a0a77534b9573

 Could you try if that's the case?

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1255025

 Title:
   filemanager connect to server crashes when using sftp

 Status in “nautilus” package in Ubuntu:
   Incomplete

 Bug description:
   Connect to server from file manager by entering
   sftp://sftp.example.com results repeatedly in crash of filemanager on
   13.10 frsh install in virtual box and on asusEEE

   No harddisk faults detected.

   ProblemType: Bug
   DistroRelease: Ubuntu 13.10
   Package: nautilus 1:3.8.2-0ubuntu2
   ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
   Uname: Linux 3.11.0-13-generic i686
   ApportVersion: 2.12.5-0ubuntu2.1
   Architecture: i386
   Date: Tue Nov 26 09:19:37 2013
   EcryptfsInUse: Yes
   GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry'
 b'840x550+182+189'
   InstallationDate: Installed on 2013-10-20 (36 days ago)
   InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386
 (20131016.1)
   MarkForUpload: True
   SourcePackage: nautilus
   UpgradeStatus: No upgrade log present (probably fresh install)

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions



-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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

Re: [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-02 Thread Bjorn Madsen
Hi
I'm a scientist working with supply chain, trucks, warehouses and
production lines. I have no clue what to do with a .c file.

To reproduce the error that I reported is easy:
1) open a free account at livedrive.com (takes 90 seconds)
2) get your username (mine was bjornmadsen)
3) open nautilus to connect to server.
4) enter ssh://sftp.livedrive.com
5) in the popup box enter username and passw (bjornmadsen, x)
6) Watch nautilus crash.

That is all that I did.

Kind regards,
Bjorn


On 2 December 2013 11:08, Sebastien Bacher seb...@ubuntu.com wrote:

 Le 02/12/2013 11:57, Bjorn Madsen a écrit :
  Hi Sebastien,
  Sorry for being in the blanks, but does that change propagate through
  ubuntu updates automatically or do I need to do anything at my end?

 Hey,

 If you could test to confirm the fix it would be good. Otherwise it's
 going to be in some update, but that might take a while if nobosy is
 able to reproduce the issue/confirm the fix...

 Cheers,
 Sebastien Bacher

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1255025

 Title:
   filemanager connect to server crashes when using sftp

 Status in “nautilus” package in Ubuntu:
   Incomplete

 Bug description:
   Connect to server from file manager by entering
   sftp://sftp.example.com results repeatedly in crash of filemanager on
   13.10 frsh install in virtual box and on asusEEE

   No harddisk faults detected.

   ProblemType: Bug
   DistroRelease: Ubuntu 13.10
   Package: nautilus 1:3.8.2-0ubuntu2
   ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
   Uname: Linux 3.11.0-13-generic i686
   ApportVersion: 2.12.5-0ubuntu2.1
   Architecture: i386
   Date: Tue Nov 26 09:19:37 2013
   EcryptfsInUse: Yes
   GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry'
 b'840x550+182+189'
   InstallationDate: Installed on 2013-10-20 (36 days ago)
   InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386
 (20131016.1)
   MarkForUpload: True
   SourcePackage: nautilus
   UpgradeStatus: No upgrade log present (probably fresh install)

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions



-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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

Re: [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-02 Thread Bjorn Madsen
yep. I'm looking at the launchpad site right now. What should I do from
here?


On 2 December 2013 12:37, Sebastien Bacher seb...@ubuntu.com wrote:

 ok, I've uploaded a test package to https://launchpad.net/~ubuntu-
 desktop/+archive/ppa/+packages

 if you could install nautilus from there, restart it (nautilus -q) and
 try with that version?

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1255025

 Title:
   filemanager connect to server crashes when using sftp

 Status in “nautilus” package in Ubuntu:
   Incomplete

 Bug description:
   Connect to server from file manager by entering
   sftp://sftp.example.com results repeatedly in crash of filemanager on
   13.10 frsh install in virtual box and on asusEEE

   No harddisk faults detected.

   ProblemType: Bug
   DistroRelease: Ubuntu 13.10
   Package: nautilus 1:3.8.2-0ubuntu2
   ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
   Uname: Linux 3.11.0-13-generic i686
   ApportVersion: 2.12.5-0ubuntu2.1
   Architecture: i386
   Date: Tue Nov 26 09:19:37 2013
   EcryptfsInUse: Yes
   GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry'
 b'840x550+182+189'
   InstallationDate: Installed on 2013-10-20 (36 days ago)
   InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386
 (20131016.1)
   MarkForUpload: True
   SourcePackage: nautilus
   UpgradeStatus: No upgrade log present (probably fresh install)

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions



-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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

[Desktop-packages] [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-01 Thread Bjorn Madsen
Hi Sebastian - my apologies for the few days of delay.


** Attachment added: This is the gdb log you requested
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3920636/+files/gdb-nautilus.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

Status in “nautilus” package in Ubuntu:
  Incomplete

Bug description:
  Connect to server from file manager by entering
  sftp://sftp.example.com results repeatedly in crash of filemanager on
  13.10 frsh install in virtual box and on asusEEE

  No harddisk faults detected.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: nautilus 1:3.8.2-0ubuntu2
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  Uname: Linux 3.11.0-13-generic i686
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: i386
  Date: Tue Nov 26 09:19:37 2013
  EcryptfsInUse: Yes
  GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'840x550+182+189'
  InstallationDate: Installed on 2013-10-20 (36 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MarkForUpload: True
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-01 Thread Bjorn Madsen
...and here is the terminal dump.


** Attachment added: terminal.txt
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3920637/+files/terminal.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

Status in “nautilus” package in Ubuntu:
  Incomplete

Bug description:
  Connect to server from file manager by entering
  sftp://sftp.example.com results repeatedly in crash of filemanager on
  13.10 frsh install in virtual box and on asusEEE

  No harddisk faults detected.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: nautilus 1:3.8.2-0ubuntu2
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  Uname: Linux 3.11.0-13-generic i686
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: i386
  Date: Tue Nov 26 09:19:37 2013
  EcryptfsInUse: Yes
  GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'840x550+182+189'
  InstallationDate: Installed on 2013-10-20 (36 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MarkForUpload: True
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-01 Thread Bjorn Madsen
...and finally a screenshot from when I attempted to unmount the sftp.

Just one more thing: 
I don't know if it is a symptom (or it might be misleading), but it seems to 
work on lan, but crashes on wan. I know it is not router settings or similar as 
filezilla shows no problem in either case.

** Attachment added: 32-bit 1310 screenshot unmount ssh.png
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3920638/+files/32-bit%201310%20screenshot%20unmount%20ssh.png

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

Status in “nautilus” package in Ubuntu:
  Incomplete

Bug description:
  Connect to server from file manager by entering
  sftp://sftp.example.com results repeatedly in crash of filemanager on
  13.10 frsh install in virtual box and on asusEEE

  No harddisk faults detected.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: nautilus 1:3.8.2-0ubuntu2
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  Uname: Linux 3.11.0-13-generic i686
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: i386
  Date: Tue Nov 26 09:19:37 2013
  EcryptfsInUse: Yes
  GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'840x550+182+189'
  InstallationDate: Installed on 2013-10-20 (36 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MarkForUpload: True
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-01 Thread Bjorn Madsen
FYI: Error message given at $ Nautilus restart

** Attachment added: 32-bit 1310 please what.png
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3920639/+files/32-bit%201310%20please%20what.png

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

Status in “nautilus” package in Ubuntu:
  Incomplete

Bug description:
  Connect to server from file manager by entering
  sftp://sftp.example.com results repeatedly in crash of filemanager on
  13.10 frsh install in virtual box and on asusEEE

  No harddisk faults detected.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: nautilus 1:3.8.2-0ubuntu2
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  Uname: Linux 3.11.0-13-generic i686
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: i386
  Date: Tue Nov 26 09:19:37 2013
  EcryptfsInUse: Yes
  GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'840x550+182+189'
  InstallationDate: Installed on 2013-10-20 (36 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MarkForUpload: True
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-01 Thread Bjorn Madsen
FYI: Error message given at $ Nautilus restart

** Attachment added: 32-bit 1310 please what.png
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3920639/+files/32-bit%201310%20please%20what.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


[Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-01 Thread Bjorn Madsen
...and here is the terminal dump.


** Attachment added: terminal.txt
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3920637/+files/terminal.txt

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


[Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-01 Thread Bjorn Madsen
...and finally a screenshot from when I attempted to unmount the sftp.

Just one more thing: 
I don't know if it is a symptom (or it might be misleading), but it seems to 
work on lan, but crashes on wan. I know it is not router settings or similar as 
filezilla shows no problem in either case.

** Attachment added: 32-bit 1310 screenshot unmount ssh.png
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3920638/+files/32-bit%201310%20screenshot%20unmount%20ssh.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


[Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-01 Thread Bjorn Madsen
Hi Sebastian - my apologies for the few days of delay.


** Attachment added: This is the gdb log you requested
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3920636/+files/gdb-nautilus.txt

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


[Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-01 Thread Bjorn Madsen
Hi Sebastian - my apologies for the few days of delay.


** Attachment added: This is the gdb log you requested
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3920636/+files/gdb-nautilus.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


[Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-01 Thread Bjorn Madsen
FYI: Error message given at $ Nautilus restart

** Attachment added: 32-bit 1310 please what.png
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3920639/+files/32-bit%201310%20please%20what.png

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


[Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-01 Thread Bjorn Madsen
...and finally a screenshot from when I attempted to unmount the sftp.

Just one more thing: 
I don't know if it is a symptom (or it might be misleading), but it seems to 
work on lan, but crashes on wan. I know it is not router settings or similar as 
filezilla shows no problem in either case.

** Attachment added: 32-bit 1310 screenshot unmount ssh.png
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3920638/+files/32-bit%201310%20screenshot%20unmount%20ssh.png

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


[Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-12-01 Thread Bjorn Madsen
...and here is the terminal dump.


** Attachment added: terminal.txt
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+attachment/3920637/+files/terminal.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


[Desktop-packages] [Bug 1255025] [NEW] filemanager connect to server crashes when using sftp

2013-11-26 Thread Bjorn Madsen
Public bug reported:

Connect to server from file manager by entering sftp://sftp.example.com
results repeatedly in crash of filemanager on 13.10 frsh install in
virtual box and on asusEEE

No harddisk faults detected.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: nautilus 1:3.8.2-0ubuntu2
ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
Uname: Linux 3.11.0-13-generic i686
ApportVersion: 2.12.5-0ubuntu2.1
Architecture: i386
Date: Tue Nov 26 09:19:37 2013
EcryptfsInUse: Yes
GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'840x550+182+189'
InstallationDate: Installed on 2013-10-20 (36 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
MarkForUpload: True
SourcePackage: nautilus
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug i386 saucy

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

Status in “nautilus” package in Ubuntu:
  New

Bug description:
  Connect to server from file manager by entering
  sftp://sftp.example.com results repeatedly in crash of filemanager on
  13.10 frsh install in virtual box and on asusEEE

  No harddisk faults detected.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: nautilus 1:3.8.2-0ubuntu2
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  Uname: Linux 3.11.0-13-generic i686
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: i386
  Date: Tue Nov 26 09:19:37 2013
  EcryptfsInUse: Yes
  GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'840x550+182+189'
  InstallationDate: Installed on 2013-10-20 (36 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MarkForUpload: True
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-11-26 Thread Bjorn Madsen
nautilus-dbg installed. 
How do I provide you with the details you need? I'm a scientist. I need 
instructions :-)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

Status in “nautilus” package in Ubuntu:
  Incomplete

Bug description:
  Connect to server from file manager by entering
  sftp://sftp.example.com results repeatedly in crash of filemanager on
  13.10 frsh install in virtual box and on asusEEE

  No harddisk faults detected.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: nautilus 1:3.8.2-0ubuntu2
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  Uname: Linux 3.11.0-13-generic i686
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: i386
  Date: Tue Nov 26 09:19:37 2013
  EcryptfsInUse: Yes
  GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'840x550+182+189'
  InstallationDate: Installed on 2013-10-20 (36 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MarkForUpload: True
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Bug 1255025] [NEW] filemanager connect to server crashes when using sftp

2013-11-26 Thread Bjorn Madsen
Public bug reported:

Connect to server from file manager by entering sftp://sftp.example.com
results repeatedly in crash of filemanager on 13.10 frsh install in
virtual box and on asusEEE

No harddisk faults detected.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: nautilus 1:3.8.2-0ubuntu2
ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
Uname: Linux 3.11.0-13-generic i686
ApportVersion: 2.12.5-0ubuntu2.1
Architecture: i386
Date: Tue Nov 26 09:19:37 2013
EcryptfsInUse: Yes
GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'840x550+182+189'
InstallationDate: Installed on 2013-10-20 (36 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
MarkForUpload: True
SourcePackage: nautilus
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug i386 saucy

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


[Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-11-26 Thread Bjorn Madsen
nautilus-dbg installed. 
How do I provide you with the details you need? I'm a scientist. I need 
instructions :-)

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


[Bug 1255025] [NEW] filemanager connect to server crashes when using sftp

2013-11-26 Thread Bjorn Madsen
Public bug reported:

Connect to server from file manager by entering sftp://sftp.example.com
results repeatedly in crash of filemanager on 13.10 frsh install in
virtual box and on asusEEE

No harddisk faults detected.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: nautilus 1:3.8.2-0ubuntu2
ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
Uname: Linux 3.11.0-13-generic i686
ApportVersion: 2.12.5-0ubuntu2.1
Architecture: i386
Date: Tue Nov 26 09:19:37 2013
EcryptfsInUse: Yes
GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'840x550+182+189'
InstallationDate: Installed on 2013-10-20 (36 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
MarkForUpload: True
SourcePackage: nautilus
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug i386 saucy

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


[Bug 1255025] Re: filemanager connect to server crashes when using sftp

2013-11-26 Thread Bjorn Madsen
nautilus-dbg installed. 
How do I provide you with the details you need? I'm a scientist. I need 
instructions :-)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1255025

Title:
  filemanager connect to server crashes when using sftp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1255025/+subscriptions

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


[Bug 1169761] Re: 3.8.0-18 Kernel causes HDMI Audio to stop working

2013-08-17 Thread Bjorn Madsen
*** This bug is a duplicate of bug 1169984 ***
https://bugs.launchpad.net/bugs/1169984

#70 did not work on 
Linux EEEbox 3.8.0-27-generic #40-Ubuntu SMP Tue Jul 9 00:17:05 UTC 2013 x86_64 
x86_64 x86_64 GNU/Linux

 List of PLAYBACK Hardware Devices 
card 0: NVidia [HDA NVidia], device 0: ALC662 rev1 Analog [ALC662 rev1 Analog]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: NVidia [HDA NVidia], device 1: ALC662 rev1 Digital [ALC662 rev1 Digital]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
  Subdevices: 0/1
  Subdevice #0: subdevice #0

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1169761

Title:
  3.8.0-18 Kernel causes HDMI Audio to stop working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1169761/+subscriptions

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


[Kernel-packages] [Bug 1169761] Re: 3.8.0-18 Kernel causes HDMI Audio to stop working

2013-08-17 Thread Bjorn Madsen
*** This bug is a duplicate of bug 1169984 ***
https://bugs.launchpad.net/bugs/1169984

#70 did not work on 
Linux EEEbox 3.8.0-27-generic #40-Ubuntu SMP Tue Jul 9 00:17:05 UTC 2013 x86_64 
x86_64 x86_64 GNU/Linux

 List of PLAYBACK Hardware Devices 
card 0: NVidia [HDA NVidia], device 0: ALC662 rev1 Analog [ALC662 rev1 Analog]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: NVidia [HDA NVidia], device 1: ALC662 rev1 Digital [ALC662 rev1 Digital]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
  Subdevices: 0/1
  Subdevice #0: subdevice #0

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1169761

Title:
  3.8.0-18 Kernel causes HDMI Audio to stop working

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  Was using Raring 13.04 with kernel 3.8.0-17 with NVIDIA HDMI Audio via the 
NVIDIA 319.12 drivers.  When upgrading to 3.8.0-18, HDMI is no longer listed 
within Sound Settings or pavucontrol (only item listed with Dummy.)  Switched 
over to the ubuntu nividia-current driver, same problem.  Rolled back to 
3.8.0-17 and HDMI audio again works correctly.  What files should I attach to 
assist with this? I can roll back/fourth between the two to get anything 
required.
  --- 
  ApportVersion: 2.9.2-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/by-path', 
'/dev/snd/controlC0', '/dev/snd/hwC0D0', '/dev/snd/hwC0D1', '/dev/snd/hwC0D2', 
'/dev/snd/hwC0D3', '/dev/snd/pcmC0D3p', '/dev/snd/pcmC0D7p', 
'/dev/snd/pcmC0D8p', '/dev/snd/pcmC0D9p', '/dev/snd/seq', '/dev/snd/timer'] 
failed with exit code 1:
  CurrentDmesg:
   Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order /var/log/dmesg 
-'] failed with exit code 1: comm: /var/log/dmesg: Permission denied
   dmesg: write failed: Broken pipe
  DistroRelease: Ubuntu 13.04
  InstallationDate: Installed on 2012-12-18 (119 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
  MachineType: Gigabyte Technology Co., Ltd. To be filled by O.E.M.
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-18-generic 
root=UUID=9ec63a8c-080e-49d3-ab11-50cb155d48c3 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.8.0-18.28-generic 3.8.6
  Tags:  raring
  Uname: Linux 3.8.0-18-generic x86_64
  UpgradeStatus: Upgraded to raring on 2013-03-16 (31 days ago)
  UserGroups: lpadmin sudo
  WifiSyslog:
   
  dmi.bios.date: 09/03/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: F11
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: Z77X-UP5 TH-CF
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF11:bd09/03/2012:svnGigabyteTechnologyCo.,Ltd.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnZ77X-UP5TH-CF:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: To be filled by O.E.M.
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.
  --- 
  ApportVersion: 2.9.2-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/by-path', 
'/dev/snd/controlC0', '/dev/snd/hwC0D0', '/dev/snd/hwC0D1', '/dev/snd/hwC0D2', 
'/dev/snd/hwC0D3', '/dev/snd/pcmC0D3p', '/dev/snd/pcmC0D7p', 
'/dev/snd/pcmC0D8p', '/dev/snd/pcmC0D9p', '/dev/snd/seq', '/dev/snd/timer'] 
failed with exit code 1:
  DistroRelease: Ubuntu 13.04
  HibernationDevice: RESUME=UUID=68018cdf-d176-4c0f-8b23-3b62b4e09b5d
  InstallationDate: Installed on 2012-12-18 (119 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
  MachineType: Gigabyte Technology Co., Ltd. To be filled by O.E.M.
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-18-generic 
root=UUID=9ec63a8c-080e-49d3-ab11-50cb155d48c3 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.8.0-18.28-generic 3.8.6
  PulseList:
   Error: command ['pacmd', 'list'] failed with exit code 1: Home directory not 
accessible: Permission denied
   No PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-3.8.0-18-generic N/A
   linux-backports-modules-3.8.0-18-generic  N/A
   linux-firmware1.105
  

[Owncloud] Testing, upgrading and assuring quality experience for users.

2013-08-10 Thread Bjorn Madsen
Hello Developers  administrators;

I spend quite a bit of time on release testing to make sure my users are
not surprised in a negative way, and I was wondering if we could help each
other increase our own productivity as I'm sure a lot of duplication of
effort is going on.

Following google's developer motto: *We aren't better at making software
than anyone else. We just have more data about how it is used.*

I think this is true, with the difference, that we could, but are not,
using our data systematically.

The request for +1 votes:
Could we - the people - benefit from creating a release testing package
which permits/shows the following behaviour:

   1. We *select a group of users* who use the current version[1]
   actively.
   2. When a release version comes becomes available for testing it may
   run in a virtual environment, literally cloning the signals that the
   selected users perform, without reverse impact on their repositories. It
   may even run with a predetermined delay (if appropriate) to replicate
   activity.
   3. At given intervals, a comparison is made between the users current
   version and the release version, to verify a relevant list of metric's [2]
   4. The comparison is f.x. automatically submitted as a test reports to
   the administrators (or OCteams) mailbox (or whatever is more convenient).
   In this way we do not replicate our tests but actually run them
   collectively with collective knowledge being gathered.

Notes:
At [1]: These could be selected by the administrator or - more long term -
we would ask a profiler to select the users who use a very wide range of
features so that the solution space of the test gets as close to exhausted
as possible.
At [2]: I would imagine something like:

   - comparison of sets of sha1sum of files stable vs. release of the
   selected users (integrity).
   - bandwidth usage stable vs. release (comm. load)
   - process time stable vs. release
   - statistics from the logs in aggregated form from stable vs.
   release.
   - ...

Would this be valuable to others too?

@OCteam: This could give the possibility that users can click to upgrade
to version x.x.x+1 instead of being foie gras fed with push from the
administrator for a grace period. I know from reports that this is a key
user appreciation with google's systems, as the user who doesn't have time
for this upgrade right now, can opt-out for a grace period.

@RaspberryPi Users: Don't panic about memory footprint, I'm sure we can
figure out a way to disable this dual-environment if the memory footprint
doesn't allow it.

Kind regards,

-- 
Bjorn Madsen
*Researcher Complex Systems Research*
bjorn.mad...@operationsresearchgroup.com
___
Owncloud mailing list
Owncloud@kde.org
https://mail.kde.org/mailman/listinfo/owncloud


[Bug 1030922] Re: thunar

2013-07-06 Thread Bjorn Madsen
I get this error trying to access my phone using thunar with an mtp
connection.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1030922

Title:
  thunar

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/thunar/+bug/1030922/+subscriptions

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


[Owncloud] Owncloud client 1.3.0

2013-06-27 Thread Bjorn Madsen
Hi
I'm testing the client 1.3.0 and am seeing an incredibly high bandwidth
usage (picture http://goo.gl/nRELR). Before the installation of the client
all files were already synchronized, but now I am getting traffic alert
after traffic alert.

Are others observing the same behaviour? Do we have a bugtracker id for
this?

Kind regards,
-- 
Bjorn Madsen
bjorn.mad...@operationsresearchgroup.com
___
Owncloud mailing list
Owncloud@kde.org
https://mail.kde.org/mailman/listinfo/owncloud


[Bug 1104435] Re: xfce4-session crashed with SIGSEGV in g_slice_alloc()

2013-06-21 Thread Bjorn Madsen
Update: I have found a way to cause this bug 100% repeatable.  Open a
terminal window and type firefox -new-instance and immediate segfault.
The resulting errors:

xfce4-session[11891]: segfault at  ip 7fb430233f7f
sp 7fffb89662f0 error 5 in
libglib-2.0.so.0.3600.0[7fb4301d+f9000]

xfce4-session[9120]: segfault at  ip 7fb98e8c3f7f sp
7fffa3dd2c50 error 5 in libglib-2.0.so.0.3600.0[7fb98e86+f9000]

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1104435

Title:
  xfce4-session crashed with SIGSEGV in g_slice_alloc()

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-session/+bug/1104435/+subscriptions

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


[Bug 1104435] Re: xfce4-session crashed with SIGSEGV in g_slice_alloc()

2013-06-18 Thread Bjorn Madsen
I switched to lxde to avoid this problem and receive a similar problem
there but there the window manager crash is blamed on Xorg.  I have a
hunch this problem might be caused by having dual monitors, is there
anybody receiving this error with only one monitor?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1104435

Title:
  xfce4-session crashed with SIGSEGV in g_slice_alloc()

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-session/+bug/1104435/+subscriptions

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


[Owncloud] Installer for ubuntu 13.04

2013-06-09 Thread Bjorn Madsen
Hello,
On a i386 (64-bit) isn't it odd that dpkg attempts to install a amd64.deb?

The reason for asking is that I got the following error message after
following the instructions:
http://software.opensuse.org/download/package?project=isv:ownCloud:develpackage=owncloud-client

bjorn@ubuntu1304: sudo su
root@ubuntu1304: echo 'deb
http://download.opensuse.org/repositories/isv:ownCloud:devel/xUbuntu_13.04//'
 /etc/apt/sources.list.d/owncloud-client.list
root@ubuntu1304: apt-get update
...
cut for brevity
...
root@ubuntu1304: apt-get install owncloud-client
...
cut for brevity
...
Selecting previously unselected package owncloud-client.
Unpacking owncloud-client (from .../owncloud-client_1.2.5-0_amd64.deb) ...
dpkg: error processing
/var/cache/apt/archives/owncloud-client_1.2.5-0_amd64.deb (--unpack):
 trying to overwrite '/usr/share/mirall/i18n/mirall_nl.qm', which is also
in package mirall-i18n 1.2.1+debian-1ubuntu2
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Processing triggers for man-db ...
Errors were encountered while processing:
 /var/cache/apt/archives/owncloud-client_1.2.5-0_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

?

But also that the downloadable i386 package also declines (from
herehttp://download.opensuse.org/repositories/isv:/ownCloud:/devel/xUbuntu_13.04/i386/owncloud-client_1.2.5-0_i386.deb
):
bjorn@ubuntu1304: sudo dpkg -i owncloud-client_1.2.5-0_i386.deb
(Reading database ... 185515 files and directories currently installed.)
Unpacking owncloud-client (from owncloud-client_1.2.5-0_i386.deb) ...
dpkg: error processing owncloud-client_1.2.5-0_i386.deb (--install):
 trying to overwrite '/usr/share/mirall/i18n/mirall_nl.qm', which is also
in package mirall-i18n 1.2.1+debian-1ubuntu2
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Processing triggers for bamfdaemon ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for desktop-file-utils ...
Processing triggers for gnome-menus ...
Processing triggers for hicolor-icon-theme ...
Errors were encountered while processing:
 owncloud-client_1.2.5-0_i386.deb

?

-- 
Bjorn Madsen
___
Owncloud mailing list
Owncloud@kde.org
https://mail.kde.org/mailman/listinfo/owncloud


[Tutor] Python Package Diagram

2013-06-05 Thread Bjorn Madsen
Hello Tutor,
On http://docs.oracle.com/javase/7/docs/ a pretty chart gives a more or
less misdirecting view of the Java library (I guess the gaps between the
boxes are the security holes).

*Does something similar exist for Python?*

Google images turned out with a stack of, well, not so pretty charts...

Kind regards,

Bjorn
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] Python Package Diagram

2013-06-05 Thread Bjorn Madsen
This is the closest I can get to an info-graphic http://goo.gl/RVXFZ (...I
don't think I qualify as an artist...)

Maybe a competition is required?




On 5 June 2013 19:26, Hilton Fernandes hgfer...@gmail.com wrote:

 Hi, Bjorm !

 It would be cool to have one of these charts for Python. And for every
 other language, for sure.

 However, my guess is that for Python it would be much thinner. At least
 for the common usage. Probably the Qt, Gtk or  Django architectures would
 be that thick.

 What do the Python gurus think ?

 All the best,
 hilton

 On Wed, Jun 5, 2013 at 11:45 AM, Bjorn Madsen 
 bjorn.h.mad...@googlemail.com wrote:

 Hello Tutor,
 On http://docs.oracle.com/javase/7/docs/ a pretty chart gives a more or
 less misdirecting view of the Java library (I guess the gaps between the
 boxes are the security holes).

 *Does something similar exist for Python?*

 Google images turned out with a stack of, well, not so pretty charts...

 Kind regards,

 Bjorn

 ___
 Tutor maillist  -  Tutor@python.org
 To unsubscribe or change subscription options:
 http://mail.python.org/mailman/listinfo/tutor



___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


[Owncloud] OwnCloud installed on WD MyBookLive

2013-05-25 Thread Bjorn Madsen
Hello forum,
As there has been questions on whether a raspberryPi can be used as
ownCloud Server for Home usage, I think this one might also attract some
attention:
http://community.wdc.com/t5/My-Book-Live/GUIDE-Installing-OwnCloud-Server-on-My-Book-Live/td-p/561699

Maybe there is a vote for lightweight installations in the community docs?

-- 
Bjorn
___
Owncloud mailing list
Owncloud@kde.org
https://mail.kde.org/mailman/listinfo/owncloud


[Bug 1172018] Re: Xubuntu crashes randomly

2013-05-25 Thread Bjorn Madsen
*** This bug is a duplicate of bug 1104435 ***
https://bugs.launchpad.net/bugs/1104435

I am still getting this problem after getting rid of fglrx and other
proprietary drivers and using the opensource radeon driver.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1172018

Title:
  Xubuntu crashes randomly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xfce4-session/+bug/1172018/+subscriptions

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


[Bug 1173338] Re: Freeze: amd64 kernel: [375840.529273] BUG: unable to handle kernel NULL pointer dereference at 0000000000000008

2013-05-20 Thread Bjorn Madsen
This happened after a hardware upgrade involving new motherboard, new
amd a10 processor.  Had to switch from nvidia binary driver and
installed fglrx and amdcccle.  Problem stopped when I upgraded to the
experimental fglrx, though that brought in a host of other issues.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


Re: [Owncloud] Thoughts on converting a Chromebook to an Ownbook

2013-05-16 Thread Bjorn Madsen
 on it: The main concern or solution
 here seems to be to make ownCloud cope better with being offline. Use more
 client (JS) and less server (PHP) logic, use local browser databases for
 data caching (localStorage, indexedDB) and cache the apps themselves
 (AppCache).

 That way there's also less dependence on the server and better performance
 because not everything has to be loaded again so often.

 Of course this involves major code forward, but the Appframework and newer
 apps already are on the path to this. Also solves one of my pet peeves: the
 files app reloads every time you click a folder …

 This would also make ownCloud better compatible with Firefox OS. Would be
 quite strange to make thin client apps for the fat web frontend instead
 of just improving it for everyone.
 ___
 Owncloud mailing list
 Owncloud@kde.org
 https://mail.kde.org/mailman/listinfo/owncloud




-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com
___
Owncloud mailing list
Owncloud@kde.org
https://mail.kde.org/mailman/listinfo/owncloud


Re: [Owncloud] Update 5.0.5 to 5.0.6 hangs during update process

2013-05-15 Thread Bjorn Madsen
Hep,
just to confirm OC 5.0.5 to 5.0.6 via apt-get on ubuntu 12.04 LTS went
smooth ~ 20 seconds upgrade time including apt-get update; apt-get upgrade
-y

Thanks for a good project chaps


On 14 May 2013 15:24, Merijn Visser - Z-Netwerken 
systeembeh...@z-netwerken.nl wrote:

  Hello,

 I updated my owncloud instance from 5.0.5 to 5.0.6 from the debian
 packages. When it was trying to update the process hangs. I did the
 following steps to fix it. Might help some people.

 1) change config/config.php
 - disable theme
 - turn maintenance mode to false
 2) visit webpage, it will now continue the update process succesfully.
 3) copy the new template files from core to your template and change them
 to your style.
 4) enable theme in config/config.php

 Great project!


Op 14-05-13 16:08, owncloud-requ...@kde.org schreef:

 Send Owncloud mailing list submissions to
   owncloud@kde.org

 To subscribe or unsubscribe via the World Wide Web, visit
   https://mail.kde.org/mailman/listinfo/owncloud
 or, via email, send a message with subject or body 'help' to
   owncloud-requ...@kde.org

 You can reach the person managing the list at
   owncloud-ow...@kde.org

 When replying, please edit your Subject line so it is more specific
 than Re: Contents of Owncloud digest...


 Today's Topics:

1. Re: ownCloud 5.0.6 and 4.5.11 and 4.0.15 (Lukas Reschke)
2. Re: ownCloud 5.0.6 and 4.5.11 and 4.0.15 (Frank Karlitschek)
3. Re: Windows 8 app mobile/desktop (Robin Appelman)
4. Re: ownCloud 5.0.6 and 4.5.11 and 4.0.15 (Philip Taffner)
5. Re: ownCloud 5.0.6 and 4.5.11 and 4.0.15 (da...@x2592.com)
6. Re: ownCloud 5.0.6 and 4.5.11 and 4.0.15 (Duchesne K?vin)
7. Re: ownCloud 5.0.6 and 4.5.11 and 4.0.15 (Steffen Lindner)
8. Updates/Security RSS Feed missing? (Jean Stebens)


 --

 Message: 1
 Date: Tue, 14 May 2013 14:24:18 +0200
 From: Lukas Reschke lu...@owncloud.org lu...@owncloud.org
 To: owncloud@kde.org Mailinglist owncloud@kde.orgMailinglist 
 owncloud@kde.org owncloud@kde.org
 Subject: Re: [Owncloud] ownCloud 5.0.6 and 4.5.11 and 4.0.15
 Message-ID:
   cad1nwhhpuhpdeodahscupvurbkvfhnp96gvmxsjmgcd2mpm...@mail.gmail.com 
 cad1nwhhpuhpdeodahscupvurbkvfhnp96gvmxsjmgcd2mpm...@mail.gmail.com
 Content-Type: text/plain; charset=utf-8

 On Tue, May 14, 2013 at 1:54 PM, Duchesne K?vin w4zu...@gmail.com 
 w4zu...@gmail.com wrote:


  ihad the same problem and its ok if i desactive my theme in config.php.


  Yup - we moved some values from config.js to the template.
 https://github.com/owncloud/core/commit/f2911e76bcbb88e1da5caa2ee4cebd2d78725999
 https://github.com/owncloud/core/commit/9a53d50e169a797f95c16cb75aa1bcafd7513c76



 ___
 Owncloud mailing list
 Owncloud@kde.org
 https://mail.kde.org/mailman/listinfo/owncloud




-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com
___
Owncloud mailing list
Owncloud@kde.org
https://mail.kde.org/mailman/listinfo/owncloud


Re: [Owncloud] File replacement removes share

2013-05-07 Thread Bjorn Madsen
Hi Gunnar,
I'm running 5.0.5. without encryption for 22 users and I cannot replicate
your issue. So unless you use the encryption I would upgrade. But that's
just my view.
Kind regards,



On 7 May 2013 13:30, Gunnar Groetschel ggroetsc...@kaizen.com wrote:

 Has no one the same issue?

 We would like to use owncloud as a group share…

 Best regards

 Gunnar

 ** **

 *Von:* owncloud-boun...@kde.org [mailto:owncloud-boun...@kde.org] *Im
 Auftrag von *Gunnar Groetschel
 *Gesendet:* Donnerstag, 2. Mai 2013 18:01
 *An:* 'owncloud@kde.org'
 *Betreff:* [Owncloud] File replacement removes share

 ** **

 Hi list

 ** **

 If I replace a shared file to update it, it is no longer shared.

 This happens when replacing it by the backend or by my new lovely client
 “goodsync”.

 How can I fix this?

 ** **

 Best regards

 Gunnar

 ** **

 P.S. We use 4.5.10 and goodsync (latest) as client.

 ___
 Owncloud mailing list
 Owncloud@kde.org
 https://mail.kde.org/mailman/listinfo/owncloud




-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com
___
Owncloud mailing list
Owncloud@kde.org
https://mail.kde.org/mailman/listinfo/owncloud


Re: [Owncloud] Is Sync client 1.2.5 checks max upload file size?

2013-05-07 Thread Bjorn Madsen
Just a note:
I would kindly request that the PHP max upload issue is resolved
*before*intending to implement any limitations on the client as this
no limit is
the work-around we use to upload large files.

Kind regards,


On 7 May 2013 10:23, Arman Khalatyan arm2...@gmail.com wrote:

 I was syncing 100Gb file with Client, it is newer claimed that max upload
 file size is exceeded.
 Can I configure Client to exclude the large files?

 I am testing Client on windows 7 and  ubuntu 12.04
 Test Servers:  OC 5.0.5 and OC5.0.6 RC1

 Thanks,
 Arman.


 ___
 Owncloud mailing list
 Owncloud@kde.org
 https://mail.kde.org/mailman/listinfo/owncloud




-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com
___
Owncloud mailing list
Owncloud@kde.org
https://mail.kde.org/mailman/listinfo/owncloud


Re: [Tutor] Why do sets use 6 times as much memory as lists?

2013-05-07 Thread Bjorn Madsen
Hi, Thanks for the quick response.

Being curious I actually expected something like this:
 L={x:None for x in range(1)}
 sys.getsizeof(L)
196660


That is why I wondered why 6 times is a lot given that a dict can do the
same at 3/4 of the mem-footprint.
Just got surprised about the overhead as sets some are more lightweight
than dictionaries.

additional overhead must have something to do with set-specific operations,
I imagine such as:
set1 - set2
set | set2
set1  set2
set1 = set2


Thanks anyway!



On 7 May 2013 18:53, Oscar Benjamin oscar.j.benja...@gmail.com wrote:

 On 7 May 2013 18:10, Bjorn Madsen bjorn.h.mad...@googlemail.com wrote:
  import sys
  L=[x for x in range(1)]
  sys.getsizeof(L)
  43816
  L={x for x in range(1)}
  sys.getsizeof(L)
  262260

 Firstly, these results may vary depending on operating system,
 processor architecture and build options so this won't always be
 exactly the same. I do get the same numbers as you, however, on
 standard python 2.7 on 32-bit Windows.

 So why do sets use extra memory? Under the hood a list is an array
 which stores a pointer in each slot with no gaps between the pointers.

 A set uses a hash-table which is an array that stores pointers at
 randomish positions and only fills about half of its spaces. This
 causes it to need twice as much memory for all the gaps in its array.
 On top of that Python sets use a resizable hash table and to make
 resizing efficient the hash of each object is stored in addition to
 its pointer. This essentially requires a whole extra array so it
 doubles your storage requirements again. With these two I would expect
 a set to be something like 4 times bigger so the 6 times bigger that
 you report seems reasonable to me (I may have missed something else in
 this).


 Oscar

___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


[Bug 1172018] Re: Xubuntu crashes randomly

2013-05-06 Thread Bjorn Madsen
*** This bug is a duplicate of bug 1104435 ***
https://bugs.launchpad.net/bugs/1104435

I am getting this problem without running compiz.  I am, however,
running the experimental fglrx driver from the repos.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1172018

Title:
  Xubuntu crashes randomly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xfce4-session/+bug/1172018/+subscriptions

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


[Bug 1104435] Re: xfce4-session crashed with SIGSEGV in g_slice_alloc()

2013-05-06 Thread Bjorn Madsen
This affects me too.  Switching to a different display manager until
upstream fixes it for my xubuntu release 13.04.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1104435

Title:
  xfce4-session crashed with SIGSEGV in g_slice_alloc()

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-session/+bug/1104435/+subscriptions

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


[Bug 1173338] Re: Freeze: amd64 kernel: [375840.529273] BUG: unable to handle kernel NULL pointer dereference at 0000000000000008

2013-04-29 Thread Bjorn Madsen
This happened again, with the same problem listed.  Following is the trace from 
syslog:
Apr 28 19:47:45 amd64 kernel: [200269.035595] BUG: unable to handle kernel NULL 
pointer dereference at 0008
Apr 28 19:47:45 amd64 kernel: [200269.035607] IP: [a01b1291] 
_ZN20CMMHeap_SystemMemory8pushPoolEP7CMMPool+0x11/0x40 [fglrx]
Apr 28 19:47:45 amd64 kernel: [200269.035711] PGD 0 
Apr 28 19:47:45 amd64 kernel: [200269.035716] Oops: 0002 [#1] SMP 
Apr 28 19:47:45 amd64 kernel: [200269.035723] CPU 0 
Apr 28 19:47:45 amd64 kernel: [200269.035726] Modules linked in: btrfs 
zlib_deflate libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs xfs 
reiserfs arc4 dm_crypt usblp rfcomm bnep bluetooth parport_pc ppdev 
snd_hda_codec_realtek snd_hda_codec_hdmi ip6t_LOG xt_hl ip6t_rt 
nf_conntrack_ipv6 nf_defrag_ipv6 ipt_REJECT ipt_LOG xt_multiport xt_limit 
xt_tcpudp xt_addrtype nfsd xt_state nfs binfmt_misc lockd ip6table_filter 
fscache ip6_tables auth_rpcgss nfs_acl sunrpc nf_conntrack_netbios_ns 
nf_conntrack_broadcast nf_nat_ftp nf_nat nf_conntrack_ipv4 nf_defrag_ipv4 
nf_conntrack_ftp nf_conntrack iptable_filter ip_tables ath9k_htc x_tables 
mac80211 snd_cmipci gameport ath9k_common ath9k_hw ath snd_ice1712 
snd_ice17xx_ak4xxx snd_opl3_lib snd_ak4xxx_adda cfg80211 snd_cs8427 
snd_ac97_codec ac97_bus snd_i2c snd_mpu401_uart snd_seq_midi snd_hda_intel 
psmouse snd_rawmidi snd_hda_codec snd_seq_midi_event snd_hwdep serio_raw 
i2c_piix4 snd_pcm k10temp fglrx(P) snd_seq snd_timer snd_seq_device snd mac_hid 
soundcore snd_pa
Apr 28 19:47:45 amd64 kernel: ge_alloc hwmon_vid lm83 lp parport ext2 r8169 
usbhid pata_atiixp hid
Apr 28 19:47:45 amd64 kernel: [200269.035857] 
Apr 28 19:47:45 amd64 kernel: [200269.035863] Pid: 2526, comm: Xorg Tainted: P  
 O 3.2.0-40-generic #64-Ubuntu BIOSTAR Group Hi-Fi A85W/Hi-Fi A85W
Apr 28 19:47:45 amd64 kernel: [200269.035873] RIP: 0010:[a01b1291]  
[a01b1291] _ZN20CMMHeap_SystemMemory8pushPoolEP7CMMPool+0x11/0x40 
[fglrx]
Apr 28 19:47:45 amd64 kernel: [200269.035953] RSP: 0018:8801ea4539c0  
EFLAGS: 00010297
Apr 28 19:47:45 amd64 kernel: [200269.035957] RAX: 8801ffa52008 RBX: 
c900058f7150 RCX: 
Apr 28 19:47:45 amd64 kernel: [200269.035962] RDX:  RSI: 
c900058f7018 RDI: 8801ffa52e30
Apr 28 19:47:45 amd64 kernel: [200269.035967] RBP: 0002 R08: 
a01e1eb0 R09: 8801ffa52008
Apr 28 19:47:45 amd64 kernel: [200269.035971] R10: c900058f7090 R11: 
8801ffa52008 R12: 8801ffa52e30
Apr 28 19:47:45 amd64 kernel: [200269.035976] R13: 0040 R14: 
 R15: 
Apr 28 19:47:45 amd64 kernel: [200269.035982] FS:  7f2c0d266880() 
GS:88020ec0() knlGS:00e4fb40
Apr 28 19:47:45 amd64 kernel: [200269.035987] CS:  0010 DS:  ES:  CR0: 
80050033
Apr 28 19:47:45 amd64 kernel: [200269.035992] CR2: 0008 CR3: 
0001ffa0f000 CR4: 000406f0
Apr 28 19:47:45 amd64 kernel: [200269.036008] DR0: 0090 DR1: 
00a4 DR2: 00ff
Apr 28 19:47:45 amd64 kernel: [200269.036013] DR3: 000f DR6: 
0ff0 DR7: 0600
Apr 28 19:47:45 amd64 kernel: [200269.036016] Process Xorg (pid: 2526, 
threadinfo 8801ea452000, task 8801fd36dc00)
Apr 28 19:47:45 amd64 kernel: [200269.036016] Stack:
Apr 28 19:47:45 amd64 kernel: [200269.036016]  a01b0cb6 
 8801ffa52e30 8801ffa52ec8
Apr 28 19:47:45 amd64 kernel: [200269.036016]  0200 
 a0149c55 0008
Apr 28 19:47:45 amd64 kernel: [200269.036016]  8801ffa52e30 
a01e1eb0 a0149fb8 8801ea453a88
Apr 28 19:47:45 amd64 kernel: [200269.036016] Call Trace:
Apr 28 19:47:45 amd64 kernel: [200269.036016]  [a01b0cb6] ? 
_ZN7CMMHeap15createPoolSpaceI21CMMPoolAsicAccessibleEEbj+0xb6/0xc0 [fglrx]
Apr 28 19:47:45 amd64 kernel: [200269.036016]  [a0149c55] ? 
_ZN20CMMHeap_SystemMemory10obtainPoolEv+0x85/0xc0 [fglrx]
Apr 28 19:47:45 amd64 kernel: [200269.036016]  [a0149fb8] ? 
_ZN16CMMHeap_PAGEABLE10expandHeapEm+0x18/0xb0 [fglrx]
Apr 28 19:47:45 amd64 kernel: [200269.036016]  [a01b0aaa] ? 
_ZN7CMMHeap10expandHeapEmRmPv+0xa/0x10 [fglrx]
Apr 28 19:47:45 amd64 kernel: [200269.036016]  [a01489af] ? 
_ZN7CMMHeap21allocateMorePoolSpaceEmPv+0x8f/0x1b0 [fglrx]
Apr 28 19:47:45 amd64 kernel: [200269.036016]  [a014737e] ? 
_ZN14CMMHeapManager13allocPageableEjR14CMM_ALLOCATION+0xbe/0x100 [fglrx]
Apr 28 19:47:45 amd64 kernel: [200269.036016]  [a01518b7] ? 
_ZN9CMMObjectnwEmP8CMM_CORE+0x37/0x70 [fglrx]
Apr 28 19:47:45 amd64 kernel: [200269.036016]  [a0155462] ? 
_ZN8MSF_CORE21get_surface_structureEv+0xc2/0xe0 [fglrx]
Apr 28 19:47:45 amd64 kernel: [200269.036016]  [a013f63f] ? 

[Bug 1173338] AcpiTables.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: AcpiTables.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659467/+files/AcpiTables.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] AlsaDevices.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: AlsaDevices.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659468/+files/AlsaDevices.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] AplayDevices.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: AplayDevices.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659469/+files/AplayDevices.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] ArecordDevices.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: ArecordDevices.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659470/+files/ArecordDevices.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] AudioDevicesInUse.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: AudioDevicesInUse.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659471/+files/AudioDevicesInUse.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] BootDmesg.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659472/+files/BootDmesg.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] CRDA.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: CRDA.txt
   https://bugs.launchpad.net/bugs/1173338/+attachment/3659473/+files/CRDA.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] Card0.Amixer.values.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: Card0.Amixer.values.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659474/+files/Card0.Amixer.values.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] Card1.Amixer.values.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: Card1.Amixer.values.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659475/+files/Card1.Amixer.values.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] Card2.Amixer.values.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: Card2.Amixer.values.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659476/+files/Card2.Amixer.values.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] CurrentDmesg.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659478/+files/CurrentDmesg.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] Card2.Codecs.codec.3.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: Card2.Codecs.codec.3.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659477/+files/Card2.Codecs.codec.3.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] IwConfig.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: IwConfig.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659479/+files/IwConfig.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] Lspci.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/1173338/+attachment/3659480/+files/Lspci.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] Lsusb.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/1173338/+attachment/3659481/+files/Lsusb.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] PciMultimedia.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: PciMultimedia.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659482/+files/PciMultimedia.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] ProcCpuinfo.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659483/+files/ProcCpuinfo.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] ProcInterrupts.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659484/+files/ProcInterrupts.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] ProcModules.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659485/+files/ProcModules.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] PulseList.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: PulseList.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659486/+files/PulseList.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] UdevDb.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/1173338/+attachment/3659487/+files/UdevDb.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] UdevLog.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: UdevLog.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659488/+files/UdevLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] WifiSyslog.txt

2013-04-29 Thread Bjorn Madsen
apport information

** Attachment added: WifiSyslog.txt
   
https://bugs.launchpad.net/bugs/1173338/+attachment/3659489/+files/WifiSyslog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] Re: Freeze: amd64 kernel: [375840.529273] BUG: unable to handle kernel NULL pointer dereference at 0000000000000008

2013-04-29 Thread Bjorn Madsen
Based on my meager comprehension of syslog traces, it looks to me like
this is a problem with fglrx.  I found somebody at the arch forums with
the same problem, seems to be upstream with amd.  I will see if rolling
back to a former kernel  will work, and if that doe4sn't work I will try
the opensource driver.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173338

Title:
  Freeze:  amd64 kernel: [375840.529273] BUG: unable to handle kernel
  NULL pointer dereference at 0008

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1173338/+subscriptions

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


[Bug 1173338] [NEW] Freeze: amd64 kernel: [375840.529273] BUG: unable to handle kernel NULL pointer dereference at 0000000000000008

2013-04-26 Thread Bjorn Madsen
Public bug reported:

Hey, I had a hard freeze last night on my computer and thought I would
file it.  Following is the syslog portion of the problem that is
relevant.  The problem occurs at 19:47:44.  I copied the line above and
below to ensure I got the whole thing:


Apr 25 19:39:01 amd64 CRON[6682]: (root) CMD (  [ -x /usr/lib/php5/maxlifetime 
]  [ -d /var/lib/php5 ]  find /var/lib/php5/ -depth -mindepth 1 -maxdepth 1 
-type f -cmin +$(/usr/lib/php5/maxlifetime) ! -execdir fuser -s {} 2/dev/null 
\; -delete)
Apr 25 19:47:44 amd64 kernel: [375840.529273] BUG: unable to handle kernel NULL 
pointer dereference at 0008
Apr 25 19:47:44 amd64 kernel: [375840.529279] IP: [a0189291] 
_ZN20CMMHeap_SystemMemory8pushPoolEP7CMMPool+0x11/0x40 [fglrx]
Apr 25 19:47:44 amd64 kernel: [375840.529327] PGD 0 
Apr 25 19:47:44 amd64 kernel: [375840.529331] Oops: 0002 [#1] SMP 
Apr 25 19:47:44 amd64 kernel: [375840.529334] CPU 2 
Apr 25 19:47:44 amd64 kernel: [375840.529336] Modules linked in: 
snd_hda_codec_hdmi snd_usb_audio snd_usbmidi_lib snd_seq_dummy snd_seq_midi 
snd_seq_midi_event isofs udf crc_itu_t arc4 bnep rfcomm bluetooth parport_pc 
ppdev nfsd nfs lockd fscache binfmt_misc auth_rpcgss nfs_acl sunrpc dm_crypt 
ext2 hwmon_vid lm83 lp parport usblp snd_hda_codec_realtek ip6t_LOG xt_hl 
ip6t_rt nf_conntrack_ipv6 nf_defrag_ipv6 ipt_REJECT ipt_LOG xt_multiport 
xt_limit xt_tcpudp xt_addrtype xt_state snd_ice1712 ip6table_filter 
snd_ice17xx_ak4xxx ip6_tables snd_ak4xxx_adda snd_cs8427 snd_ac97_codec 
ac97_bus nf_conntrack_netbios_ns nf_conntrack_broadcast snd_i2c nf_nat_ftp 
nf_nat nf_conntrack_ipv4 nf_defrag_ipv4 nf_conntrack_ftp nf_conntrack 
iptable_filter ip_tables x_tables ath9k_htc snd_hda_intel snd_cmipci 
snd_hda_codec gameport mac80211 psmouse snd_pcm snd_seq snd_opl3_lib serio_raw 
snd_hwdep snd_mpu401_uart ath9k_common fglrx(P) ath9k_hw ath snd_timer 
snd_rawmidi cfg80211 snd_seq_device mac_hid snd i2c_piix4 soundcore k10temp snd_
Apr 25 19:47:44 amd64 kernel: page_alloc usbhid hid r8169 pata_atiixp [last 
unloaded: snd_seq_midi_event]
Apr 25 19:47:44 amd64 kernel: [375840.529395] 
Apr 25 19:47:44 amd64 kernel: [375840.529397] Pid: 1935, comm: Xorg Tainted: P  
 O 3.2.0-40-generic #64-Ubuntu BIOSTAR Group Hi-Fi A85W/Hi-Fi A85W
Apr 25 19:47:44 amd64 kernel: [375840.529402] RIP: 0010:[a0189291]  
[a0189291] _ZN20CMMHeap_SystemMemory8pushPoolEP7CMMPool+0x11/0x40 
[fglrx]
Apr 25 19:47:44 amd64 kernel: [375840.529432] RSP: 0018:8802006fb920  
EFLAGS: 00010297
Apr 25 19:47:44 amd64 kernel: [375840.529434] RAX: 880200584008 RBX: 
c9000dc52150 RCX: 
Apr 25 19:47:44 amd64 kernel: [375840.529436] RDX:  RSI: 
c9000dc52018 RDI: 880200584e30
Apr 25 19:47:44 amd64 kernel: [375840.529438] RBP: 0002 R08: 
a01b9eb0 R09: 880200584008
Apr 25 19:47:44 amd64 kernel: [375840.529440] R10: c9000dc52090 R11: 
880200584008 R12: 880200584e30
Apr 25 19:47:44 amd64 kernel: [375840.529442] R13: 0040 R14: 
 R15: 
Apr 25 19:47:44 amd64 kernel: [375840.529445] FS:  7f99134ae880() 
GS:88020ed0() knlGS:0074fb40
Apr 25 19:47:44 amd64 kernel: [375840.529447] CS:  0010 DS:  ES:  CR0: 
80050033
Apr 25 19:47:44 amd64 kernel: [375840.529448] CR2: 0008 CR3: 
0001fcae4000 CR4: 000406e0
Apr 25 19:47:44 amd64 kernel: [375840.529451] DR0:  DR1: 
 DR2: 
Apr 25 19:47:44 amd64 kernel: [375840.529453] DR3:  DR6: 
0ff0 DR7: 0400
Apr 25 19:47:44 amd64 kernel: [375840.529455] Process Xorg (pid: 1935, 
threadinfo 8802006fa000, task 8802006ac500)
Apr 25 19:47:44 amd64 kernel: [375840.529457] Stack:
Apr 25 19:47:44 amd64 kernel: [375840.529458]  a0188cb6 
 880200584e30 880200584ec8
Apr 25 19:47:44 amd64 kernel: [375840.529463]  0200 
 a0121c55 0008
Apr 25 19:47:44 amd64 kernel: [375840.529467]  880200584e30 
a01b9eb0 a0121fb8 8800c2b26ec8
Apr 25 19:47:44 amd64 kernel: [375840.529471] Call Trace:
Apr 25 19:47:44 amd64 kernel: [375840.529503]  [a0188cb6] ? 
_ZN7CMMHeap15createPoolSpaceI21CMMPoolAsicAccessibleEEbj+0xb6/0xc0 [fglrx]
Apr 25 19:47:44 amd64 kernel: [375840.529545]  [a0121c55] ? 
_ZN20CMMHeap_SystemMemory10obtainPoolEv+0x85/0xc0 [fglrx]
Apr 25 19:47:44 amd64 kernel: [375840.529586]  [a0121fb8] ? 
_ZN16CMMHeap_PAGEABLE10expandHeapEm+0x18/0xb0 [fglrx]
Apr 25 19:47:44 amd64 kernel: [375840.529617]  [a0188aaa] ? 
_ZN7CMMHeap10expandHeapEmRmPv+0xa/0x10 [fglrx]
Apr 25 19:47:44 amd64 kernel: [375840.529653]  [a01209af] ? 
_ZN7CMMHeap21allocateMorePoolSpaceEmPv+0x8f/0x1b0 [fglrx]
Apr 25 19:47:44 amd64 kernel: [375840.529688]  [a011f37e] ? 

Re: [Owncloud] ubuntu apt-get upgrade

2013-04-12 Thread Bjorn Madsen
Hi Chris,
First I though it was just me being a muppet (happens from time to time -
admitted) but then I crosschecked, once more:

Under software sources I have the key token BA684223 2012-02-08 linked to
isv\x3aowncl...@build.opensuse.org

And even if I repeat the steps you link to:
bjorn@ubuntu1204:~$ sudo su
[sudo] password for bjorn:
root@ubuntu1204:/home/bjorn# wget
http://download.opensuse.org/repositories/isv:ownCloud:devel/xUbuntu_12.04/Release.key
--2013-04-12 09:01:39--
http://download.opensuse.org/repositories/isv:ownCloud:devel/xUbuntu_12.04/Release.key
Resolving download.opensuse.org (download.opensuse.org)... 195.135.221.134,
2001:67c:2178:8::13
Connecting to download.opensuse.org
(download.opensuse.org)|195.135.221.134|:80...
connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location:
http://download.opensuse.org/repositories/isv:ownCloud:/devel/xUbuntu_12.04/Release.key[following]
--2013-04-12 09:01:39--
http://download.opensuse.org/repositories/isv:ownCloud:/devel/xUbuntu_12.04/Release.key
Reusing existing connection to download.opensuse.org:80.
HTTP request sent, awaiting response... 301 Moved Permanently
Location:
http://download.opensuse.org/repositories/isv:/ownCloud:/devel/xUbuntu_12.04/Release.key[following]
--2013-04-12 09:01:39--
http://download.opensuse.org/repositories/isv:/ownCloud:/devel/xUbuntu_12.04/Release.key
Reusing existing connection to download.opensuse.org:80.
HTTP request sent, awaiting response... 200 OK
Length: 1003 [application/pgp-keys]
Saving to: `Release.key'

100%[==] 1,003   --.-K/s   in 0s


2013-04-12 09:01:39 (28.7 MB/s) - `Release.key' saved [1003/1003]

root@ubuntu1204:/home/bjorn# apt-key add -  Release.key
OK
root@ubuntu1204:/home/bjorn# ^C
root@ubuntu1204:/home/bjorn# exit
bjorn@ubuntu1204:~$ sudo apt-get update
Hit http://extras.ubuntu.com precise Release.gpg
Hit http://gb.archive.ubuntu.com precise Release.gpg

[cut for brevity]

Hit http://download.opensuse.org  Release.gpg
Ign https://private-ppa.launchpad.net precise/main Translation-en_GB


Ign https://private-ppa.launchpad.net precise/main Translation-en


Hit http://download.opensuse.org  Release


100% [Waiting for headers]

101 B/s 0saHit http://download.opensuse.org  Packages


Ign http://download.opensuse.org  Translation-en_GB
Ign http://download.opensuse.org  Translation-en
Fetched 632 B in 46s (13 B/s)
Reading package lists... Done
W: GPG error: http://ppa.launchpad.net precise Release: The following
signatures couldn't be verified because the public key is not available:
NO_PUBKEY 8CA7A6E8E4FA953A
W: GPG error: https://private-ppa.launchpad.net precise Release: The
following signatures couldn't be verified because the public key is not
available: NO_PUBKEY E131728675254D99
bjorn@ubuntu1204:~$

...I get the same error.

Here as root:
...
Hit http://download.opensuse.org  Release


Hit http://download.opensuse.org  Packages


Ign http://download.opensuse.org  Translation-en_GB
Ign http://download.opensuse.org  Translation-en
Fetched 1,828 kB in 47s (38.2 kB/s)
Reading package lists... Done
W: GPG error: http://ppa.launchpad.net precise Release: The following
signatures couldn't be verified because the public key is not available:
NO_PUBKEY 8CA7A6E8E4FA953A
W: GPG error: http://dl.google.com stable Release: The following signatures
couldn't be verified because the public key is not available: NO_PUBKEY
A040830F7FAC5991
W: GPG error: https://private-ppa.launchpad.net precise Release: The
following signatures couldn't be verified because the public key is not
available: NO_PUBKEY E131728675254D99
W: Duplicate sources.list entry
http://download.opensuse.org/repositories/isv:ownCloud:devel/xUbuntu_12.04/
Packages
(/var/lib/apt/lists/download.opensuse.org_repositories_isv:ownCloud:devel_xUbuntu%5f12.04_Packages)
root@ubuntu1204:/home/bjorn# ^C
root@ubuntu1204:/home/bjorn# exit




On 12 April 2013 07:10, Chris fisch@gmx.de wrote:

 Hi,

 no need to create a bugreport. You just have to read the complete
 install instruction here:


 http://software.opensuse.org/download/package?project=isv:ownCloud:develpackage=owncloud-client

 especially the You can add the repository key to apt like this:  part.

 --
 Chris
 ___
 Owncloud mailing list
 Owncloud@kde.org
 https://mail.kde.org/mailman/listinfo/owncloud




-- 
Bjorn Madsen
*Researcher Complex Systems Research*
Ph.: (+44) 0 7792 030 720
bjorn.mad...@operationsresearchgroup.com
___
Owncloud mailing list
Owncloud@kde.org
https://mail.kde.org/mailman/listinfo/owncloud


[Owncloud] ubuntu apt-get upgrade

2013-04-11 Thread Bjorn Madsen
Hi guys,
I noticed this on the last few apt-get update/upgrades:

sudo apt-get update
...
Reading package lists... Done
W: GPG error: http://ppa.launchpad.net precise Release: The following
signatures couldn't be verified because the public key is not available:
NO_PUBKEY 8CA7A6E8E4FA953A
W: GPG error: https://private-ppa.launchpad.net precise Release: The
following signatures couldn't be verified because the public key is not
available: NO_PUBKEY E131728675254D99
W: GPG error: http://download.opensuse.org  Release: The following
signatures couldn't be verified because the public key is not available:
NO_PUBKEY 977C43A8BA684223

sudo apt-get upgrade
...
WARNING: The following packages cannot be authenticated!
  libocsync-plugin-owncloud libocsync0 owncloud-client
Install these packages without verification [y/N]? y

Where shall I file the bug-report?

Kind regards,
-- 
Bjorn Madsen
___
Owncloud mailing list
Owncloud@kde.org
https://mail.kde.org/mailman/listinfo/owncloud


[Owncloud] Following owncloud installation instructions results in failed installation on fresh Ubuntu 12.04 LTS

2013-01-15 Thread Bjorn Madsen
Hello OC-team
I've taken a clean Ubuntu Server 12.04 LTS image in virtualbox (downloaded
yesterday), in attempt to repeat the installation instructions with rigour
The server has OpenSSH server and LAMP server installed, and I ssh to it.
LTS 12.04 has owncloud 3 installed, which does not contain all wanted
features.

When issuing the first command:
*sudo apt-get install apache2 php5 php5-json php-xml php-mbstring php5-zip
php5-gd*
I receive the following error messages:
*Note, selecting 'php-common' instead of 'php-json'*
*E: Unable to locate package php-xml*
*E: Unable to locate package php-mbstring
*
*E: Unable to locate package php5-zip*

proceeding with:
*sudo apt-get install php5-sqlite curl libcurl3 libcurl3-dev php5-curl
php-pdo*
Returns the following messages:
*Note, selecting 'libcurl4-openssl-dev' instead of 'libcurl3-dev'*
*E: Unable to locate package php-pdo*

In combination, with step 2.1:
*wget http://mirrors.owncloud.org/releases/owncloud-4.5.5.tar.bz2  \*
*cd Downloads \*
*tar -xjf owncloud-* \*
*cp -r owncloud /var/www/ \*
*firefox http:/127.0.0.1/owncloud *

...Whereby I assume that /var/www is correct...(as no explicit instructions
are given for the default installation directory...)

Following these instructions will result in the browser (http:/
127.0.0.1/owncloud) with the error-message
*PHP module GD is not installed*

Could somebody please cross check these instructions?
For example php-xml could call:
*php-xml-htmlsax3*
*php-xml-parser
*
*php-xml-rpc
*
*php-xml-rpc2
*
*php-xml-rss
*
*php-xml-serializer*
?

The step 2.2. Set the directory permissions is a little tricky, as it
assumes knowledge.
*The owner of your webserver must own the apps/, data/ and config/
directories in your ownCloud install. You can do this by running the
following command for the apps, data and config directories:*
*chown -R www-data:www-data /path/to/your/owncloud/install/data*

for example *sudo chown -R www-data:www-data /var/www/owncloud *executes
with no error messages, but should the user be aware of the consequence.
I.e. is it a safe or a dangerous typo?). Or would it be more correct to
issue the instructions:
choose storage for your users: f.x.:
*mkdir /home/owncloud/data*
*chown -R www-data:www-data /home/owncloud/data
*
*chown -R www-data:www-data /var/www/owncloud/apps*
*chown -R www-data:www-data /var/www/owncloud/config*

Finally, the installer script (
https://download.owncloud.com/download/community/setup-owncloud.php) fails
to move beyond starting screen on ubuntu 12.04 LTS with firefox installed.
I assume that this is due to the php dependencies?

Suggestion: What if this first-first step was shell-scripted instead?
*#!/usr/bin/sh*
*# this script needs sudo...*
*If (php conditions are not met) then*
*  install these conditions*
*  ...continue setup...in php...*
*Else*
*  ...just continue in php*

Finally when checking the download of the scripts http*s* secure element
in httpS,
*wget https://download.owncloud.com/download/community/setup-owncloud.php*
returns the following message:
*--2012-01-15 10:39:20--
https://download.owncloud.com/download/community/setup-owncloud.php*
*Resolving download.owncloud.com (download.owncloud.com)...50.30.42.17*
*Connecting to download.owncloud.com (download.owncloud.com
)|50.30.42.17|:443connected*
*ERROR: no certificate subject alternative name matches*
*   request host name 'download.owncloud.com'.*

...

Thanks for your help updating the default installation guide
-- 
Bjorn
___
Owncloud mailing list
Owncloud@kde.org
https://mail.kde.org/mailman/listinfo/owncloud


Re: [Owncloud] Following owncloud installation instructions results in failed installation on fresh Ubuntu 12.04 LTS

2013-01-15 Thread Bjorn Madsen
On then owncloud landing page [http:/owncloud.org]'s frontpage there is a
link Install your own [http://owncloud.org/install] This redirects to [
http://owncloud.org/support/install/]  where I obtained the instructions
from. I think this is as frontpage matter as it gets, and there I guess
it is not updated.
___
Owncloud mailing list
Owncloud@kde.org
https://mail.kde.org/mailman/listinfo/owncloud


  1   2   >