[arch-general] bbs.archlinux.org is now switched to https only!

2010-07-16 Thread Thomas Bächler
I just performed the switch to https only on bbs! I also adjusted some
internal URLs, so all files will be properly fetched via https directly.
http is redirected automatically. Note that the navbar links on Archweb
and all other sites still point to http, but that is redirected
automatically.

There is a catch:
1) Apache configures SSL per-vhost. That means that even though we have
a wildcard certificate, the browser must support SNI for name-based
vhosts to work. All clients that are not SNI-capable will be redirected
to www instead.
2) wget doesn't like wildcard certificates. That means you need to use
--no-check-certificate with wget.
3) Our certificate is from CACert. AFAIK, this is not included in many
browsers by default. If you use Arch Linux, at least everything that
uses the OpenSSL certificate store and all Mozilla browsers are
CACert-enabled - on other operating systems, our certificate might show
up as untrusted.

Let me know if any of the above (especially 1) cause any problems.



signature.asc
Description: OpenPGP digital signature


Re: [arch-general] [PATCH 33/48] Bashified fscking.

2010-07-16 Thread Thomas Bächler
Am 30.06.2010 23:47, schrieb Victor Lowther:
 ---
  rc.sysinit |   11 +--
  1 files changed, 5 insertions(+), 6 deletions(-)

This is one of those patches with no logic changes and just sh-bash
conversion that should be part of the big one.



signature.asc
Description: OpenPGP digital signature


Re: [arch-general] [PATCH 35/48] find has a builtin delete action. Use it instead of exec'ing rm.

2010-07-16 Thread Thomas Bächler
Am 30.06.2010 23:47, schrieb Victor Lowther:
 ---
  rc.sysinit |2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)
 
 diff --git a/rc.sysinit b/rc.sysinit
 index 319ea60..037a9f2 100755
 --- a/rc.sysinit
 +++ b/rc.sysinit
 @@ -277,7 +277,7 @@ stat_busy Removing Leftover Files
  /bin/rm -f /var/lock/* /dev/null
  /bin/rm -rf /tmp/* /tmp/.* /dev/null
  /bin/rm -f /forcefsck /dev/null
 -(cd /var/run  /usr/bin/find . ! -type d -exec /bin/rm -f -- {} \; )
 +(cd /var/run  /usr/bin/find . \! -type d -delete  )
  : | /var/run/utmp
  /bin/chmod 0664 /var/run/utmp
  # Keep {x,k,g}dm happy with xorg

ACKed.



signature.asc
Description: OpenPGP digital signature


Re: [arch-general] [PATCH 38/48] Bashify locale setting.

2010-07-16 Thread Thomas Bächler
This patch should be split into two:

Am 30.06.2010 23:47, schrieb Victor Lowther:
 diff --git a/rc.sysinit b/rc.sysinit
 index 5842a57..c6ed35f 100755
 --- a/rc.sysinit
 +++ b/rc.sysinit
 @@ -303,12 +303,12 @@ status Updating Module Dependencies /sbin/depmod -A
  : | /etc/profile.d/locale.sh
  /bin/chmod 755 /etc/profile.d/locale.sh
  # Set user defined locale
 -[ -z $LOCALE ]  LOCALE=en_US
 +[[ $LOCALE ]] || LOCALE=en_US
  stat_busy Setting Locale: $LOCALE
  echo export LANG=$LOCALE /etc/profile.d/locale.sh
  stat_done
  
 -if echo $LOCALE | /bin/grep -qi utf ; then
 +if [[ $LOCALE =~ utf|UTF ]]; then
   stat_busy Setting Consoles to UTF-8 mode
   # UTF-8 consoles are default since 2.6.24 kernel
   # this code is needed not only for older kernels,

Simple bashification.

 @@ -318,9 +318,11 @@ if echo $LOCALE | /bin/grep -qi utf ; then
   printf \033%%G  ${i}
   done
   # the $CONSOLE check helps us avoid this when running scripts from cron
 - echo 'if [ $CONSOLE =  -a $TERM = linux -a -t 1 ]; then printf 
 \033%%G; fi' /etc/profile.d/locale.sh
 + cat EOF /etc/profile.d/locale.sh
 +if [ $CONSOLE =  -a $TERM = linux -a -t 1 ]; then printf \033%%G; 
 fi
 +EOF

This has nothing to do with bashification, this is a readability
improvement. Same applies below. Either merge the bashifications into
the big one and apply the readability changes separately, or leave it
like this, but adjust the commit message.

Same applies below.

   stat_done
 - [ -n $KEYMAP ]  status Loading Keyboard Map: $KEYMAP 
 /bin/loadkeys -q -u $KEYMAP
 + [[ $KEYMAP ]]  status Loading Keyboard Map: $KEYMAP /bin/loadkeys 
 -q -u $KEYMAP
  else
   stat_busy Setting Consoles to legacy mode
   # make non-UTF-8 consoles work on 2.6.24 and newer kernels
 @@ -329,9 +331,11 @@ else
   printf \033%%@  ${i}
   done
   # the $CONSOLE check helps us avoid this when running scripts from cron
 - echo 'if [ $CONSOLE =  -a $TERM = linux -a -t 1 ]; then printf 
 \033%%@; fi' /etc/profile.d/locale.sh
 + cat EOF /etc/profile.d/locale.sh
 +if [ $CONSOLE =  -a $TERM = linux -a -t 1 ]; then printf \033%%@; 
 fi
 +EOF
   stat_done
 - [ -n $KEYMAP ]  status Loading Keyboard Map: $KEYMAP 
 /bin/loadkeys -q $KEYMAP
 + [[ $KEYMAP ]]  status Loading Keyboard Map: $KEYMAP /bin/loadkeys 
 -q $KEYMAP
  fi
  
  # Set console font if required




signature.asc
Description: OpenPGP digital signature


Re: [arch-general] [PATCH 39/48] Flatten adding persistent rules.

2010-07-16 Thread Thomas Bächler
Am 30.06.2010 23:47, schrieb Victor Lowther:
 ---
  rc.sysinit |   16 ++--
  1 files changed, 6 insertions(+), 10 deletions(-)
 
 diff --git a/rc.sysinit b/rc.sysinit
 index c6ed35f..ac32fca 100755
 --- a/rc.sysinit
 +++ b/rc.sysinit
 @@ -342,16 +342,12 @@ fi
  set_consolefont
  
  # Adding persistent network/cdrom generated rules
 -if [ -f /dev/.udev/tmp-rules--70-persistent-cd.rules ]; then
 - stat_busy Adding persistent cdrom udev rules
 - /bin/cat /dev/.udev/tmp-rules--70-persistent-cd.rules  
 /etc/udev/rules.d/70-persistent-cd.rules
 - stat_done
 -fi
 -if [ -f /dev/.udev/tmp-rules--70-persistent-net.rules ]; then
 - stat_busy Adding persistent network udev rules
 - /bin/cat /dev/.udev/tmp-rules--70-persistent-net.rules  
 /etc/udev/rules.d/70-persistent-net.rules
 - stat_done
 -fi
 +for f in cd net; do
 +[[ -f /dev/.udev/tmp-rules--70-persistent-$f.rules ]] || continue
 +stat_busy Adding persistent $f udev rules
 +/bin/cat /dev/.udev/tmp-rules--70-persistent-$f.rules  
 /etc/udev/rules.d/70-persistent-$f.rules
 +stat_done
 +done
  
  /bin/dmesg | /var/log/dmesg.log
  

ACKed



signature.asc
Description: OpenPGP digital signature


Re: [arch-general] [PATCH 42/48] Load conf files in a loop instead of one at a time.

2010-07-16 Thread Thomas Bächler
Am 30.06.2010 23:47, schrieb Victor Lowther:
 ---
  network |   11 +++
  1 files changed, 3 insertions(+), 8 deletions(-)
 
 diff --git a/network b/network
 index 977e81e..242acc3 100755
 --- a/network
 +++ b/network
 @@ -3,14 +3,9 @@
  . /etc/rc.conf
  . /etc/rc.d/functions
  
 -# wireless settings
 -[ -f /etc/conf.d/wireless ]  . /etc/conf.d/wireless
 -# ethernet bonding settings
 -[ -f /etc/conf.d/bonding ]  . /etc/conf.d/bonding
 -# bridge settings
 -[ -f /etc/conf.d/bridges ]  . /etc/conf.d/bridges
 -# dhcpcd settings
 -[ -f /etc/conf.d/dhcpcd ]  . /etc/conf.d/dhcpcd
 +for s in wireless bonding bridges dhcpcd; do
 +[[ -f /etc/conf.d/$s ]]  . /etc/conf.d/$s
 +done
  
  ifup()
  {

ACKed.



signature.asc
Description: OpenPGP digital signature


Re: [arch-general] [PATCH 43/48] Add a PKGBUILD for building initscripts-git for testing.

2010-07-16 Thread Thomas Bächler
Am 30.06.2010 23:47, schrieb Victor Lowther:
 This builds straight out of a git checkout.
 ---
  PKGBUILD |   23 +++
  1 files changed, 23 insertions(+), 0 deletions(-)
 
 diff --git a/PKGBUILD b/PKGBUILD
 new file mode 100644
 index 000..79b3403
 --- /dev/null
 +++ b/PKGBUILD
 @@ -0,0 +1,23 @@
 +pkgname=initscripts-git
 +pkgver=$(date +%s)
 +pkgrel=$(git log --pretty=format:%h |head -n 1)
 +pkgdesc=System initialization/bootup scripts
 +arch=('i686' 'x86_64')
 +url=http://www.archlinux.org;
 +license=('GPL')
 +groups=('base')
 +conflicts=('initscripts')
 +provides=('initscripts=')
 +backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown)
 +depends=('glibc' 'bash' 'awk' 'grep' 'coreutils' 'sed' 'udev=139-1'
 + 'net-tools' 'ncurses' 'kbd' 'findutils' 'sysvinit')
 +optdepends=('bridge-utils: Network bridging support'
 +'dhcpcd: DHCP network configuration'
 +'wireless_tools: Wireless networking')
 +source=()
 +sha256sums=()
 +
 +build() {
 +  cd ..
 +  DESTDIR=${pkgdir} ./install.sh
 +}

Not necessary IMO, but nice to have. Should come with a .gitignore patch
that adds '*pkg.tar.*'.



signature.asc
Description: OpenPGP digital signature


[arch-general] [PATCH] gdisk patches

2010-07-16 Thread Mark Pustjens

Hi List,

Below a patch wich fixes two bugs in the gdisk package. They have been 
submitted uptream but not yet been accepted. The first bug fixed is that 
partition attributes are read/stored backwards. The second bug fixed is that 
when changing an undefined attribute no longer junk is displayed.


I'm not sure if this is the right place, but i sent to this list mainly because 
there is no official gpt fdisk list afai could find. Now this patch has a place 
on the net.


Cheers!

Greetings/Groetjes

Mark Pustjens

--
diff --git a/extra/gdisk/PKGBUILD b/extra/gdisk/PKGBUILD
index 0664a57..af9b44e 100644
--- a/extra/gdisk/PKGBUILD
+++ b/extra/gdisk/PKGBUILD
@@ -9,10 +9,12 @@ arch=('i686' 'x86_64')
  url=http://www.rodsbooks.com/gdisk;
  depends=('gcc-libs' 'util-linux-ng' 'popt')
  license=('GPL2')
-source=(http://www.rodsbooks.com/gdisk/gdisk-$pkgver.tgz)
+source=(http://www.rodsbooks.com/gdisk/gdisk-$pkgver.tgz
+   gdisk_attributes.patch)

  build() {
   cd $srcdir/$pkgname-$pkgver
+  patch -p1 -i $srcdir/gdisk_attributes.patch
make
install -D -m755 gdisk $pkgdir/sbin/gdisk
install -D -m755 sgdisk $pkgdir/sbin/sgdisk
@@ -23,4 +25,6 @@ build() {
install -D -m644 README $pkgdir/usr/share/gdisk/README
install -D -m644 NEWS pkgdir/usr/share/gdisk/NEWS
 }
-md5sums=('48740d8de518f79ae9dae7ec58068d05')
+
+md5sums=('48740d8de518f79ae9dae7ec58068d05'
+ '106a4186587ab572f6397ba1702e8d47')
diff --git a/extra/gdisk/gdisk_attributes.patch 
b/extra/gdisk/gdisk_attributes.patch

new file mode 100644
index 000..e03c957
--- /dev/null
+++ b/extra/gdisk/gdisk_attributes.patch
@@ -0,0 +1,29 @@
+diff --git a/attributes.cc b/attributes.cc
+index 527dc87..a7b2afd 100644
+--- a/attributes.cc
 b/attributes.cc
+@@ -26,6 +26,7 @@ Attributes::Attributes(void) {
+// Most bits are undefined, so start by giving them an
+// appropriate name
+for (i = 1; i  NUM_ATR; i++) {
++  temp.str(); // empty stream
+   temp  Undefined bit #  i;
+ atNames[i] = temp.str();
+} // for
+@@ -75,12 +76,12 @@ void Attributes::ChangeAttributes(void) {
+do {
+   response = GetNumber(0, 64, -1, (string) Toggle which attribute field 
(0-63, 64 to exit): );

+   if (response != 64) {
+- bitValue = PowerOf2(uint32_t (NUM_ATR - response - 1)); // Find the 
integer value of the bit

+- if ((bitValue  attributes) == bitValue) { // bit is set
+-attributes -= bitValue; // so unset it
++ bitValue = 1  response;
++ if (bitValue  attributes) { // bit is set
++attributes = ~bitValue; // so unset it
+ 	cout  Have disabled the '  atNames[response]  ' 
attribute.\n;

+  } else { // bit is not set
+-attributes += bitValue; // so set it
++attributes |= bitValue; // so set it
+ cout  Have enabled the '  atNames[response]  ' 
attribute.\n;

+  } // if/else
+   } // if


Re: [arch-general] Tasks for newbie at online bug squashing (during Archcon)?

2010-07-16 Thread Mathias Huber

Hi,


I've seen there will be an online bug squashing with Archers worldwide
during Archcon on July 22 and 23
http://bbs.archlinux.org/viewtopic.php?id=83844.

I've set some time apart to join the fun. However, I am an Arch newbie,
though long standing Linux user. What will there be for me to do? Can you
find me some trivial tasks?
[...]


Have you taken a look at the following wiki?
http://wiki.archlinux.org/index.php/Getting_Involved


Yes I have, but it isn't very specific as far as Bug Days are concerned


If you truly don't possess any coding skills (web included), then I
think helping out in the wiki would be most appreciated.


I have some web coding skills (HTML, CSS, PHP, JS), which have become a 
bit rusty -- anyone remember the dot com years ;-)


Well, let's see. Any suggestions will be appreciated, the more concrete 
the better.


Cheerio,
Mathias




Re: [arch-general] [PATCH] gdisk patches

2010-07-16 Thread Ionuț Bîru

On 07/16/2010 10:11 PM, Mark Pustjens wrote:

Hi List,

Below a patch wich fixes two bugs in the gdisk package. They have been
submitted uptream but not yet been accepted.


then we don't need them if upstream did that

--
Ionuț


Re: [arch-general] Tasks for newbie at online bug squashing (during Archcon)?

2010-07-16 Thread Thomas Dziedzic
On Fri, Jul 16, 2010 at 2:16 PM, Mathias Huber hu...@mathiashuber.de wrote:
 Hi,

 I've seen there will be an online bug squashing with Archers worldwide
 during Archcon on July 22 and 23
 http://bbs.archlinux.org/viewtopic.php?id=83844.

 I've set some time apart to join the fun. However, I am an Arch newbie,
 though long standing Linux user. What will there be for me to do? Can you
 find me some trivial tasks?
 [...]

 Have you taken a look at the following wiki?
 http://wiki.archlinux.org/index.php/Getting_Involved

 Yes I have, but it isn't very specific as far as Bug Days are concerned

 If you truly don't possess any coding skills (web included), then I
 think helping out in the wiki would be most appreciated.

 I have some web coding skills (HTML, CSS, PHP, JS), which have become a bit
 rusty -- anyone remember the dot com years ;-)

 Well, let's see. Any suggestions will be appreciated, the more concrete the
 better.

 Cheerio,
 Mathias



Now that you mentioned web coding... my ideas have just opened up.

Here are some bugs dealing with web stuff:
http://bugs.archlinux.org/index.php?string=webproject=1search_name=type[]=sev[]=pri[]=due[]=reported[]=cat[]=status[]=openpercent[]=opened=dev=closed=duedatefrom=duedateto=changedfrom=changedto=openedfrom=openedto=closedfrom=closedto=do=index

also, don't forget that http://bugs.archlinux.org/index.php?project=2
(aur) is full of web related bugs.

For something more concrete, my 2 pet peeves for the arch website are:
1. inconsistent headers between the new headers and the bugs/aur header
2. websvn is b0rked and needs some repairs.

If you can fix those, that would be awesome :)
Btw, you can do whatever you think will improve archlinux.

Hope this helps.

Cheers!


Re: [arch-general] [PATCH] gdisk patches

2010-07-16 Thread Mark Pustjens

On Fri, 16 Jul 2010, Ionuț Bîru wrote:


On 07/16/2010 10:11 PM, Mark Pustjens wrote:

 Hi List,

 Below a patch wich fixes two bugs in the gdisk package. They have been
 submitted uptream but not yet been accepted.


then we don't need them if upstream did that


They didn't do anything :) Submitted only a few hours ago.



--
Ionuț




Greetings/Groetjes

Mark Pustjens

--
He microwaved himself something called a Pour-On Genuine Creole Lasagne,
which said it served four portions. It did if you were dwarfs.
  (Only You Can Save Mankind)

Re: [arch-general] [PATCH] gdisk patches

2010-07-16 Thread Ionuț Bîru

On 07/17/2010 01:23 AM, Mark Pustjens wrote:

On Fri, 16 Jul 2010, Ionuț Bîru wrote:


On 07/16/2010 10:11 PM, Mark Pustjens wrote:

Hi List,

Below a patch wich fixes two bugs in the gdisk package. They have been
submitted uptream but not yet been accepted.


then we don't need them if upstream did that


They didn't do anything :) Submitted only a few hours ago.




post a link to the bug report or mailing list so we can follow the progress

--
Ionuț


Re: [arch-general] [arch-dev-public] Anyone using lilo?

2010-07-16 Thread Eric Bélanger
On Thu, Jul 15, 2010 at 7:46 PM, Dale Blount d...@archlinux.org wrote:
 On Thu, 2010-07-15 at 15:29 -0400, Eric Bélanger wrote:
 Hi,

 Roman has flagged my lilo packages.  Lilo developpement is now active
 and lilo 23.0 was released.  Unfortunately, my only system using lilo
 is no longer working.  Is there anyone else using lilo? Ideally, it
 would be a dev who would take over the package or, at least, a user
 willing to work with me in testing the new packgae before it hits the
 testing repo.

 I'm forced to use it on a single HP server where grub just flat out
 refuses to work.  I could be convinced to help with testing (as long as
 it's just verifying that it's working and not several reboots).

 Dale



If I understodd correctly, you can only reboot that server once.  Is
that correct?  I'll wait to see if I can't get more testers.  I'll
forward this thread on arch-general ML.


[arch-general] What broke ctrl+c ??

2010-07-16 Thread David C. Rankin

Guys,

	I have a strange problem. ctrl+c is completely broken on my system. It won't 
cancel Jack Schit. It is the strangest thing I've seen. I apologize if there is 
some archain Arch notice on this I apologize, I've missed it.


	This is easy to test. Just to 'ping anywhere' and then try and kill it with 
ctrl+c. I have to open another terminal and either 'killall ping' or kill the 
pid to get the thing to stop. Same thing happens if I mistype a cli and need to 
cancel the execution (like if I mistype a ' instead of a  and the script 
continues on a new line)


What's up with this?

--
David C. Rankin, J.D.,P.E.
Rankin Law Firm, PLLC
510 Ochiltree Street
Nacogdoches, Texas 75961
Telephone: (936) 715-9333
Facsimile: (936) 715-9339
www.rankinlawfirm.com


Re: [arch-general] What broke ctrl+c ??

2010-07-16 Thread Thomas Dziedzic
On Fri, Jul 16, 2010 at 9:52 PM, David C. Rankin
drankina...@suddenlinkmail.com wrote:
 Guys,

        I have a strange problem. ctrl+c is completely broken on my system.
 It won't cancel Jack Schit. It is the strangest thing I've seen. I apologize
 if there is some archain Arch notice on this I apologize, I've missed it.

        This is easy to test. Just to 'ping anywhere' and then try and kill
 it with ctrl+c. I have to open another terminal and either 'killall ping' or
 kill the pid to get the thing to stop. Same thing happens if I mistype a cli
 and need to cancel the execution (like if I mistype a ' instead of a  and
 the script continues on a new line)

        What's up with this?


Works for me.

What packages did you upgrade and what did you do recently?


Re: [arch-general] Tracking down ATI/Compiz Bug in 2.6.34 kernels (looks like gpu init in 2.6.34)

2010-07-16 Thread David C. Rankin

On 07/15/2010 02:15 PM, Martín Cigorraga wrote:

Hi Dave,

as usual reader of Arch's lists I've been following your issue and while I
don't have sufficient knowledge nor enough skill with Arch to help you I
second your thought the issue must reside somewhere kernel/KMS/catalyst
module:
currently I'm running a 64bit Arch with a ATI Radeon 5750 HD (1gb) graphic
card with catalyst 10.6.5 from [Catalyst] repo without any much trouble
except composite effect. With previous catalyst-test 10.4.444 everything
worked fine out-of-the-box but now composite is disable on every boot so I
have to manually enable it on log-in by pressing twice Shift+Alt+F12. I have
had to drop old catalyst because it isn't compatible with new Xorg and
recent kernel upgrade and system upgrades but I never experienced these
issues with that package.

Hope this help you somewhat!
Martín



Thanks for your help. Yes, that's what frustrates me as well. I can get a feel 
for where the problem is, but I don't have the skills to wade into the 
kernel-boot and module initialization area of Arch to try and fix it. I'll just 
open a bug and we will go from there.


--
David C. Rankin, J.D.,P.E.
Rankin Law Firm, PLLC
510 Ochiltree Street
Nacogdoches, Texas 75961
Telephone: (936) 715-9333
Facsimile: (936) 715-9339
www.rankinlawfirm.com


Re: [arch-general] What broke ctrl+c ??

2010-07-16 Thread Corey Johns
On Fri, Jul 16, 2010 at 10:58 PM, Thomas Dziedzic gos...@gmail.com wrote:

 On Fri, Jul 16, 2010 at 9:52 PM, David C. Rankin
 drankina...@suddenlinkmail.com wrote:
  Guys,
 
 I have a strange problem. ctrl+c is completely broken on my
 system.
  It won't cancel Jack Schit. It is the strangest thing I've seen. I
 apologize
  if there is some archain Arch notice on this I apologize, I've missed it.
 
 This is easy to test. Just to 'ping anywhere' and then try and
 kill
  it with ctrl+c. I have to open another terminal and either 'killall ping'
 or
  kill the pid to get the thing to stop. Same thing happens if I mistype a
 cli
  and need to cancel the execution (like if I mistype a ' instead of a 
 and
  the script continues on a new line)
 
 What's up with this?
 
 
 Works for me.

 What packages did you upgrade and what did you do recently?


Try a new keyboard to help isolate the problem.


Re: [arch-general] What broke ctrl+c ??

2010-07-16 Thread David C. Rankin

On 07/17/2010 12:01 AM, Corey Johns wrote:

On Fri, Jul 16, 2010 at 10:58 PM, Thomas Dziedzicgos...@gmail.com  wrote:


On Fri, Jul 16, 2010 at 9:52 PM, David C. Rankin
drankina...@suddenlinkmail.com  wrote:

Guys,

I have a strange problem. ctrl+c is completely broken on my

system.

It won't cancel Jack Schit. It is the strangest thing I've seen. I

apologize

if there is some archain Arch notice on this I apologize, I've missed it.

This is easy to test. Just to 'ping anywhere' and then try and

kill

it with ctrl+c. I have to open another terminal and either 'killall ping'

or

kill the pid to get the thing to stop. Same thing happens if I mistype a

cli

and need to cancel the execution (like if I mistype a ' instead of a 

and

the script continues on a new line)

What's up with this?



Works for me.

What packages did you upgrade and what did you do recently?



Try a new keyboard to help isolate the problem.



I would, but this is a laptop :p

The list of packages updated recently are:

[2010-07-14 17:29] Running 'pacman -Sy wesnoth'
[2010-07-14 17:29] synchronizing package lists
[2010-07-14 17:30] Note:
[2010-07-14 17:30] == If you experience sound problems try setting your 
SDL_AUDIODRIVER environment variable to dma

[2010-07-14 17:30] == eg. export SDL_AUDIODRIVER=dma ; wesnoth
[2010-07-14 17:30] == If dma doesn't work,other options are: 
dsp,alsa,artsc,esd,nas try to find the right output.

[2010-07-14 17:30] installed wesnoth (1.8.2-2)
[2010-07-15 04:32] Running 'pacman -Syu'
[2010-07-15 04:32] synchronizing package lists
[2010-07-15 04:33] starting full system upgrade
[2010-07-15 04:47] removed obexd (0.28-1)
[2010-07-15 04:47] upgraded bluez (4.67-1 - 4.69-1)
[2010-07-15 04:47] upgraded clutter (1.2.8-1 - 1.2.10-1)
[2010-07-15 04:47] upgraded udev (159-1 - 160-1)
[2010-07-15 04:47] upgraded device-mapper (2.02.69-1 - 2.02.70-1)
[2010-07-15 04:47] upgraded eventlog (0.2.9-1 - 0.2.12-1)
[2010-07-15 04:47] upgraded fbpanel (6.0-1 - 6.1-2)
[2010-07-15 04:47] upgraded glitz (0.5.6-1 - 0.5.6-2)
[2010-07-15 04:47] upgraded gparted (0.6.0-1 - 0.6.1-1)
[2010-07-15 04:47] upgraded gvfs (1.6.2-1 - 1.6.3-1)
[2010-07-15 04:47] upgraded gvfs-obexftp (1.6.2-1 - 1.6.3-1)
[2010-07-15 04:47] upgraded initscripts (2010.06-2 - 2010.07-1)
[2010-07-15 04:47] upgraded linux-firmware (20100606-1 - 20100623-2)
[2010-07-15 04:47] upgraded mkinitcpio (0.6.6-1 - 0.6.7-1)
[2010-07-15 04:47]  Updating module dependencies. Please wait ...
[2010-07-15 04:47]  MKINITCPIO SETUP
[2010-07-15 04:47]  
[2010-07-15 04:47]  If you use LVM2, Encrypted root or software RAID,
[2010-07-15 04:47]  Ensure you enable support in /etc/mkinitcpio.conf .
[2010-07-15 04:47]  More information about mkinitcpio setup can be found 
here:
[2010-07-15 04:47]  http://wiki.archlinux.org/index.php/Mkinitcpio
[2010-07-15 04:47]
[2010-07-15 04:47]  Generating initial ramdisk, using mkinitcpio.  Please 
wait...
[2010-07-15 04:47] == Building image default
[2010-07-15 04:47] == Running command: /sbin/mkinitcpio -k 2.6.32-lts -c 
/etc/mkinitcpio.conf -g /boot/kernel26-lts.img

[2010-07-15 04:47] :: Begin build
[2010-07-15 04:47] :: Parsing hook [base]
[2010-07-15 04:47] :: Parsing hook [udev]
[2010-07-15 04:47] :: Parsing hook [autodetect]
[2010-07-15 04:47] :: Parsing hook [pata]
[2010-07-15 04:47] :: Parsing hook [scsi]
[2010-07-15 04:47] :: Parsing hook [sata]
[2010-07-15 04:47] :: Parsing hook [filesystems]
[2010-07-15 04:47] :: Generating module dependencies
[2010-07-15 04:47] :: Generating image '/boot/kernel26-lts.img'...SUCCESS
[2010-07-15 04:47] == SUCCESS
[2010-07-15 04:47] == Building image fallback
[2010-07-15 04:47] == Running command: /sbin/mkinitcpio -k 2.6.32-lts -c 
/etc/mkinitcpio.conf -g /boot/kernel26-lts-fallback.img -S autodetect

[2010-07-15 04:47] :: Begin build
[2010-07-15 04:47] :: Parsing hook [base]
[2010-07-15 04:48] :: Parsing hook [udev]
[2010-07-15 04:48] :: Parsing hook [pata]
[2010-07-15 04:48] :: Parsing hook [scsi]
[2010-07-15 04:48] :: Parsing hook [sata]
[2010-07-15 04:48] :: Parsing hook [filesystems]
[2010-07-15 04:48] :: Generating module dependencies
[2010-07-15 04:48] :: Generating image 
'/boot/kernel26-lts-fallback.img'...SUCCESS
[2010-07-15 04:48] == SUCCESS
[2010-07-15 04:48] upgraded kernel26-lts (2.6.32.15-1 - 2.6.32.16-1)
[2010-07-15 04:49] upgraded kernel26-lts-headers (2.6.32.15-1 - 2.6.32.16-1)
[2010-07-15 04:49] upgraded libssh (0.4.4-1 - 0.4.5-1)
[2010-07-15 04:49] upgraded libwebkit (1.2.1-1 - 1.2.2-1)
[2010-07-15 04:49] when you use a non-reparenting window manager
[2010-07-15 04:49] set _JAVA_AWT_WM_NONREPARENTING=1 in
[2010-07-15 04:49] /etc/profile.d/openjdk6.sh
[2010-07-15 04:49] upgraded openjdk6 (6.b18_1.8-1 - 6.b18_0.hg_20100715-1)
[2010-07-15 04:49] upgraded lucene (2.9.2-1 - 2.9.3-1)
[2010-07-15 04:49] upgraded lvm2 (2.02.69-1 - 2.02.70-1)
[2010-07-15 04:49] upgraded mkvtoolnix (4.1.1-1 - 4.1.1-2)
[2010-07-15 04:49] installed obexd-client (0.29-2)

Re: [arch-general] What broke ctrl+c ??

2010-07-16 Thread Thomas Dziedzic
On Sat, Jul 17, 2010 at 12:49 AM, David C. Rankin
drankina...@suddenlinkmail.com wrote:
 On 07/17/2010 12:01 AM, Corey Johns wrote:

 On Fri, Jul 16, 2010 at 10:58 PM, Thomas Dziedzicgos...@gmail.com
  wrote:

 On Fri, Jul 16, 2010 at 9:52 PM, David C. Rankin
 drankina...@suddenlinkmail.com  wrote:

 Guys,

        I have a strange problem. ctrl+c is completely broken on my

 system.

 It won't cancel Jack Schit. It is the strangest thing I've seen. I

 apologize

 if there is some archain Arch notice on this I apologize, I've missed
 it.

        This is easy to test. Just to 'ping anywhere' and then try and

 kill

 it with ctrl+c. I have to open another terminal and either 'killall
 ping'

 or

 kill the pid to get the thing to stop. Same thing happens if I mistype a

 cli

 and need to cancel the execution (like if I mistype a ' instead of a 

 and

 the script continues on a new line)

        What's up with this?


 Works for me.

 What packages did you upgrade and what did you do recently?


 Try a new keyboard to help isolate the problem.


 I would, but this is a laptop :p

 The list of packages updated recently are:

 [2010-07-14 17:29] Running 'pacman -Sy wesnoth'
 [2010-07-14 17:29] synchronizing package lists
 [2010-07-14 17:30] Note:
 [2010-07-14 17:30] == If you experience sound problems try setting your
 SDL_AUDIODRIVER environment variable to dma
 [2010-07-14 17:30] == eg. export SDL_AUDIODRIVER=dma ; wesnoth
 [2010-07-14 17:30] == If dma doesn't work,other options are:
 dsp,alsa,artsc,esd,nas try to find the right output.
 [2010-07-14 17:30] installed wesnoth (1.8.2-2)
 [2010-07-15 04:32] Running 'pacman -Syu'
 [2010-07-15 04:32] synchronizing package lists
 [2010-07-15 04:33] starting full system upgrade
 [2010-07-15 04:47] removed obexd (0.28-1)
 [2010-07-15 04:47] upgraded bluez (4.67-1 - 4.69-1)
 [2010-07-15 04:47] upgraded clutter (1.2.8-1 - 1.2.10-1)
 [2010-07-15 04:47] upgraded udev (159-1 - 160-1)
 [2010-07-15 04:47] upgraded device-mapper (2.02.69-1 - 2.02.70-1)
 [2010-07-15 04:47] upgraded eventlog (0.2.9-1 - 0.2.12-1)
 [2010-07-15 04:47] upgraded fbpanel (6.0-1 - 6.1-2)
 [2010-07-15 04:47] upgraded glitz (0.5.6-1 - 0.5.6-2)
 [2010-07-15 04:47] upgraded gparted (0.6.0-1 - 0.6.1-1)
 [2010-07-15 04:47] upgraded gvfs (1.6.2-1 - 1.6.3-1)
 [2010-07-15 04:47] upgraded gvfs-obexftp (1.6.2-1 - 1.6.3-1)
 [2010-07-15 04:47] upgraded initscripts (2010.06-2 - 2010.07-1)
 [2010-07-15 04:47] upgraded linux-firmware (20100606-1 - 20100623-2)
 [2010-07-15 04:47] upgraded mkinitcpio (0.6.6-1 - 0.6.7-1)
 [2010-07-15 04:47]  Updating module dependencies. Please wait ...
 [2010-07-15 04:47]  MKINITCPIO SETUP
 [2010-07-15 04:47]  
 [2010-07-15 04:47]  If you use LVM2, Encrypted root or software RAID,
 [2010-07-15 04:47]  Ensure you enable support in /etc/mkinitcpio.conf .
 [2010-07-15 04:47]  More information about mkinitcpio setup can be found
 here:
 [2010-07-15 04:47]  http://wiki.archlinux.org/index.php/Mkinitcpio
 [2010-07-15 04:47]
 [2010-07-15 04:47]  Generating initial ramdisk, using mkinitcpio.  Please
 wait...
 [2010-07-15 04:47] == Building image default
 [2010-07-15 04:47] == Running command: /sbin/mkinitcpio -k 2.6.32-lts -c
 /etc/mkinitcpio.conf -g /boot/kernel26-lts.img
 [2010-07-15 04:47] :: Begin build
 [2010-07-15 04:47] :: Parsing hook [base]
 [2010-07-15 04:47] :: Parsing hook [udev]
 [2010-07-15 04:47] :: Parsing hook [autodetect]
 [2010-07-15 04:47] :: Parsing hook [pata]
 [2010-07-15 04:47] :: Parsing hook [scsi]
 [2010-07-15 04:47] :: Parsing hook [sata]
 [2010-07-15 04:47] :: Parsing hook [filesystems]
 [2010-07-15 04:47] :: Generating module dependencies
 [2010-07-15 04:47] :: Generating image '/boot/kernel26-lts.img'...SUCCESS
 [2010-07-15 04:47] == SUCCESS
 [2010-07-15 04:47] == Building image fallback
 [2010-07-15 04:47] == Running command: /sbin/mkinitcpio -k 2.6.32-lts -c
 /etc/mkinitcpio.conf -g /boot/kernel26-lts-fallback.img -S autodetect
 [2010-07-15 04:47] :: Begin build
 [2010-07-15 04:47] :: Parsing hook [base]
 [2010-07-15 04:48] :: Parsing hook [udev]
 [2010-07-15 04:48] :: Parsing hook [pata]
 [2010-07-15 04:48] :: Parsing hook [scsi]
 [2010-07-15 04:48] :: Parsing hook [sata]
 [2010-07-15 04:48] :: Parsing hook [filesystems]
 [2010-07-15 04:48] :: Generating module dependencies
 [2010-07-15 04:48] :: Generating image
 '/boot/kernel26-lts-fallback.img'...SUCCESS
 [2010-07-15 04:48] == SUCCESS
 [2010-07-15 04:48] upgraded kernel26-lts (2.6.32.15-1 - 2.6.32.16-1)
 [2010-07-15 04:49] upgraded kernel26-lts-headers (2.6.32.15-1 -
 2.6.32.16-1)
 [2010-07-15 04:49] upgraded libssh (0.4.4-1 - 0.4.5-1)
 [2010-07-15 04:49] upgraded libwebkit (1.2.1-1 - 1.2.2-1)
 [2010-07-15 04:49] when you use a non-reparenting window manager
 [2010-07-15 04:49] set _JAVA_AWT_WM_NONREPARENTING=1 in
 [2010-07-15 04:49] /etc/profile.d/openjdk6.sh
 [2010-07-15 04:49] upgraded openjdk6 (6.b18_1.8-1 - 6.b18_0.hg_20100715-1)
 [2010-07-15 04:49] upgraded lucene (2.9.2-1 - 

Re: [arch-general] What broke ctrl+c ??

2010-07-16 Thread David C. Rankin

On 07/16/2010 09:52 PM, David C. Rankin wrote:

Guys,

I have a strange problem. ctrl+c is completely broken on my system. It won't
cancel Jack Schit. It is the strangest thing I've seen. I apologize if there is
some archain Arch notice on this I apologize, I've missed it.

This is easy to test. Just to 'ping anywhere' and then try and kill it with
ctrl+c. I have to open another terminal and either 'killall ping' or kill the
pid to get the thing to stop. Same thing happens if I mistype a cli and need to
cancel the execution (like if I mistype a ' instead of a  and the script
continues on a new line)

What's up with this?



OK I've narrowed it down to gnome-terminal. If I use konsole (kde3 or kde4) 
ctrl+c works just fine.


Can anyone else try in gnome-terminal and see if ctrl+c is broken for you? Just 
type 'ping whatever' and then try to kill ping with crtl+c. I can't and that's a 
problem.


I'm using using gnome-terminal 2.30.2-1


--
David C. Rankin, J.D.,P.E.
Rankin Law Firm, PLLC
510 Ochiltree Street
Nacogdoches, Texas 75961
Telephone: (936) 715-9333
Facsimile: (936) 715-9339
www.rankinlawfirm.com


Re: [arch-general] What broke ctrl+c ??

2010-07-16 Thread Jordan Windsor
On Sat, Jul 17, 2010 at 3:25 PM, David C. Rankin
drankina...@suddenlinkmail.com wrote:
 On 07/16/2010 09:52 PM, David C. Rankin wrote:

 Guys,

 I have a strange problem. ctrl+c is completely broken on my system. It
 won't
 cancel Jack Schit. It is the strangest thing I've seen. I apologize if
 there is
 some archain Arch notice on this I apologize, I've missed it.

 This is easy to test. Just to 'ping anywhere' and then try and kill it
 with
 ctrl+c. I have to open another terminal and either 'killall ping' or kill
 the
 pid to get the thing to stop. Same thing happens if I mistype a cli and
 need to
 cancel the execution (like if I mistype a ' instead of a  and the script
 continues on a new line)

 What's up with this?


 OK I've narrowed it down to gnome-terminal. If I use konsole (kde3 or kde4)
 ctrl+c works just fine.

 Can anyone else try in gnome-terminal and see if ctrl+c is broken for you?
 Just type 'ping whatever' and then try to kill ping with crtl+c. I can't and
 that's a problem.

 I'm using using gnome-terminal 2.30.2-1


 --
 David C. Rankin, J.D.,P.E.
 Rankin Law Firm, PLLC
 510 Ochiltree Street
 Nacogdoches, Texas 75961
 Telephone: (936) 715-9333
 Facsimile: (936) 715-9339
 www.rankinlawfirm.com


Works here, gnome-terminal 2.30.2-1