1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Mageia-dev] Why is AHCI statically compiled into kernel?
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20Why%20is%20AHCI%20statically%20compiled%20into%20kernel%3F&In-Reply-To=%3CCA%2BCX%2Bbi7pg5sHiky040NhZxC-zyi91FYc_XUDnwKUGZBXzi1BA%40mail.gmail.com%3E">
<META NAME="robots" CONTENT="index,nofollow">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<LINK REL="Previous" HREF="023346.html">
<LINK REL="Next" HREF="023347.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Mageia-dev] Why is AHCI statically compiled into kernel?</H1>
<B>Pascal Terjan</B>
<A HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20Why%20is%20AHCI%20statically%20compiled%20into%20kernel%3F&In-Reply-To=%3CCA%2BCX%2Bbi7pg5sHiky040NhZxC-zyi91FYc_XUDnwKUGZBXzi1BA%40mail.gmail.com%3E"
TITLE="[Mageia-dev] Why is AHCI statically compiled into kernel?">pterjan at gmail.com
</A><BR>
<I>Thu Mar 7 13:10:26 CET 2013</I>
<P><UL>
<LI>Previous message: <A HREF="023346.html">[Mageia-dev] Why is AHCI statically compiled into kernel?
</A></li>
<LI>Next message: <A HREF="023347.html">[Mageia-dev] Why is AHCI statically compiled into kernel?
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#23348">[ date ]</a>
<a href="thread.html#23348">[ thread ]</a>
<a href="subject.html#23348">[ subject ]</a>
<a href="author.html#23348">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>On Thu, Mar 7, 2013 at 10:04 AM, Anne Wilson <<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">annew at kde.org</A>> wrote:
><i> -----BEGIN PGP SIGNED MESSAGE-----
</I>><i> Hash: SHA1
</I>><i>
</I>><i> On 07/03/13 09:55, jpbfree wrote:
</I>><i> > Le 07/03/2013 10:27, Anne Wilson a écrit : On 07/03/13 04:38, R
</I>><i> > James wrote:
</I>><i> >>>> On Wed, Mar 6, 2013 at 1:37 PM, AL13N <<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">alien at rmail.be</A>
</I>><i> >>>> <mailto:<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">alien at rmail.be</A>>> wrote:
</I>><i> >>>>
</I>><i> >>>>> While I appreciate the intention, from a user PoV, those
</I>><i> >>>>> UUIDs mean b***** all. It would be really nice if, when
</I>><i> >>>>> they are first named, it was possible to allocate a
</I>><i> >>>>> "nickname" for want of a better term.
</I>><i> >>>> if you use it, filesystems also have label functionalities,
</I>><i> >>>> which iinm are shown in dolphin.
</I>><i> >>>>
</I>><i> >>>>
</I>><i> >>>> Yeah, I'm not a big fan of UUIDs either so I tend to use
</I>><i> >>>> labels instead. I always partition and format using
</I>><i> >>>> command-line tools in the Rescue System. If you do that, you
</I>><i> >>>> can add the labels yourself. For example:
</I>><i> >>>>
</I>><i> >>>> # mkfs.ext4 -m 1 -L mgaroot /dev/sda1 # mkswap -L swap
</I>><i> >>>> /dev/sda2 # mkfs.ext4 -m 0 -L home /dev/sda3
</I>><i> >>>>
</I>><i> >>>> The -m parameters above specifies the percentage reserved for
</I>><i> >>>> the superuser. the -L parameters are the filesystem labels.
</I>><i> >>>> After that, reboot to the installer and choose Custom
</I>><i> >>>> Partitioning, assign your pre-existing partitions and be sure
</I>><i> >>>> _untick_ the [ ] Format boxes then continue installing as
</I>><i> >>>> usual.
</I>><i> >>>>
</I>><i> >>>> After the installation, you can edit /boot/grub/menu.lst
</I>><i> >>>> replacing each UUID=<blahblahblah> with LABEL=<label>. For
</I>><i> >>>> example:
</I>><i> >>>>
</I>><i> >>>> root=LABEL=mgaroot (and) resume=LABEL=swap
</I>><i> >>>>
</I>><i> >>>> Similarly in /etc/fstab, you can have entries like:
</I>><i> >>>>
</I>><i> >>>> LABEL=mgaroot / ext4 relatime 1 1 LABEL=swap swap
</I>><i> >>>> swap defaults 0 0
</I>><i> >>>>
</I>><i> >>>> So the 'nickname' feature you request is available with a
</I>><i> >>>> little pre-install preparation and post-install config file
</I>><i> >>>> editing.
</I>><i> >>>>
</I>><i> >>>> Hope this helps -- RJ
</I>><i> >>>>
</I>><i> > Thanks. It will help a lot for my own use. However, that really
</I>><i> > needs to be included in the gui disk partitioning, so that people
</I>><i> > can find and use it. I'm fairly sure there is no way to do that at
</I>><i> > present.
</I>><i> >
</I>><i> > Anne
</I>><i> >>
</I>><i> > hum.. when in disk-patitioning on mcc if you toggle to expert mode
</I>><i> > therre is a "label" menu (have not tested it though, so don't know
</I>><i> > if it goes up to writing the right stanza in fstab).
</I>><i> >
</I>><i> >
</I>><i> Really? I do normally enable Expert mode, and I've never noticed
</I>><i> that! Next time I do an install I'll definitely look for it.
</I>
It used to work fine at least :)
I remember making some small changes to diskdrake 4 years ago like
displaying the label in partition info even in non expert mode and had been
using labels for many years through diskdrake
I think there is a display bug when people have UTF-8 in the label
-------------- next part --------------
An HTML attachment was scrubbed...
URL: </pipermail/mageia-dev/attachments/20130307/df5286b6/attachment.html>
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="023346.html">[Mageia-dev] Why is AHCI statically compiled into kernel?
</A></li>
<LI>Next message: <A HREF="023347.html">[Mageia-dev] Why is AHCI statically compiled into kernel?
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#23348">[ date ]</a>
<a href="thread.html#23348">[ thread ]</a>
<a href="subject.html#23348">[ subject ]</a>
<a href="author.html#23348">[ 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>
|