diff options
Diffstat (limited to 'zarb-ml/mageia-dev/2012-November/020284.html')
-rw-r--r-- | zarb-ml/mageia-dev/2012-November/020284.html | 247 |
1 files changed, 247 insertions, 0 deletions
diff --git a/zarb-ml/mageia-dev/2012-November/020284.html b/zarb-ml/mageia-dev/2012-November/020284.html new file mode 100644 index 000000000..c9f5419d5 --- /dev/null +++ b/zarb-ml/mageia-dev/2012-November/020284.html @@ -0,0 +1,247 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> +<HTML> + <HEAD> + <TITLE> [Mageia-dev] Cinnamon uploaded + </TITLE> + <LINK REL="Index" HREF="index.html" > + <LINK REL="made" HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20Cinnamon%20uploaded&In-Reply-To=%3C50B37019.2000800%40gmail.com%3E"> + <META NAME="robots" CONTENT="index,nofollow"> + <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> + <LINK REL="Previous" HREF="020286.html"> + <LINK REL="Next" HREF="020285.html"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <H1>[Mageia-dev] Cinnamon uploaded</H1> + <B>Anne Nicolas</B> + <A HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20Cinnamon%20uploaded&In-Reply-To=%3C50B37019.2000800%40gmail.com%3E" + TITLE="[Mageia-dev] Cinnamon uploaded">ennael1 at gmail.com + </A><BR> + <I>Mon Nov 26 14:35:21 CET 2012</I> + <P><UL> + <LI>Previous message: <A HREF="020286.html">[Mageia-dev] Cinnamon uploaded +</A></li> + <LI>Next message: <A HREF="020285.html">[Mageia-dev] Cinnamon +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#20284">[ date ]</a> + <a href="thread.html#20284">[ thread ]</a> + <a href="subject.html#20284">[ subject ]</a> + <a href="author.html#20284">[ author ]</a> + </LI> + </UL> + <HR> +<!--beginarticle--> +<PRE>Le 26/11/2012 14:23, Joseph Wang a écrit : +><i> On 25/11/12 17:22, Liam R E Quin wrote: +</I>>><i> On Sun, 2012-11-25 at 14:01 +0000, Anne Wilson wrote: +</I>>><i> +</I>>>>><i> Since there's no identification in the message, all I could +</I>>>>><i> suggest is a brute-force search of all files on the root or +</I>>>>><i> /usr partitons for the string "ConsoleKit", which appears in +</I>>>>><i> the error message. Then, identify the package which owns the +</I>>>>><i> file using rpmdrake. +</I>>>>><i> +</I>>>><i> Makes sense. The only problem is I don't know how to do that. I +</I>>>><i> tried to use a combination of cat and grep, but there is no +</I>>>><i> recursive flag, so that won't work. How would you do it? +</I>>><i> +</I>>><i> (1) grep -l -r ConsoleKit . this is easiest; -r is "recursive" But +</I>>><i> it will cross file system boundaries, so if you do it from / it +</I>>><i> will go into /use and /media and anywhere else it can find! +</I>>><i> +</I>>><i> (2) find / /usr -type f -xdev -print0 | xargs -0 grep -l ConsoleKit +</I>>><i> This is the usual "find" approach. -type f means only print names +</I>>><i> of files, not directories, symbolic links or device files... -xdev +</I>>><i> means don't stray into other filesystems like /home -print0 is the +</I>>><i> same as -print (prints each matching name) but prints the filenames +</I>>><i> with a NUL (character 0, hence the 0 in -print0) after each name, +</I>>><i> instead of putting each file on a separate line. This is needed +</I>>><i> because of filenames containing spaces or newlines. +</I>>><i> +</I>>><i> xargs reads a list of files, one per line, or, with -0 (again the +</I>>><i> digit zero) separated by NUL bytes; it runs the command on each of +</I>>><i> the files +</I>>><i> +</I>>><i> The -l option to grep says to print just the filename, needed in +</I>>><i> case there are binaries that contain the string. +</I>>><i> +</I>><i> Perfect. The 'find' returns +</I>><i> +</I>><i> /usr/lib/libpowerdevilcore.so.0.1.0 +</I>><i> /usr/lib/packagekitd +</I>><i> /usr/lib/libpolkit-qt-core-1.so.1.103.0 +</I>><i> /usr/bin/xdm +</I>><i> /usr/bin/gnome-session +</I>><i> /usr/share/doc/nautilus/NEWS +</I>><i> /usr/share/doc/dbus/NEWS +</I>><i> /usr/share/doc/networkmanager-applet/ChangeLog +</I>><i> /usr/share/doc/sane-backends-1.0.23/ChangeLog +</I>><i> /usr/share/doc/gnome-power-manager/NEWS +</I>><i> /usrDelivered-To: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">ennael1 at gmail.com</A> +</I>><i> Received: by 10.76.73.227 with SMTP id o3csp250222oav; +</I>><i> Mon, 26 Nov 2012 05:23:26 -0800 (PST) +</I>><i> Received: by 10.180.99.36 with SMTP id en4mr17517445wib.20.1353936206030; +</I>><i> Mon, 26 Nov 2012 05:23:26 -0800 (PST) +</I>><i> Return-Path:<<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev-bounces at mageia.org</A>> +</I>><i> Received: from ryu.zarb.org (ryu.zarb.org. [2002:d455:9e16::1]) +</I>><i> by mx.google.com with ESMTPS id i42si7883531wep.67.2012.11.26.05.23.19 +</I>><i> (version=TLSv1/SSLv3 cipher=OTHER); +</I>><i> Mon, 26 Nov 2012 05:23:25 -0800 (PST) +</I>><i> Received-SPF: neutral (google.com: 2002:d455:9e16::1 is neither permitted nor denied by best guess record for domain of <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev-bounces at mageia.org</A>) client-ip=2002:d455:9e16::1; +</I>><i> Authentication-Results: mx.google.com; spf=neutral (google.com: 2002:d455:9e16::1 is neither permitted nor denied by best guess record for domain of <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev-bounces at mageia.org</A>) smtp.mail=<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev-bounces at mageia.org</A> +</I>><i> Received: from localhost (localhost [127.0.0.1]) +</I>><i> by ryu.zarb.org (Postfix) with ESMTP id 610A11E278F; +</I>><i> Mon, 26 Nov 2012 14:23:18 +0100 (CET) +</I>><i> X-Virus-Scanned: amavisd-new at zarb.org +</I>><i> Received: from ryu.zarb.org ([127.0.0.1]) +</I>><i> by localhost (ryu.zarb.org [127.0.0.1]) (amavisd-new, port 10025) +</I>><i> with ESMTP id HCEsQ1vGm+GC; Mon, 26 Nov 2012 14:23:17 +0100 (CET) +</I>><i> Received: from ryu.zarb.org (localhost [127.0.0.1]) +</I>><i> by ryu.zarb.org (Postfix) with ESMTP id BB5D31E2790; +</I>><i> Mon, 26 Nov 2012 14:23:16 +0100 (CET) +</I>><i> X-Original-To: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev at mageia.org</A> +</I>><i> Delivered-To: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev at mageia.org</A> +</I>><i> Received: from localhost (localhost [127.0.0.1]) +</I>><i> by ryu.zarb.org (Postfix) with ESMTP id A561C1E278F +</I>><i> for<<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev at mageia.org</A>>; Mon, 26 Nov 2012 14:23:14 +0100 (CET) +</I>><i> X-Virus-Scanned: amavisd-new at zarb.org +</I>><i> Received: from ryu.zarb.org ([127.0.0.1]) +</I>><i> by localhost (ryu.zarb.org [127.0.0.1]) (amavisd-new, port 10025) +</I>><i> with ESMTP id hlvhyhBEmKEp for<<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev at mageia.org</A>>; +</I>><i> Mon, 26 Nov 2012 14:23:12 +0100 (CET) +</I>><i> Received: from mail-ea0-f172.google.com (mail-ea0-f172.google.com +</I>><i> [209.85.215.172]) +</I>><i> by ryu.zarb.org (Postfix) with ESMTPS id CEE0A1E278E +</I>><i> for<<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev at mageia.org</A>>; Mon, 26 Nov 2012 14:23:12 +0100 (CET) +</I>><i> Received: by mail-ea0-f172.google.com with SMTP id a1so4062012eaa.3 +</I>><i> for<<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev at mageia.org</A>>; Mon, 26 Nov 2012 05:23:12 -0800 (PST) +</I>><i> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; +</I>><i> h=mime-version:date:message-id:subject:from:to:cc:content-type; +</I>><i> bh=x9LKYyYeEEzM4NTAejSc7AkWlLWTrRwEuMPzLZF03fI=; +</I>><i> b=qYOF86OW8M1HIMRIPGHZqpFmPuLceYqih369NQyMVyrEH0aslpMHwA5azM8MLIQrSQ +</I>><i> SwewDwKlRKny6kjmGalJ3/6HU9+gc5K4OqhFy/nCtU2HxvxJ5woZSyW9lBMgZsD3djtc +</I>><i> LBtwbZmxqgErewJ/O8FIfyal+ILEnCkWBAWBjYzQECeu17tBkFr6L8VyfIqUci9C7RTj +</I>><i> +q01fC4Xh5OVw8mU+uJQ+cMK526fx5dTtxnAVrcWVYbxWhmrDOC6F1y9+MvI1jKnKbJp +</I>><i> WgQ1ZgoQiaJ+AFAAF9b8jrM6klPGOwnxidrHCZ21dbUk9GvHLADjfpTfYQca0USzmxFT +</I>><i> gP9A== +</I>><i> MIME-Version: 1.0 +</I>><i> Received: by 10.14.193.136 with SMTP id k8mr45516071een.30.1353936192282; Mon, +</I>><i> 26 Nov 2012 05:23:12 -0800 (PST) +</I>><i> Received: by 10.14.136.200 with HTTP; Mon, 26 Nov 2012 05:23:12 -0800 (PST) +</I>><i> Date: Mon, 26 Nov 2012 21:23:12 +0800 +</I>><i> Message-ID:<CAPoeEY8f0nyVNKqXyEMJZHARP2F2Mc9N=<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">5owgtWDcdqSjmOQ0A at mail.gmail.com</A>> +</I>><i> From: Joseph Wang<<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">joequant at gmail.com</A>> +</I>><i> To: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev at mageia.org</A> +</I>><i> Content-Type: multipart/alternative; boundary=047d7b343e36ca209804cf65d5c4 +</I>><i> Subject: [Mageia-dev] Cinnamon uploaded +</I>><i> X-BeenThere: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev at mageia.org</A> +</I>><i> X-Mailman-Version: 2.1.12 +</I>><i> Precedence: list +</I>><i> Reply-To: Mageia development mailing-list<<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev at mageia.org</A>> +</I>><i> List-Id: Mageia development mailing-list<mageia-dev.mageia.org> +</I>><i> List-Unsubscribe:<<A HREF="https://www.mageia.org/mailman/options/mageia-dev">https://www.mageia.org/mailman/options/mageia-dev</A>>, +</I>><i> <mailto:<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev-request at mageia.org</A>?subject=unsubscribe> +</I>><i> List-Archive:</pipermail/mageia-dev> +</I>><i> List-Post:<mailto:<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev at mageia.org</A>> +</I>><i> List-Help:<mailto:<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev-request at mageia.org</A>?subject=help> +</I>><i> List-Subscribe:<<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">https://www.mageia.org/mailman/listinfo/mageia-dev</A>>, +</I>><i> <mailto:<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev-request at mageia.org</A>?subject=subscribe> +</I>><i> Sender: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev-bounces at mageia.org</A> +</I>><i> Errors-To: <A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia-dev-bounces at mageia.org</A> +</I>><i> +</I>><i> --047d7b343e36ca209804cf65d5c4 +</I>><i> Content-Type: text/plain; charset=ISO-8859-1 +</I>><i> +</I>><i> Hi all, +</I>><i> +</I>><i> I've uploaded the packages needed to get cinnamon working with Mageia. +</I>><i> These include +</I>><i> +</I>><i> cinnamon +</I>><i> nemo +</I>><i> muffin +</I>><i> task-cinnamon +</I>><i> +</I>><i> I don't have submission privileges so I'll need someone to review the +</I>><i> packages and then kick +</I>><i> off the build. +</I>><i> +</I>><i> It's a lot nicer than gnome3. I'm in the process of trying to figure out +</I>><i> how to package some +</I>><i> extra themes and applets. +</I> +Please we have already spoken about all this. We will not have cinnamon +or anything related to this in Mageia. + +We will then remove it. + + +><i> +</I>><i> --047d7b343e36ca209804cf65d5c4 +</I>><i> Content-Type: text/html; charset=ISO-8859-1 +</I>><i> Content-Transfer-Encoding: quoted-printable +</I>><i> +</I>><i> Hi all,<br><br>I&#39;ve uploaded the packages needed to get cinnamon workin= +</I>><i> g with Mageia.=A0 These include<br><br>cinnamon<br>nemo<br>muffin<br>task-c= +</I>><i> innamon<br><br>I don&#39;t have submission privileges so I&#39;ll need some= +</I>><i> one to review the packages and then kick<br> +</I>><i> off the build.<br><br>It&#39;s a lot nicer than gnome3.=A0=A0 I&#39;m in th= +</I>><i> e process of trying to figure out how to package some<br>extra themes and a= +</I>><i> pplets.<br> +</I>><i> +</I>><i> --047d7b343e36ca209804cf65d5c4-- +</I> + +-- +Anne +<A HREF="http://mageia.org">http://mageia.org</A> +</PRE> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<!--endarticle--> + <HR> + <P><UL> + <!--threads--> + <LI>Previous message: <A HREF="020286.html">[Mageia-dev] Cinnamon uploaded +</A></li> + <LI>Next message: <A HREF="020285.html">[Mageia-dev] Cinnamon +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#20284">[ date ]</a> + <a href="thread.html#20284">[ thread ]</a> + <a href="subject.html#20284">[ subject ]</a> + <a href="author.html#20284">[ author ]</a> + </LI> + </UL> + +<hr> +<a href="https://www.mageia.org/mailman/listinfo/mageia-dev">More information about the Mageia-dev +mailing list</a><br> +</body></html> |