Re: error en ubuntu 20

2020-03-25 Thread John Lenton
On Wed, 25 Mar 2020 at 00:06, Jesus Martinez  wrote:
>
> buen día actualice mi sistema operativo a ubuntu 20 y se me desinstalo
> la app qbittorrent es una de las app que mas uso y tenia descargas
> activas en espera ahora volví a instalar y no inicia mi programa

Hola!

Esta es una lista de discusión del desarrollo de ubuntu en sí, no para
reportar errores. Para eso, te recomiendo que abras una terminal e
ingreses"ubuntu-bug qbittorrent".
Por otro lado, acá tengo 20.04, instalé qbittorrent y este inició sin
inconvenientes, así que es probable que el problema sea en que la
versión de 20.04 del programa no entienda algo en la configuración
anterior, es decir que probablemente la gente de qbittorrent misma te
pueda ayudar mejor que nosotros.

Suerte!

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


Re: Golang Package.

2018-02-22 Thread John Lenton
On 21 February 2018 at 23:50, Mike Lloyd  wrote:
> Gotcha. Why is the standard package is so far behind in 16.04? Golang
> doesn't have a concept of LTS.

for what it's worth, note Michael has been very good about backporting
bugfixes to 1.6 (thanks!)

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


Re: On Lists and Iterables

2017-12-15 Thread John Lenton
On 15 December 2017 at 10:40, Xen  wrote:
>
> Zipping by definition produces a list of tuples

No it's not.

That's how it was defined in python 2, yes. The definition changed for
3. This is _more_ friendly, because in 2 you could very easily
inadvertently use up a lot more memory than you were wanting to. If
all you wanted was to loop over things, zip (and dict's keys and
values and items, and range) now do the right thing. If you actually
wanted the list you pass it to list(), and make your wants explicit.

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


Re: Bug#881692: command-not-found: I re-wrote command-not-found

2017-11-14 Thread John Lenton
On 14 November 2017 at 12:34, Julian Andres Klode  wrote:
> On Tue, Nov 14, 2017 at 01:00:54PM +0100, Zygmunt Krynicki wrote:
>> I would love if we have a compact representation of mapping from name
>> to list of bits of information where each bit can be a small structure
>> with some data. Apart from components for ubuntu archive it could be
>> used to store facts about snap packages, flatpaks, etc. I would try to
>> avoid a simplistic command -> package mapping as that will force us to
>> encode things into strings in an ad-hoc way.
>
> That makes sense to me. But then we're back on a db, I guess. I sort
> like this minimal approach.

I was thinking in the other direction, was going to see how it behaved
with sqlite as the store. Would that be objectionable?

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


Re: What is the best way to package going forward (deb or snap?)

2017-06-05 Thread John Lenton
Before getting to my reply I should point out two things:

* I work on snapd itself, and think it's the bees' knees and the way
forwards for getting software into its user's hands: all the
convenience of a PPA, without needing to give unconstrained root to
random people on the internet. Also, you can point people on SUSE and
Fedora to it as well.

* I have tried three times in the past ten years to become an Ubuntu
member / developer, and gave up three times in frustration after
getting nowhere for months; I'm at this point sceptical of the whole
self-selected elite thing. It certainly works to generate bureaucracy
and roadblocks to doing what you want, namely getting software into
people's hands.

On 4 June 2017 at 14:40, Joseph Smidt  wrote:
> let me know what is the best way to get some of these free security packages
> into official Ubuntu repos.

I think snaps is what you want :-)
I think your best bet is to use snapcraft, craft a snapcraft.yaml that
works to package the tools into a *strict* snap (this might involve
working with us in snapd to add interfaces, if what the tools do isn't
already covered by existing ones) (note you can make a snap private,
if the tools in question have a license that doesn't let you
distribute binaries), and then offer that snapcraft.yaml to upstream.
They can tie this into their CI so they'd have a snap autobuilt and
pushed to edge for every commit, and have separate tracks for
different concurrent stable revisions if they have that, and get stats
about users and such.

HTH,

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


Re: 4.8 kernel for Xenial

2016-11-21 Thread John Lenton
On 21 November 2016 at 13:55, Xen  wrote:
> Not to mention that 4.4 doesn't support 900 nVidia GPUs which have been out
> for like 2 years.

As a happy user of a GTX 970 on xenial's 4.4, I'm puzzled by your assertion.

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


Re: [Fwd: Ubuntu Core 16 beta images available]

2016-09-08 Thread John Lenton
On 8 September 2016 at 15:14, Oliver Grawert  wrote:
> though it might be tricky to detect
> from within kvm that you are running inside kvm and conditionally
> change the default message here

yeah, that'd need dmidecode which isn't in core. Its only 100k though... ;-)

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


Re: about offline update

2016-04-22 Thread John Lenton
On 22 April 2016 at 04:59, yan...@iscas.ac.cn  wrote:
> Has ubuntu implemented  the offline update by systemd?

no.

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


Re: Ubuntu Touch File System

2015-05-19 Thread John Lenton
You could start doing this, for example:

find / -writable -ls

this will print out a list of every user-writable file on the device.


On 18 May 2015 at 18:06,  astavroula...@os3.nl wrote:
 In the home directory, there is user information such as photos, music etc
 in the directories Documents, Downloads, Music, Pictures, Videos.
 However, I can't find, for example, actual SMS messages stored there, or
 the phonecalls' list and other data.

 Imagine that this is a forensic investigation and you want to find
 possible incriminating evidence. This is the scenario I have to work with.
 So far the only evidence I have managed to find is the file in which the
 WiFi passwords are stored. And that is not located in the home directory.

 Could you please be a bit more specific with your answer?

 All such data is stored underneath the home directory (~/phablet). Most
 of the data is stored in XDG directories, for which the environment
 variables are modified for each confined application, so that data is
 not accessible by other applications.


 On Mon, 2015-05-18 at 00:12 +0200, astavroula...@os3.nl wrote:
 Dear Developing Team,

 My name is Alex Stavroulakis and I am working on an class project
 performing forensics on the new Ubuntu Phone (BQ Aquaris E4.5). The
 device
 has turned out a bit problematic and due to time restraints I am
 emailing
 you for some assistance.

 My task is to find where User Data is stored on the device. By that, I
 mean Call information, SMS logs of conversation, Emails (if such are
 stored on the device), maybe even Telegram secret chat conversations
 etc.
 I am mainly interested in which directories of the filesystem some of
 this
 information is saved and if it can be accessed in a forensically sound
 manner.

 I hope you can help me. Thank you in advance and I am looking forward to
 your answer.

 Sincerely,

 Alex Stavroulakis







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

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


Re: Ubuntu Touch File System

2015-05-19 Thread John Lenton
On 19 May 2015 at 15:54, Matthias Apitz g...@unixarea.de wrote:
 I do not understand your message

Alex Stavroulakis said he's working on a class project. So we're
trying to give him pointers so he can find the information he needs,
without actually doing his homework for him. Your quite comprehensive
description of the phone's filesystem is probably as far as we can go.

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


Go 1.3 is unmaintained/unsupported upstream

2015-02-13 Thread John Lenton
Go 1.3.3, which we are shipping in Vivid, is unmaintained upstream¹
(yes, despite being released less than six months ago).

Would it be possible to move to 1.4 in vivid? This wouldn't fix the
fact that it will become unmaintained in Vivid's timeframe, but at
least we can get the bugs we find during development fixed upstream.


1. https://github.com/golang/go/issues/9866#event-235479734

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


Re: python-colorama: DOS line endings causing problems

2014-11-17 Thread John Lenton
On 16 November 2014 10:13, Prasad Bhat hlpr...@gmail.com wrote:
 Hi,

 I saw that all py files from python-colorama (v0.2.5) which is used in
 Ubuntu 14.04.1 has DOS line endings (\r\n) instead of Unix line endings
 (\n).

 Some applications in Ubuntu have an assumption of Unix line endings in file
 causing unexpected behaviour, e.g.:
 https://bugs.kde.org/show_bug.cgi?id=340841

 Is this a bug?

a user-facing program that crashes because of the line endings of a
file not being the system's default has a bug, yes.

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


Re: Adobe Flash Broken For Obvious Case?

2013-05-21 Thread John Lenton
On Tue, May 21, 2013 at 10:10 AM, Ma Xiaojun damage3...@gmail.com wrote:

 On 13.04 64bit with Adobe Flash installed.

 Go to youtube.com, play any video, right-click and select Settings...
 Then a dialog pops up, but it doesn't respond to user click at all;
 the only way to close it is refresh the page...

 I know Adobe may be the one to blame. But can we workaround in our side?

Adobe doesn't care about Flash any more, especially on Linux. There is
however an (I thought) well-known workaround for this issue:
http://askubuntu.com/q/74332/711

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