summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-discuss/2012-August/008424.html
blob: b1bd7456a11eda9248aca50145d5d96a01d8d4d2 (plain)
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
 <HEAD>
   <TITLE> [Mageia-discuss] Mageia 2 Wireless LAN (Wifi) Connection Keeps Getting Disconnected
   </TITLE>
   <LINK REL="Index" HREF="index.html" >
   <LINK REL="made" HREF="mailto:mageia-discuss%40mageia.org?Subject=Re%3A%20%5BMageia-discuss%5D%20Mageia%202%20Wireless%20LAN%20%28Wifi%29%20Connection%20Keeps%0A%20Getting%20Disconnected&In-Reply-To=%3CCAJWAV%2BGr5Q%2BSH%2B0LPP8MTFBK2pnVXKMu%3DnJGryEE0K45NMcVbQ%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="008423.html">
   <LINK REL="Next"  HREF="008427.html">
 </HEAD>
 <BODY BGCOLOR="#ffffff">
   <H1>[Mageia-discuss] Mageia 2 Wireless LAN (Wifi) Connection Keeps Getting Disconnected</H1>
    <B>RICHARD WALKER</B> 
    <A HREF="mailto:mageia-discuss%40mageia.org?Subject=Re%3A%20%5BMageia-discuss%5D%20Mageia%202%20Wireless%20LAN%20%28Wifi%29%20Connection%20Keeps%0A%20Getting%20Disconnected&In-Reply-To=%3CCAJWAV%2BGr5Q%2BSH%2B0LPP8MTFBK2pnVXKMu%3DnJGryEE0K45NMcVbQ%40mail.gmail.com%3E"
       TITLE="[Mageia-discuss] Mageia 2 Wireless LAN (Wifi) Connection Keeps Getting Disconnected">richard.j.walker at ntlworld.com
       </A><BR>
    <I>Fri Aug 10 10:58:45 CEST 2012</I>
    <P><UL>
        <LI>Previous message: <A HREF="008423.html">[Mageia-discuss] Mageia 2 Wireless LAN (Wifi) Connection Keeps	Getting Disconnected
</A></li>
        <LI>Next message: <A HREF="008427.html">[Mageia-discuss] Randomised game position (was: Mageia 2 Wireless	LAN (Wifi) Connection Keeps Getting Disconnected)
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#8424">[ date ]</a>
              <a href="thread.html#8424">[ thread ]</a>
              <a href="subject.html#8424">[ subject ]</a>
              <a href="author.html#8424">[ author ]</a>
         </LI>
       </UL>
    <HR>  
<!--beginarticle-->
<PRE>Hi  Shlomi,

I have another solution - works for me - but not necessarily
recommended for the world. I use Mandriva 2008.1 on my laptop. Never
had much in the way of keeping that connected. I occasionally have to
pop the pcmcia wifi to get it to connect first time, but it usually
(90% of the time) stays connected around the house.

In contrast, I built a Mageia 2 Dell Inspiron laptop a few weeks ago
and it is the devil's own job to keep connected and re-connect after
it drops. Range to wifi gateway? I tested if at around 4feet - often
drops connection after only a few hours or minutes (depending on ...
temperature? Humidity? Day of the week?).

To change the subject from a problem which possibly has a solution to
one which (so far as I can tell) hasn't; I see you have had an
interest in computer games of the timewasting solo variety; can I
interest you in a puzzle which has troubled me for decades?

Do you know those little plastic squares with 24 alphabet tiles in a
5x5 grid? The idea is to push the tiles around until you have them in
alphabetic order left to right, top to bottom, with an empty square in
the bottom right corner.

Back in the mid-eighties I wrote a version of this game for my
Sinclair QL. I stored the tiles in a one-dimension array  where they
were initially shuffled.

I discovered, after much trial and error, that the chances of being
able to solve the puzzle after shuffling is almost exactly 1 in 2. The
problem is that 50% of shuffles results in an order where, by the
rules of tile movement, two adjacent tiles must be exchanged - and
that is not possible.

Any ideas how to test the shuffled result to determine if such a
transposition exists _without_ solving the game?

Just a thought.

Richard

On 10/08/2012, Shlomi Fish &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-discuss">shlomif at shlomifish.org</A>&gt; wrote:
&gt;<i> Hi all,
</I>&gt;<i>
</I>&gt;<i> my Mageia 2 Wireless LAN (Wifi) Connection keeps getting disconnected. I
</I>&gt;<i> tried running this script as root:
</I>&gt;<i>
</I>&gt;<i> &lt;&lt;&lt;&lt;
</I>&gt;<i> #!/bin/bash
</I>&gt;<i> IP=&quot;10.0.0.138&quot;
</I>&gt;<i> # IP=&quot;192.168.1.1&quot;
</I>&gt;<i> while true ; do
</I>&gt;<i> 	if ! ping -c 4 &quot;$IP&quot; ; then
</I>&gt;<i> 		service network restart
</I>&gt;<i> 		# /etc/init.d/networkmanager restart
</I>&gt;<i> 		sleep 10
</I>&gt;<i> 	fi
</I>&gt;<i> 	sleep 5
</I>&gt;<i> done
</I>&gt;&gt;&gt;&gt;&gt;<i>
</I>&gt;<i>
</I>&gt;<i> It helps a lot, but sometimes one of the programs gets wedged as well,
</I>&gt;<i> and I need to run &quot;pkill -9 ifplugd&quot; as well. Is there any way to tell
</I>&gt;<i> NetworkManager, netapplet, or whatever the flavour of the day is to
</I>&gt;<i> start the connection again promptly after a disconnect?
</I>&gt;<i>
</I>&gt;<i> My laptop's specs are:
</I>&gt;<i>
</I>&gt;<i> &lt;&lt;&lt;&lt;
</I>&gt;<i> I also have an Acer Aspire 5738DZG laptop with the following specs:
</I>&gt;<i>
</I>&gt;<i>     Intel Pentium(R) Dual-Core CPU T4300 @ 2.10GHz. (x86-64).
</I>&gt;<i>     ATI Mobility Radeon&#8482; HD 4570 (r700)
</I>&gt;<i>     15.6&quot; 3D HD LCD Screen.
</I>&gt;<i>     3 GB Memory
</I>&gt;<i>     320 GB Hard Disk Drive.
</I>&gt;<i>     &#8220;DVD Super Multi DL drive&#8221;
</I>&gt;<i>     Acer Nplify&#8482; 802.11b/g/n.
</I>&gt;&gt;&gt;&gt;&gt;<i>
</I>&gt;<i>
</I>&gt;<i> I'd rather not have to baby sit it all the time.
</I>&gt;<i>
</I>&gt;<i> Regards,
</I>&gt;<i>
</I>&gt;<i> 	Shlomi Fish
</I>&gt;<i>
</I>&gt;<i> --
</I>&gt;<i> -----------------------------------------------------------------
</I>&gt;<i> Shlomi Fish       <A HREF="http://www.shlomifish.org/">http://www.shlomifish.org/</A>
</I>&gt;<i> &quot;Humanity&quot; - Parody of Modern Life - <A HREF="http://shlom.in/humanity">http://shlom.in/humanity</A>
</I>&gt;<i>
</I>&gt;<i> Chuck Norris was never a newbie! He will kill anyone who implies otherwise.
</I>&gt;<i> In
</I>&gt;<i> a very not newbie-like manner.
</I>&gt;<i>
</I>&gt;<i> Please reply to list if it's a mailing list post - <A HREF="http://shlom.in/reply">http://shlom.in/reply</A> .
</I>&gt;<i>
</I></PRE>

















<!--endarticle-->
    <HR>
    <P><UL>
        <!--threads-->
	<LI>Previous message: <A HREF="008423.html">[Mageia-discuss] Mageia 2 Wireless LAN (Wifi) Connection Keeps	Getting Disconnected
</A></li>
	<LI>Next message: <A HREF="008427.html">[Mageia-discuss] Randomised game position (was: Mageia 2 Wireless	LAN (Wifi) Connection Keeps Getting Disconnected)
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#8424">[ date ]</a>
              <a href="thread.html#8424">[ thread ]</a>
              <a href="subject.html#8424">[ subject ]</a>
              <a href="author.html#8424">[ author ]</a>
         </LI>
       </UL>

<hr>
<a href="https://www.mageia.org/mailman/listinfo/mageia-discuss">More information about the Mageia-discuss
mailing list</a><br>
</body></html>