Identifikation of rotating systems

Hello,
i want to estimate a modell from time data. Thus my test-stand rotates with 3000U/min the
model is estimatet with a high peak at 50hz. If I bandpass the timedata from 60hz on
the estimation also goes bad. Does anybody has an idea how i can ignore the 50hz??
Greetings,
RRapha

Hi,
for analysis of rotating systems, order analysis would probably
be a good choise. See the following link for more information:
http://zone.ni.com/devzone/cda/tut/p/id/3779
The LabVIEW Sound and Vibration Measurement Suite or Toolkit offers a
lot of functions to perform different analysis of your signal:
http://www.ni.com/soundandvibration/software.htm
Please provide some more information about your measurements, to figure
out a function that fits to your problem. If you just want to extract
an area from your measurement signal, the standard functions for signal
processing or the array functions in LabVIEW should be sufficient.
regards,
Nikolai

Similar Messages

  • Rotate system.log

    I noticed today that launchd is not rotating my system.log since I installed Snow Leopard. This may be due to wrong settings (I previously used Anacron and may not have uninstalled it properly). How could I fix it?

    Usually log files turned over @ midnight & you should put your 'puter to sleep rather than shut down. Also, don't let your 'puter sleep but only the display in Energy Saver settings.
    Best - KM.

  • [WPSL]how to rotate system.windows.control.image object and save it to iso storage.

    i capturing image using Microsoft.Device.PhotoCamera. it is working fine but when i save it into  phone,it's orientation change to 90 degree.i need to rotate that image to proper orientation.....thanks in advance.

    My advice is to use blend first. You rotate using the UI. Once you see the results from Blend you can then start coding
    it by hand if you wish to
    I sale myself ONLY half CNY!

  • How to control the RPM of motor for large rotating systems like rotary kilns?

    hi,i am working on the scale down model of rotary kiln.i want to know how can i control its RPM or speed ?

    NI provides various motion control solutions. Please refer to http://www.ni.com/motion/ for a starting point. Please feel free to post any specific question here.
    Thanks and best regards,
    Jochen Klier
    National Instruments

  • Turn off zoom & rotate options for trackpad

    I use Photoshop and Word with my new MacBook, and the new zoom and rotate features for the trackpad are absolutely infuriating! It often rotates and zooms the photos I'm working on, or zooms the word document, because my fingers might barely graze the surface of this new, larger trackpad. And Apple decided not to make these features optional in the System Preferences. So it's a real bother to my workflow. Does anybody know how to a) turn it off, or b) get Apple to put together an update that will allow us to toggle all the features in the system preferences?
    Thanks,
    Ian

    Thanks, but that doesn't actually address the problem I have. Let's be very specific, so as to avoid all the other confusions that were in the post you referenced.
    I am not referring to "screen zoom" which zooms the entire screen.
    I am not referring to anything dealing with Safari or Firefox.
    I am only referring to the rotate and zoom features in System Preferences > Trackpad for the new MacBook; these features do not have a toggle on/off choice for the no-button trackpad. In certain applications, e.g. Adobe Photoshop, this rotate and zoom function is worse than useless.
    The bundles and other plug ins that people made work specifically for web browsers, and I need something that disables zoom and rotate system wide, or at least for my personal choice of applications. Does anyone have a solution? Does anyone know an insider at Apple that can write a patch for this?

  • Get "bounds" as a rectangle is rotated

    I have a game with two rectangular sprites that rotate - I need to do some collision detection. The rotation is applied to the sprite image using an AffineTransform which means that once it's drawn getBounds or getWidth/getHeight report the size of the bounding rectangle that my original image is within, not the coordinates of the bit of the image I'm interested in.
    So what I'm trying to do is use some trig to determine the two Areas of each sprite that I'm interested in - the whole body and the "jaws", the bit which is capable of "biting" the other sprite - once I have those Areas I can use Area.intersect() to detect the hit.
    My problem is with the trig - this method is meant to find the four coordinates that track the original "corners" of the image as it's rotated:
    public Area getSpriteZone() {
            int[] pointsX = new int[4];
            int[] pointsY = new int[4];
           //System.out.println(Math.toDegrees(rotation));
            double theta = Math.PI-rotation;
            int offsetX = (int)ORIGINAL_WIDTH/2;
            int offsetY = (int)ORIGINAL_HEIGHT/2;
            int centreX = (int)posX+offsetX;
            int centreY = (int)posY+offsetY;
            int relX1 = (int)(offsetX*Math.cos(rotation));
            int relY1 = (int)(offsetY*Math.sin(rotation));
            //System.out.println("relX: "+relX1+", relY: "+relY1);
            pointsX[0] =  centreX+relX1;
            pointsY[0] =  centreY+relY1;
            int relX2 = (int)(offsetX*Math.cos(rotation+Math.PI));
            int relY2 = (int)(offsetY*Math.sin(rotation+Math.PI));
            pointsX[1] =  centreX+relX2;
            pointsY[1] =  centreY+relY2;
            int relX3 = (int)(offsetX*Math.cos(rotation+(Math.PI*1.5)));
            int relY3 = (int)(offsetY*Math.sin(rotation+(Math.PI*1.5)));
            pointsX[2] =  centreX+relX3;
            pointsY[2] =  centreY+relY3;
            int relX4 = (int)(offsetX*Math.cos(rotation+Math.PI*.5));
            int relY4 = (int)(offsetY*Math.sin(rotation+Math.PI*.5));
            pointsX[3] =  centreX+relX4;
            pointsY[3] =  centreY+relY4;
            return new Area(new Polygon(pointsX, pointsY, 4));
        }for debugging I'm using these coords to draw onto the screen and I can see that it's not bad when the sprite has zero rotation but as it's rotated the method gets less accurate giving a bigger or smaller area than it should. Also, this gives me points in the middle of each of the sides, not the corners. Any ideas?
    see what I mean here: http://jmaid.org/docman/insectRotateZero.png
    and here: http://jmaid.org/docman/insectRotateSome.png
    TIA

    I'm having a go with this but it doesn't seem to be working - I set the Area for the sprite hot Zone when the game begins like this:
    public void setSpriteZone() {
            int[] pointsX = new int[4];
            int[] pointsY = new int[4];
            pointsX[0] = (int)posX;
            pointsY[0] = (int)posY;
            pointsX[1] = (int)(posX + ORIGINAL_WIDTH);
            pointsY[1] = (int)posY;
            pointsX[2] = pointsX[1];
            pointsY[2] = (int)(posY + ORIGINAL_HEIGHT);
            pointsX[3] = pointsX[0];
            pointsY[3] = pointsY[2];
            spriteZone = new Area(new Polygon(pointsX, pointsY, 4));
        }and the game class gets that area with an accessor method. Then in the drawing thread of the game class here's what happens:
    int offsetX = playerImage.getWidth(null)/2;
            int offsetY = playerImage.getHeight(null)/2;
            tx = new AffineTransform();
            tx.translate(player.getX(), player.getY());
            tx.rotate(player.getRotation(), offsetX, offsetY);
            playerZone.transform(tx);//new
            bufferGraphics.drawImage (playerImage, tx, null);drawing the image works fine but my hit detection, which was working with the old, inaccurate Area returned by the trig method, doesn't work now....
    how can I draw the Area onto the screen to get a clue as to what's happening? I looked at PathIterator but don't know how to get the coordinates of the vertices...

  • Why cant i change my roteting system? This iso5.1 got alot problem and my safari crash alot...do someting!!

    Theres a problem on rotateing system. And safari and apps..this new iso5 need to bee fixed alot and i see many people complaing massiv aboutit.do someting befro i loss intrest to apple system

    These are user-to-user forums and they are not monitored by Apple, so I'm not sure who you are expecting to 'do someting'.
    For rotation, is there a lock symbol at the top of the screen next to the battery indicator ? If so, then depending on what you've got Settings > General > Use Side Switch To set to (rotation lock or mute notifications), then you can lock/unlock the rotation by the switch on the right hand side of the iPad, or via the taskbar : double-click the home button; slide from the left; and it's the icon far left; press home again to exit the taskbar. The function that isn't on the side switch is set via the taskbar instead : http://support.apple.com/kb/HT4085
    If there isn't a lock symbol then try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.
    In terms of apps crashing, try closing them all completely and then see if they work when you re-open them : from the home screen (i.e. not with any app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of each app to close them, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then again a reset might help.
    Some people have also suggested turning off the cloud.

  • X100e Hanging and Freezing on Wireless

         There was a different thread addressing freezing and hanging when connected via ethernet; however, I have had ethernet disabled from the BIOS since day one of receiving my system but I found my system to be locking up extremely often particularly when connected to the Wi-Fi at Purdue University.
         For reference:  The wireless network at Purdue University uses WPA-Enterprise with PEAP + Thawte Security Certificate.
         Naturally, I had the latest BIOS (1.25) and had all the updates available from ThinkVantage System Update, but this did not seem to help any - when I was browsing on my university network it would simply hang and freeze up completely every 30 minutes or so, forcing me to restart the system.  It would seem to freeze regardless of whether or not I was even doing anything on the internet.
    There did not seem to be any serious issues on my home network, however, which used WPA2-Personal, but I do not really use my x100e at home enough to say for sure.
         I was quite convinced that there was some sort of problem with either the wireless adapter drivers or some sort of power saving feature at this point, so I uninstalled the Lenovo x100e wireless drivers and obtained the newest drivers for the RTL8192SE chipset directly from RealTek and installed them.
         I then went and disabled "Allow the computer to turn off this device to save power" for the wireless adapter from Device Manager.  I also set the wireless adapter to "Maximum Performance" and turned off PCI Express Link state power management from the power manager.  I also turned off idle timers for stopping hard disk rotation, system standy, and hibernation.
    Now after this little set of actions I seem to be able to more or less surf and download things stably on my university network.  I must note that, the system will still hang every now and then while I am browsing around.  I don't notice any particular pattern to this hanging; it simply happens when I have a browser open and am surfing normally -  it will hang for about 40 seconds or so (I can move my mouse but nothing will respond) and then it will simply resume normal operation.
    So there is my story....
    Has anyone else ever experienced hanging or freezing on wireless networks with their x100e?
    Solved!
    Go to Solution.

    Hello,
    So far, my networking results with my ThinkPad X100e have been very good, but I have only used it on a few networks.
    Have you tried using your ThinkPad X100e on different wireless networks to see if the results vary?  Perhaps the problem occurs with wireless networks that are configured in a specific fashion or using specific hardware.  Connecting at a local coffee shop or public library or other venue with wireless Internet access may provide a different experience.
    Regards,
    Aryeh Goretsky
    I am a volunteer and neither a Lenovo nor a Microsoft employee. • Dexter is a good dog • Dexter je dobrý pes
    S230u (3347-4HU) • X220 (4286-CTO) • W510 (4318-CTO) • W530 (2441-4R3) • X100e (3508-CTO) • X120e (0596-CTO) • T61p (6459-CTO) • T43p (2678-H7U) • T42 (2378-R4U) • T23 (2648-LU7)
      Deutsche Community   Comunidad en Español Русскоязычное Сообщество

  • VERY strange lag on a Dell Optiplex 760

    I thought it would be a good idea to keep a 16GB flash drive on my keychain that booted Arch so I could work on HW for college in a consistent OS!  Everything is working great so far, but I ran into a very strange problem with a Dell Optiplex 760.  During the normal Arch init process, everything loads great, except for when it gets to the udev stage where everything hangs.  But here's the strange part of this scenario: the problems go away when I start typing random keys or move the mouse!  If I don't do this, the system hangs completely from what I can tell.  This happens at the console and with X. 
    The service tag for this machine is FDCQQJ1, and the dell.com driver area brings up this list of hardware and (windows) drivers for it.
    Here's the #lspci -vv of the system:
    00:00.0 Host bridge: Intel Corporation 4 Series Chipset DRAM Controller (rev 03)
    Subsystem: Dell Device 027f
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx-
    Latency: 0
    Capabilities: [e0] Vendor Specific Information: Len=0c <?>
    Kernel driver in use: agpgart-intel
    Kernel modules: intel-agp
    00:02.0 VGA compatible controller: Intel Corporation 4 Series Chipset Integrated Graphics Controller (rev 03) (prog-if 00 [VGA controller])
    Subsystem: Dell Device 027f
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 33
    Region 0: Memory at fe800000 (64-bit, non-prefetchable) [size=4M]
    Region 2: Memory at d0000000 (64-bit, prefetchable) [size=256M]
    Region 4: I/O ports at ec90 [size=8]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Address: fee0300c Data: 41c1
    Capabilities: [d0] Power Management version 2
    Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    Kernel driver in use: i915
    Kernel modules: i915
    00:02.1 Display controller: Intel Corporation 4 Series Chipset Integrated Graphics Controller (rev 03)
    Subsystem: Dell Device 027f
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Region 0: Memory at fe700000 (64-bit, non-prefetchable) [size=1M]
    Capabilities: [d0] Power Management version 2
    Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    00:03.0 Communication controller: Intel Corporation 4 Series Chipset HECI Controller (rev 03)
    Subsystem: Dell Device 027f
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 11
    Region 0: Memory at feda6000 (64-bit, non-prefetchable) [size=16]
    Capabilities: [50] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [8c] MSI: Enable- Count=1/1 Maskable- 64bit+
    Address: 0000000000000000 Data: 0000
    00:03.2 IDE interface: Intel Corporation 4 Series Chipset PT IDER Controller (rev 03) (prog-if 85 [Master SecO PriO])
    Subsystem: Dell Device 027f
    Control: I/O+ Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Interrupt: pin C routed to IRQ 18
    Region 0: I/O ports at fe80 [size=8]
    Region 1: I/O ports at fe90 [size=4]
    Region 2: I/O ports at fea0 [size=8]
    Region 3: I/O ports at feb0 [size=4]
    Region 4: I/O ports at fef0 [size=16]
    Capabilities: [c8] Power Management version 3
    Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [d0] MSI: Enable- Count=1/1 Maskable- 64bit+
    Address: 0000000000000000 Data: 0000
    00:03.3 Serial controller: Intel Corporation 4 Series Chipset Serial KT Controller (rev 03) (prog-if 02 [16550])
    Subsystem: Dell Device 027f
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin B routed to IRQ 17
    Region 0: I/O ports at ec98 [size=8]
    Region 1: Memory at fe6d8000 (32-bit, non-prefetchable) [size=4K]
    Capabilities: [c8] Power Management version 3
    Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [d0] MSI: Enable- Count=1/1 Maskable- 64bit+
    Address: 0000000000000000 Data: 0000
    Kernel driver in use: serial
    00:19.0 Ethernet controller: Intel Corporation 82567LM-3 Gigabit Network Connection (rev 02)
    Subsystem: Dell Device 027f
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 32
    Region 0: Memory at fe6e0000 (32-bit, non-prefetchable) [size=128K]
    Region 1: Memory at fe6d9000 (32-bit, non-prefetchable) [size=4K]
    Region 2: I/O ports at ecc0 [size=32]
    Capabilities: [c8] Power Management version 2
    Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=1 PME-
    Capabilities: [d0] MSI: Enable+ Count=1/1 Maskable- 64bit+
    Address: 00000000fee0300c Data: 41d1
    Capabilities: [e0] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: e1000e
    Kernel modules: e1000e
    00:1a.0 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB UHCI Controller #4 (rev 02) (prog-if 00 [UHCI])
    Subsystem: Dell Device 027f
    Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 16
    Region 4: I/O ports at ff20 [size=32]
    Capabilities: [50] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: uhci_hcd
    Kernel modules: uhci-hcd
    00:1a.1 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB UHCI Controller #5 (rev 02) (prog-if 00 [UHCI])
    Subsystem: Dell Device 027f
    Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin B routed to IRQ 17
    Region 4: I/O ports at ff00 [size=32]
    Capabilities: [50] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: uhci_hcd
    Kernel modules: uhci-hcd
    00:1a.2 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB UHCI Controller #6 (rev 02) (prog-if 00 [UHCI])
    Subsystem: Dell Device 027f
    Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin C routed to IRQ 22
    Region 4: I/O ports at fc00 [size=32]
    Capabilities: [50] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: uhci_hcd
    Kernel modules: uhci-hcd
    00:1a.7 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB2 EHCI Controller #2 (rev 02) (prog-if 20 [EHCI])
    Subsystem: Dell Device 027f
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin C routed to IRQ 22
    Region 0: Memory at fe6da000 (32-bit, non-prefetchable) [size=1K]
    Capabilities: [50] Power Management version 2
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [58] Debug port: BAR=1 offset=00a0
    Capabilities: [98] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: ehci_hcd
    Kernel modules: ehci-hcd
    00:1b.0 Audio device: Intel Corporation 82801JD/DO (ICH10 Family) HD Audio Controller (rev 02)
    Subsystem: Dell Device 027f
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin A routed to IRQ 16
    Region 0: Memory at fe6dc000 (64-bit, non-prefetchable) [size=16K]
    Capabilities: [50] Power Management version 2
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [60] MSI: Enable- Count=1/1 Maskable- 64bit+
    Address: 0000000000000000 Data: 0000
    Capabilities: [70] Express (v1) Root Complex Integrated Endpoint, MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
    ExtTag- RBE- FLReset+
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
    MaxPayload 128 bytes, MaxReadReq 128 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
    LnkCap: Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
    ClockPM- Surprise- LLActRep- BwNot-
    LnkCtl: ASPM Disabled; Disabled- Retrain- CommClk-
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
    Capabilities: [100 v1] Virtual Channel
    Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
    Arb: Fixed- WRR32- WRR64- WRR128-
    Ctrl: ArbSelect=Fixed
    Status: InProgress-
    VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
    Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
    Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=01
    Status: NegoPending- InProgress-
    VC1: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
    Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
    Ctrl: Enable+ ID=1 ArbSelect=Fixed TC/VC=80
    Status: NegoPending- InProgress-
    Capabilities: [130 v1] Root Complex Link
    Desc: PortNumber=0f ComponentID=02 EltType=Config
    Link0: Desc: TargetPort=00 TargetComponent=02 AssocRCRB- LinkType=MemMapped LinkValid+
    Addr: 00000000feda8000
    Kernel driver in use: HDA Intel
    Kernel modules: snd-hda-intel
    00:1c.0 PCI bridge: Intel Corporation 82801JD/DO (ICH10 Family) PCI Express Port 1 (rev 02) (prog-if 00 [Normal decode])
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
    I/O behind bridge: 00001000-00001fff
    Memory behind bridge: fe500000-fe5fffff
    Prefetchable memory behind bridge: 000000007e000000-000000007e1fffff
    Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
    BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
    PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
    Capabilities: [40] Express (v2) Root Port (Slot+), MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
    ExtTag- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 128 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
    LnkCap: Port #1, Speed 2.5GT/s, Width x1, ASPM L0s, Latency L0 <256ns, L1 <4us
    ClockPM- Surprise- LLActRep+ BwNot-
    LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
    SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
    Slot #5, PowerLimit 10.000W; Interlock- NoCompl+
    SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
    Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
    SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
    Changed: MRL- PresDet- LinkState-
    RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
    RootCap: CRSVisible-
    RootSta: PME ReqID 0000, PMEStatus- PMEPending-
    DevCap2: Completion Timeout: Range BC, TimeoutDis+ ARIFwd-
    DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
    LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
    Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
    Compliance De-emphasis: -6dB
    LnkSta2: Current De-emphasis Level: -6dB
    Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Address: fee0300c Data: 4189
    Capabilities: [90] Subsystem: Dell Device 027f
    Capabilities: [a0] Power Management version 2
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [100 v1] Virtual Channel
    Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
    Arb: Fixed+ WRR32- WRR64- WRR128-
    Ctrl: ArbSelect=Fixed
    Status: InProgress-
    VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
    Arb: Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
    Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=01
    Status: NegoPending- InProgress-
    Capabilities: [180 v1] Root Complex Link
    Desc: PortNumber=01 ComponentID=02 EltType=Config
    Link0: Desc: TargetPort=00 TargetComponent=02 AssocRCRB- LinkType=MemMapped LinkValid+
    Addr: 00000000feda8000
    Kernel driver in use: pcieport
    Kernel modules: shpchp
    00:1c.1 PCI bridge: Intel Corporation 82801JD/DO (ICH10 Family) PCI Express Port 2 (rev 02) (prog-if 00 [Normal decode])
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
    I/O behind bridge: 00002000-00002fff
    Memory behind bridge: fe400000-fe4fffff
    Prefetchable memory behind bridge: 000000007e200000-000000007e3fffff
    Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
    BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
    PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
    Capabilities: [40] Express (v2) Root Port (Slot+), MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
    ExtTag- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 128 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
    LnkCap: Port #2, Speed 2.5GT/s, Width x1, ASPM L0s, Latency L0 <256ns, L1 <4us
    ClockPM- Surprise- LLActRep+ BwNot-
    LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
    SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
    Slot #4, PowerLimit 10.000W; Interlock- NoCompl+
    SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
    Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
    SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
    Changed: MRL- PresDet- LinkState-
    RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
    RootCap: CRSVisible-
    RootSta: PME ReqID 0000, PMEStatus- PMEPending-
    DevCap2: Completion Timeout: Range BC, TimeoutDis+ ARIFwd-
    DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
    LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
    Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
    Compliance De-emphasis: -6dB
    LnkSta2: Current De-emphasis Level: -6dB
    Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Address: fee0300c Data: 4191
    Capabilities: [90] Subsystem: Dell Device 027f
    Capabilities: [a0] Power Management version 2
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [100 v1] Virtual Channel
    Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
    Arb: Fixed+ WRR32- WRR64- WRR128-
    Ctrl: ArbSelect=Fixed
    Status: InProgress-
    VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
    Arb: Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
    Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=01
    Status: NegoPending- InProgress-
    Capabilities: [180 v1] Root Complex Link
    Desc: PortNumber=02 ComponentID=02 EltType=Config
    Link0: Desc: TargetPort=00 TargetComponent=02 AssocRCRB- LinkType=MemMapped LinkValid+
    Addr: 00000000feda8000
    Kernel driver in use: pcieport
    Kernel modules: shpchp
    00:1d.0 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB UHCI Controller #1 (rev 02) (prog-if 00 [UHCI])
    Subsystem: Dell Device 027f
    Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 23
    Region 4: I/O ports at ff80 [size=32]
    Capabilities: [50] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: uhci_hcd
    Kernel modules: uhci-hcd
    00:1d.1 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB UHCI Controller #2 (rev 02) (prog-if 00 [UHCI])
    Subsystem: Dell Device 027f
    Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin B routed to IRQ 17
    Region 4: I/O ports at ff60 [size=32]
    Capabilities: [50] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: uhci_hcd
    Kernel modules: uhci-hcd
    00:1d.2 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB UHCI Controller #3 (rev 02) (prog-if 00 [UHCI])
    Subsystem: Dell Device 027f
    Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin C routed to IRQ 18
    Region 4: I/O ports at ff40 [size=32]
    Capabilities: [50] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: uhci_hcd
    Kernel modules: uhci-hcd
    00:1d.7 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB2 EHCI Controller #1 (rev 02) (prog-if 20 [EHCI])
    Subsystem: Dell Device 027f
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 23
    Region 0: Memory at ff980000 (32-bit, non-prefetchable) [size=1K]
    Capabilities: [50] Power Management version 2
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [58] Debug port: BAR=1 offset=00a0
    Capabilities: [98] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: ehci_hcd
    Kernel modules: ehci-hcd
    00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a2) (prog-if 01 [Subtractive decode])
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Bus: primary=00, secondary=03, subordinate=03, sec-latency=32
    Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
    BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
    PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
    Capabilities: [50] Subsystem: Dell Device 027f
    00:1f.0 ISA bridge: Intel Corporation 82801JD (ICH10D) LPC Interface Controller (rev 02)
    Subsystem: Dell Device 027f
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Capabilities: [e0] Vendor Specific Information: Len=0c <?>
    Kernel modules: iTCO_wdt
    00:1f.2 IDE interface: Intel Corporation 82801JD/DO (ICH10 Family) 4-port SATA IDE Controller (rev 02) (prog-if 8f [Master SecP SecO PriP PriO])
    Subsystem: Dell Device 027f
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin C routed to IRQ 18
    Region 0: I/O ports at fe00 [size=8]
    Region 1: I/O ports at fe10 [size=4]
    Region 2: I/O ports at fe20 [size=8]
    Region 3: I/O ports at fe30 [size=4]
    Region 4: I/O ports at fec0 [size=16]
    Region 5: I/O ports at eca0 [size=16]
    Capabilities: [70] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [b0] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: ata_piix
    Kernel modules: ata_piix
    00:1f.3 SMBus: Intel Corporation 82801JD/DO (ICH10 Family) SMBus Controller (rev 02)
    Subsystem: Dell Device 027f
    Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
    Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Interrupt: pin C routed to IRQ 18
    Region 0: Memory at fe6db000 (64-bit, non-prefetchable) [size=256]
    Region 4: I/O ports at ece0 [size=32]
    Kernel driver in use: i801_smbus
    Kernel modules: i2c-i801
    00:1f.5 IDE interface: Intel Corporation 82801JD/DO (ICH10 Family) 2-port SATA IDE Controller (rev 02) (prog-if 85 [Master SecO PriO])
    Subsystem: Dell Device 027f
    Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin C routed to IRQ 18
    Region 0: I/O ports at fe40 [size=8]
    Region 1: I/O ports at fe50 [size=4]
    Region 2: I/O ports at fe60 [size=8]
    Region 3: I/O ports at fe70 [size=4]
    Region 4: I/O ports at fed0 [size=16]
    Region 5: I/O ports at ecb0 [size=16]
    Capabilities: [70] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [b0] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: ata_piix
    Kernel modules: ata_piix
    I have googled around a bit, and I've read about others (surprisingly) having the same issue, but I've found no answers to my avail yet.

    Here are the packages installed on my system, with versions (output of pacman -Qs):
    local/a2ps 4.14-1
    a2ps is an Any to PostScript filter
    local/a52dec 0.7.4-4
    liba52 is a free library for decoding ATSC A/52 streams.
    local/acl 2.2.48-1 (base)
    Library for filesystem ACL support
    local/alsa-lib 1.0.22-1
    An alternative implementation of Linux sound support
    local/alsa-utils 1.0.22-2
    An alternative implementation of Linux sound support
    local/aspell 0.60.6-4
    A spell checker designed to eventually replace Ispell
    local/ati-dri 7.7-1
    Mesa DRI drivers for AMD/ATI Radeon
    local/atk 1.28.0-1
    A library providing a set of interfaces for accessibility
    local/attr 2.4.44-1 (base)
    Extended attribute support library for ACL support
    local/autoconf 2.65-1 (base-devel)
    A GNU tool for automatically configuring source code
    local/automake 1.11.1-1 (base-devel)
    A GNU tool for automatically creating Makefiles
    local/avahi 0.6.25-3
    A multicast/unicast DNS-SD framework
    local/b43-firmware 4.150.10.5-1
    Firmware for Broadcom B43 wireless networking chips
    local/b43-fwcutter 012-1
    firmware extractor for the bcm43xx kernel module
    local/bash 4.1.002-2 (base)
    The GNU Bourne Again shell
    local/beanshell 2.0b4-1
    Small, free, embeddable, source level Java interpreter with object based
    scripting language features written in Java
    local/bin86 0.16.17-4 (base-devel)
    A complete 8086 assembler and loader
    local/binutils 2.20-3 (base)
    A set of programs to assemble and manipulate binary and object files
    local/bison 2.4.1-1 (base-devel)
    The GNU general-purpose parser generator
    local/bzip2 1.0.5-5 (base)
    A high-quality data compression program
    local/ca-certificates 20090814-2
    Common CA certificates
    local/ca-certificates-java 20090629-2
    Common CA certificates (JKS keystore)
    local/cabextract 1.2-2
    A program to extract Microsoft cabinet (.CAB) files.
    local/cairo 1.8.10-1
    Cairo vector graphics library
    local/cairomm 1.8.4-1
    C++ bindings to Cairo vector graphics library
    local/cdparanoia 10.2-2
    Compact Disc Digital Audio extraction tool
    local/cloog-ppl 0.15.7-1
    Library that generates loops for scanning polyhedra
    local/compositeproto 0.4.1-1
    X11 Composite extension wire protocol
    local/consolekit 0.4.1-2
    A framework for defining and tracking users, login sessions, and seats
    local/coreutils 8.4-1 (base)
    The basic file, shell and text manipulation utilities of the GNU operating
    system
    local/cpio 2.10-1 (base)
    A tool to copy files into or out of a cpio or tar archive
    local/cracklib 2.8.13-2 (base)
    Password Checking Library
    local/cryptsetup 1.1.0-2 (base)
    Userspace setup tool for transparent encryption of block devices using the
    Linux 2.6 cryptoapi
    local/curl 7.20.0-1
    An URL retrival utility and library
    local/cyrus-sasl-plugins 2.1.23-1
    Cyrus Simple Authentication Service Layer (SASL) library
    local/damageproto 1.2.0-1
    X11 Damage extension wire protocol
    local/dash 0.5.5.1-2 (base)
    A POSIX compliant shell that aims to be as small as possible
    local/db 4.8.26-1 (base)
    The Berkeley DB embedded database system
    local/dbus 1.2.20-1
    Freedesktop.org message bus system
    local/dbus-core 1.2.20-1
    Freedesktop.org message bus system
    local/dbus-glib 0.82-2
    GLib bindings for DBUS
    local/dcron 4.4-2 (base)
    dillon's lightweight cron daemon
    local/desktop-file-utils 0.15-1
    Command line utilities for working with desktop entries
    local/device-mapper 2.02.60-3 (base)
    Device mapper userspace library and tools
    local/dhcpcd 5.2.1-1 (base)
    RFC2131 compliant DHCP client daemon
    local/dialog 1.1_20100119-1 (base)
    A tool to display dialog boxes from shell scripts
    local/diffutils 2.9-1 (base)
    Utility programs used for creating patch files
    local/dmidecode 2.10-1
    Desktop Management Interface table related utilities
    local/dmxproto 2.3-1
    X11 Distributed Multihead X extension wire protocol
    local/dosfstools 3.0.9-1
    DOS filesystem utilities
    local/dri2proto 2.1-2
    X11 DRI protocol
    local/e2fsprogs 1.41.10-1 (base)
    Ext2/3/4 filesystem utilities
    local/ed 1.4-1 (base-devel)
    A POSIX-compliant line editor
    local/eggdbus 0.6-1
    Experimental D-Bus bindings for GObject
    local/eject 2.1.5-4
    Eject is a program for ejecting removable media under software control
    local/enca 1.13-1
    Charset analyser and converter
    local/enchant 1.5.0-3
    A wrapper library for generic spell checking
    local/eventlog 0.2.9-1
    A new API to format and send structured log messages
    local/exo 0.3.106-1 (xfce4)
    Extensions to Xfce by os-cillation
    local/expat 2.0.1-5
    An XML Parser library written in C
    local/faac 1.28-2
    FAAC is an AAC audio encoder
    local/faad2 2.7-1
    ISO AAC audio decoder
    local/fakeroot 1.14.4-2 (base-devel)
    Gives a fake root environment, useful for building packages as a
    non-privileged user
    local/farsight2 0.0.17-1
    Audio/Video conference software for Instant Messengers
    local/ffmpeg 22511-1
    Complete and free Internet live audio and video broadcasting solution for
    Linux/Unix
    local/file 5.04-2 (base)
    File type identification utility
    local/filesystem 2010.02-4 (base)
    Base filesystem
    local/findutils 4.4.2-1 (base)
    GNU utilities to locate files
    local/fixesproto 4.1.1-1
    X11 Fixes extension wire protocol
    local/flac 1.2.1-2
    Free Lossless Audio Codec
    local/flashplugin 10.0.45.2-1
    Adobe Flash Player
    local/flex 2.5.35-3 (base-devel)
    A tool for generating text-scanning programs
    local/fluidsynth 1.1.1-2
    A real-time software synthesizer based on the SoundFont 2 specifications
    local/fontcacheproto 0.1.3-1
    X11 font cache extension wire protocol
    local/fontconfig 2.8.0-1
    A library for configuring and customizing font access
    local/fontsproto 2.1.0-1
    X11 font extension wire protocol
    local/freeglut 2.6.0-1
    Provides functionality for small OpenGL programs
    local/freetype2 2.3.12-1
    TrueType font rendering library
    local/fribidi 0.19.2-1
    A Free Implementation of the Unicode Bidirectional Algorithm
    local/frozen-bubble 2.2.0-2
    A game in which you throw colorful bubbles and build groups to destroy the
    bubbles
    local/fuse 2.8.3-1
    A library that makes it possible to implement a filesystem in a userspace
    program.
    local/gamin 0.1.10-1
    Gamin is a file and directory monitoring system defined to be a subset of
    the FAM (File Alteration Monitor) system.
    local/gawk 3.1.7-1 (base)
    Gnu version of awk
    local/gcc 4.4.3-1 (base-devel)
    The GNU Compiler Collection
    local/gcc-libs 4.4.3-1 (base)
    Runtime libraries shipped by GCC for C and C++ languages
    local/gconf 2.28.0-1
    A configuration database system
    local/gdbm 1.8.3-6 (base)
    GNU database library
    local/gdk-pixbuf 0.22.0-7
    Image loading and manipulation library
    local/gen-init-cpio 2.6.32-1 (base)
    Program to compress initramfs images
    local/gettext 0.17-3 (base)
    GNU internationalization library
    local/ghostscript 8.71-2
    An interpreter for the PostScript language
    local/giflib 4.1.6-3
    A library for reading and writing gif images
    local/git 1.7.0.2-1
    the fast distributed version control system
    local/gksu 2.0.2-2
    A graphical frontend for su
    local/glib 1.2.10-8
    Common C routines used by Gtk+ and other libs
    local/glib2 2.22.4-1
    Common C routines used by GTK+ 2.4 and other libs
    local/glibc 2.11.1-1 (base)
    GNU C Library
    local/glibmm 2.22.1-1
    Glib-- (glibmm) is a C++ interface for glib
    local/gmp 4.3.2-1
    A free library for arbitrary precision arithmetic
    local/gnome-icon-theme 2.28.0-1 (gnome)
    Default icon theme for GNOME2
    local/gnome-keyring 2.28.2-1
    GNOME Password Management daemon
    local/gnutls 2.8.5-1
    A library which provides a secure layer over a reliable transport layer
    local/google-chrome-dev 5.0.342.3-1
    Google Chrome Developer preview channel for Linux
    local/gparted 0.5.2-1
    A Partition Magic clone, frontend to GNU Parted
    local/gpm 1.20.6-5
    A mouse server for the console and xterm
    local/gqview 2.0.4-3
    An image browser and viewer
    local/grep 2.5.4-3 (base)
    A string search utility
    local/groff 1.20.1-4
    GNU troff text-formatting system
    local/grub 0.97-16 (base)
    A GNU multiboot boot loader
    local/gsfonts 8.11-5
    Ghostscript standard Type1 fonts
    local/gstreamer0.10 0.10.28-1
    GStreamer Multimedia Framework
    local/gstreamer0.10-base 0.10.28-1
    GStreamer Multimedia Framework Base plugin libraries
    local/gstreamer0.10-base-plugins 0.10.28-1 (gstreamer0.10-plugins)
    GStreamer Multimedia Framework Base Plugins (gst-plugins-base)
    local/gstreamer0.10-python 0.10.18-1
    Python bindings for GStreamer 0.10
    local/gtk 1.2.10-10
    The GTK+ toolkit
    local/gtk-aurora-engine 1.5.1-1
    gtk-engine: latest member of the clearlooks family
    local/gtk-xfce-engine 2.6.0-1 (xfce4)
    A port of Xfce engine to GTK+-2.0
    local/gtk2 2.18.7-1
    The GTK+ Toolkit (v2)
    local/gtkmm 2.18.2-1
    C++ bindings for gtk2
    local/gtkspell 2.0.16-1
    GtkSpell provides word-processor-style highlighting and replacement of
    misspelled words in a GtkTextView widget
    local/gzip 1.4-1 (base)
    GNU compression utility
    local/hal 0.5.14-2
    Hardware Abstraction Layer
    local/hal-info 0.20091130-1
    Hardware Abstraction Layer information files
    local/hdparm 9.27-2 (base)
    A shell utility for manipulating Linux IDE drive/driver parameters
    local/heimdal 1.3.1-3
    Implementation of Kerberos V5 libraries
    local/hicolor-icon-theme 0.11-1
    Freedesktop.org Hicolor icon theme
    local/hsqldb-java 1.8.1.1-1
    HSQLDB Java libraries
    local/htop 0.8.3-1
    Interactive process viewer
    local/hunspell 1.2.8-2
    Spell checker and morphological analyzer library and program
    local/hyphen 2.4-1
    library for high quality hyphenation and justification
    local/icon-naming-utils 0.8.90-1
    Maps the new names of icons for Tango to the legacy names used by the GNOME
    and KDE desktops.
    local/icu 4.2.1-1
    International Components for Unicode library
    local/ilmbase 1.0.1-1
    IlmThread is a thread abstraction library for use with OpenEXR
    local/imagemagick 6.6.0.0-1
    An image viewing/manipulation program
    local/imlib2 1.4.2-6
    Library that does image file loading and saving as well as rendering,
    manipulation, arbitrary polygon support
    local/initscripts 2010.01-1 (base)
    System initialization/bootup scripts
    local/inputproto 2.0-1
    X11 Input extension wire protocol
    local/intel-dri 7.7-1
    Mesa DRI drivers for Intel
    local/iproute2 2.6.31-1
    IP Routing Utilities
    local/iptables 1.4.7-1
    A Linux kernel packet control tool
    local/iputils 20100214-2 (base)
    IP Configuration Utilities (and Ping)
    local/iso-codes 3.14-1
    Lists of the country, language, and currency names
    local/jack 0.116.2-1
    A low-latency audio server
    local/jasper 1.900.1-5
    A software-based implementation of the codec specified in the emerging
    JPEG-2000 Part-1 standard
    local/jfsutils 1.1.14-1 (base)
    JFS filesystem utilities
    local/json-glib 0.10.0-1
    JSON library built on GLib
    local/kbd 1.15.1-1 (base)
    Keytable files and keyboard utilities
    local/kbproto 1.0.4-1
    X11 XKB extension wire protocol
    local/kernel26 2.6.32.10-1 (base)
    The Linux Kernel and modules
    local/kernel26-firmware 2.6.32.10-1 (base)
    The included firmware files of the Linux Kernel
    local/kernel26-headers 2.6.32.10-1
    Header files and scripts for building modules for kernel26
    local/ladspa 1.13-2
    Linux Audio Developer's Simple Plugin API (LADSPA)
    local/lame 3.98.3-1
    An MP3 encoder and graphical frame analyzer
    local/lcms 1.18-3
    Lightweight color management development library/engine
    local/less 436-1 (base)
    A terminal based program for viewing text files
    local/libarchive 2.8.3-1
    library that can create and read several streaming archive formats
    local/libass 0.9.9-1
    A portable library for SSA/ASS subtitles rendering
    local/libcap 2.19-1
    POSIX 1003.1e capabilities
    local/libcddb 1.3.2-1
    Library that implements the different protocols (CDDBP, HTTP, SMTP) to
    access data on a CDDB server (e.g. http://freedb.org).
    local/libcdio 0.82-1
    GNU Compact Disc Input and Control Library
    local/libcroco 0.6.2-1
    GNOME CSS2 parsing and manipulation toolkit
    local/libcups 1.4.2-3
    The CUPS Printing System - client libraries and headers
    local/libdaemon 0.14-1
    A lightweight C library which eases the writing of UNIX daemons
    local/libdatrie 0.2.3-1
    Libdatrie is an implementation of double-array structure for representing
    trie, as proposed by Junichi Aoe.
    local/libdca 0.0.5-2
    Free library for decoding DTS Coherent Acoustics streams
    local/libdmx 1.1.0-1
    X11 Distributed Multihead extension library
    local/libdrm 2.4.18-2
    Userspace interface to kernel DRM services
    local/libdvbpsi 0.1.6-3
    MPEG TS and DVB PSI tables library (needed by vlc for streaming)
    local/libdvdnav 4.1.3-2
    The library for xine-dvdnav plugin.
    local/libdvdread 4.1.3-1
    libdvdread provides a simple foundation for reading DVD video disks
    local/libebml 0.7.8-2
    Extensible Binary Meta Language library
    local/libevent 1.4.13-1
    An event notification library
    local/libexif 0.6.19-1
    A library to parse an EXIF file and read the data from those tags
    local/libfetch 2.30-1 (base)
    URL based download library
    local/libfontenc 1.0.5-1
    X11 font encoding library
    local/libgcrypt 1.4.5-1 (base)
    a general purpose crypto library based on the code used
    local/libgksu 2.0.12-1
    gksu authorization library
    local/libgl 7.7-1
    Mesa 3-D graphics library and DRI software rasterizer
    local/libglade 2.6.4-1
    Allows you to load glade interface files in a program at runtime
    local/libgpg-error 1.7-2 (base)
    Support library for libgcrypt
    local/libgraphite 2.3.1-1
    SILGraphite - a "smart font" rendering engine - the libs and headers
    local/libgsf 1.14.16-1
    The GNOME Structured File Library is a utility library for reading and
    writing structured file formats
    local/libgssglue 0.1-2
    exports a gssapi interface which calls other random gssapi libraries
    local/libgtop 2.28.0-1
    A library that read information about processes and the running system
    local/libice 1.0.6-1
    X11 Inter-Client Exchange library
    local/libid3tag 0.15.1b-4
    library for id3 tagging
    local/libidl2 0.8.13-1
    A front-end for CORBA 2.2 IDL and Netscape's XPIDL
    local/libidn 1.16-1
    Implementation of the Stringprep, Punycode and IDNA specifications
    local/libjpeg 8.0.1-1
    Library of JPEG support functions
    local/libjpeg6 6b-9
    Library of JPEG support functions
    local/libldap 2.4.21-1
    Lightweight Directory Access Protocol (LDAP) client libraries
    local/libmad 0.15.1b-4
    A high-quality MPEG audio decoder
    local/libmatroska 0.8.1-2
    Matroska library
    local/libmikmod 3.1.12-3
    A portable sound library
    local/libmng 1.0.10-3
    A collection of routines used to create and manipulate MNG format graphics
    files
    local/libmodplug 0.8.7-1
    A MOD playing library
    local/libmp4v2 1.9.1-1
    MPEG-4 library
    local/libmpcdec 1.2.6-2
    Musepack decoding library
    local/libmpeg2 0.5.1-1
    libmpeg2 is a library for decoding MPEG-1 and MPEG-2 video streams.
    local/libmspack 0.0.20060920alpha-1
    local/libmtp 1.0.2-1
    library implementation of the Media Transfer Protocol
    local/libmysqlclient 5.1.45-1
    MySQL client libraries
    local/libnice 0.0.11-1
    An implementation of the IETF's draft ICE (for p2p UDP data streams)
    local/libnl 1.1-1
    Library for applications dealing with netlink sockets
    local/libnotify 0.4.5-1.1
    Desktop notification library
    local/libogg 1.1.4-1
    Ogg bitstream and framing library
    local/liboil 0.3.17-1
    Library of simple functions that are optimized for various CPUs.
    local/libpcap 1.0.0-1 (base)
    A system-independent interface for user-level packet capture
    local/libpciaccess 0.10.9-1
    X11 PCI access library
    local/libpng 1.4.1-1
    A collection of routines used to create PNG format graphics files
    local/libpng12 1.2.40-1
    A collection of routines used to create PNG format graphics files
    local/libproxy 0.2.3-1
    A library that provides automatic proxy configuration management
    local/libpurple 2.6.6-1
    IM library extracted from Pidgin
    local/librpcsecgss 0.19-2
    Library for RPCSECGSS support
    local/librsvg 2.26.0-2
    SAX-based renderer for SVG files into a GdkPixbuf
    local/libsasl 2.1.23-2
    Cyrus Simple Authentication Service Layer (SASL) library
    local/libsexy 0.1.11-2
    Doing naughty things to good widgets.
    local/libshout 2.2.2-3
    Library for accessing a shoutcast/icecast server
    local/libsigc++2.0 2.2.4.2-1
    Libsigc++ implements a full callback system for use in widget libraries - V2
    local/libsm 1.1.1-1
    X11 Session Management library
    local/libsndfile 1.0.21-1
    A C library for reading and writing files containing sampled sound
    local/libtasn1 2.4-1
    The ASN.1 library used in GNUTLS
    local/libthai 0.1.14-1
    Thai language support routines
    local/libtheora 1.1.1-1
    An open video codec developed by the Xiph.org
    local/libtiff 3.9.2-2
    Library for manipulation of TIFF images
    local/libtirpc 0.2.1-1
    Transport Independent RPC library (SunRPC replacement)
    local/libtool 2.2.6b-2 (base-devel)
    A generic library support script
    local/libusb 0.1.12-4 (base)
    Library to enable user space application programs to communicate with USB
    devices
    local/libv4l 0.6.4-1
    Userspace library for Video 4 Linux (1 and 2)
    local/libvdpau 0.4-1
    Nvidia VDPAU library
    local/libvisual 0.4.0-2
    Abstraction library that comes between applications and audio visualisation
    plugins
    local/libvorbis 1.2.3-1
    Vorbis codec library
    local/libwmf 0.2.8.4-7
    A library for reading vector images in Microsoft's native Windows Metafile
    Format (WMF).
    local/libwnck 2.28.0-1
    Window Navigator Construction Kit
    local/libwpd 0.8.14-1
    library for importing WordPerfect (tm) documents
    local/libx11 1.3.3-1
    X11 client-side library
    local/libx86 1.1-2
    Provides an lrmi interface that works on x86, am64 and alpha
    local/libxau 1.0.5-1
    X11 authorisation library
    local/libxaw 1.0.7-1
    X11 Athena Widget library
    local/libxcb 1.5-1
    X11 client-side library
    local/libxcomposite 0.4.1-1
    X11 Composite extension library
    local/libxcursor 1.1.10-1
    X cursor management library
    local/libxdamage 1.1.2-1
    X11 damaged region extension library
    local/libxdmcp 1.0.3-1
    X11 Display Manager Control Protocol library
    local/libxext 1.1.1-1
    X11 miscellaneous extensions library
    local/libxfce4menu 4.6.1-1 (xfce4)
    a freedesktop.org compliant menu implementation for Xfce
    local/libxfce4util 4.6.1-1 (xfce4)
    Basic utility non-GUI functions for Xfce
    local/libxfcegui4 4.6.3-1 (xfce4)
    Various gtk widgets for Xfce
    local/libxfixes 4.0.4-1
    X11 miscellaneous 'fixes' extension library
    local/libxfont 1.4.1-1
    X11 font rasterisation library
    local/libxfontcache 1.0.5-1
    X11 font cache library
    local/libxft 2.1.14-1
    FreeType-based font drawing library for X
    local/libxi 1.3-2
    X11 Input extension library
    local/libxinerama 1.1-1
    X11 Xinerama extension library
    local/libxkbfile 1.0.6-1
    X11 keyboard file manipulation library
    local/libxklavier 4.0-1
    High-level API for X Keyboard Extension
    local/libxml2 2.7.6-2
    XML parsing library, version 2
    local/libxmu 1.0.5-1
    X11 miscellaneous micro-utility library
    local/libxpm 3.5.8-1
    X11 pixmap library
    local/libxrandr 1.3.0-1
    X11 RandR extension library
    local/libxrender 0.9.5-1
    X Rendering Extension client library
    local/libxres 1.0.4-1
    X11 Resource extension library
    local/libxslt 1.1.26-1
    XML stylesheet transformation library
    local/libxss 1.2.0-1
    X11 Screen Saver extension library
    local/libxt 1.0.7-1
    X11 toolkit intrinsics library
    local/libxtst 1.1.0-1
    X11 Testing -- Resource extension library
    local/libxv 1.0.5-1
    X11 Video extension library
    local/libxvmc 1.0.5-1
    X11 Video Motion Compensation extension library
    local/libxxf86dga 1.1.1-1
    X11 Direct Graphics Access extension library
    local/libxxf86misc 1.0.2-1
    X11 XFree86 miscellaneous extension library
    local/libxxf86vm 1.1.0-1
    X11 XFree86 video mode extension library
    local/licenses 2.5-1 (base)
    The standard licenses distribution package
    local/links 2.2-3
    A text WWW browser, similar to Lynx
    local/linux-api-headers 2.6.32.5-2 (base)
    Kernel headers sanitized for use in userspace
    local/linux-atm 2.5.0-1
    Drivers and tools to support ATM networking under Linux.
    local/logrotate 3.7.8-1 (base)
    Rotates system logs automatically
    local/lpsolve 5.5.0.15-1
    a Mixed Integer Linear Programming (MILP) solver
    local/lua 5.1.4-4
    A powerful light-weight programming language designed for extending
    applications.
    local/lucene 2.9.2-1
    A high-performance, full-featured text search engine library written
    entirely in Java
    local/lvm2 2.02.60-3 (base)
    Logical Volume Manager 2 utilities
    local/lzo2 2.03-1 (base)
    Portable lossless data compression library written in ANSI C
    local/m4 1.4.14-1 (base-devel)
    m4 macro processor
    local/mach64-dri 7.7-1
    Mesa DRI drivers for ATI Mach64
    local/madwifi 0.9.4.4100-2
    Madwifi drivers for Atheros wireless chipsets. For stock arch 2.6 kernel
    local/madwifi-utils 0.9.4.4096-1
    Userspace tools of madwifi drivers for Atheros wireless chipsets.
    local/mailx 8.1.1-7 (base)
    A commandline utility for sending email
    local/make 3.81-4 (base-devel)
    GNU make utility to maintain groups of programs
    local/man-db 2.5.7-1 (base)
    A utility for reading man pages
    local/man-pages 3.24-1 (base)
    Linux man pages
    local/mcpp 2.7.2-2
    Matsui's CPP implementation precisely conformed to standards
    local/mdadm 3.1.1-2 (base)
    A tool for managing/monitoring Linux md device arrays, also known as
    Software RAID
    local/meliae-svg-icon-theme 1.2-1
    Here you are version n. 1.1 of the new Meliae Icon Theme (all icons are in
    SVG format).
    local/mesa 7.7-1
    Mesa 3-D graphics libraries and include files
    local/mga-dri 7.7-1
    Mesa DRI drivers for Matrox
    local/mkinitcpio 0.6.3-1 (base)
    Modular initramfs image creation utility
    local/mkinitcpio-busybox 1.15.3-5
    base initramfs tools
    local/mlocate 0.22.3-1
    Faster merging drop-in for slocate
    local/mobile-broadband-provider-info 0.20100301-1
    Network Management daemon
    local/module-init-tools 3.11.1-2 (base)
    utilities needed by Linux systems for managing loadable kernel modules
    local/mousepad 0.2.16-2 (xfce4)
    Simple Text Editor for Xfce4 (based on Gedit)
    local/mozilla-common 1.4-1
    Common Initialization Profile for Mozilla.org products
    local/mpfr 2.4.2-1
    multiple-precision floating-point library
    local/ms-sys 2.1.4-2
    A tool to write Win9x/2k/XP/2k3/Vista/7/2k8 master boot records (mbr) under
    linux - RTM!
    local/mtools 4.0.13-1
    A collection of utilities to access MS-DOS disks
    local/nano 2.2.3-1 (base)
    Pico editor clone with enhancements
    local/ncurses 5.7-2 (base)
    System V Release 4.0 curses emulation library
    local/ndiswrapper 1.56-1
    Module for NDIS (Windows Network Drivers) drivers supplied by vendors. For
    stock arch 2.6 kernel.
    local/ndiswrapper-utils 1.56-1
    Binaries for ndiswrapper module
    local/neon 0.28.6-2
    HTTP and WebDAV client library with a C interface
    local/net-tools 1.60-14 (base)
    Configuration tools for Linux networking
    local/network-manager-applet 0.8-2
    GNOME frontends to NetWorkmanager
    local/networkmanager 0.8-1
    Network Management daemon
    local/nfs-utils 1.2.2-1
    Support programs for Network File Systems
    local/nfsidmap 0.23-3
    Library to help mapping IDs, mainly for NFSv4
    local/notification-daemon 0.4.0-4 (gnome)
    Notification daemon for the desktop notifications framework
    local/nspr 4.8.3-1
    Netscape Portable Runtime
    local/nss 3.12.4-2
    Mozilla Network Security Services
    local/ntfs-3g 2010.1.16-1
    Stable read and write NTFS driver
    local/ntfsprogs 2.0.0-4
    NTFS filesystem utilities
    local/opencore-amr 0.1.2-1
    Open source implementation of the Adaptive Multi Rate (AMR) speech codec
    local/openexr 1.6.1-1
    openexr library for EXR images
    local/openjdk6 6.b17_1.7.1-1
    Free Java environment based on OpenJDK 6.0 with IcedTea6 replacing binary
    plugs.
    local/openntpd 3.9p1-10
    Free, easy to use implementation of the Network Time Protocol.
    local/openoffice-base 3.2.0-1
    OpenOffice.org - a free multiplatform and multilingual office suite -
    testing branch leeding to next stable release
    local/openssh 5.3p1-4
    A Secure SHell server/client
    local/openssl 0.9.8m-2
    The Open Source toolkit for Secure Sockets Layer and Transport Layer
    Security
    local/ophcrack 3.3.1-4
    A free Windows password cracker based on rainbow tables
    local/orage 4.6.1-1 (xfce4)
    A simple calendar application with reminders for Xfce
    local/orbit2 2.14.17-1
    Thin/fast CORBA ORB
    local/pacman 3.3.3-1 (base)
    A library-based package manager with dependency support
    local/pacman-color 3.3.3-1
    Command-line frontend for libalpm aka pacman with color patch
    local/pacman-mirrorlist 20100131-1 (base)
    Arch Linux mirror list for use by pacman
    local/pam 1.1.1-1 (base)
    PAM (Pluggable Authentication Modules) library
    local/pango 1.26.2-1
    A library for layout and rendering of text
    local/pangomm 2.26.0-1
    C++ bindings for pango
    local/parted 2.2-1
    A program for creating, destroying, resizing, checking and copying
    partitions
    local/patch 2.6.1-1 (base-devel)
    A utility to apply patch files to original sources
    local/pciutils 3.1.7-1 (base)
    PCI bus configuration space access library and tools
    local/pcmciautils 016-1 (base)
    Utilities for inserting and removing PCMCIA cards
    local/pcre 8.01-1 (base)
    A library that implements Perl 5-style regular expressions
    local/perl 5.10.1-5 (base)
    Practical Extraction and Report Language
    local/perl-error 0.17016-1
    Perl/CPAN Error module - Error/exception handling in an OO-ish way
    local/perl-locale-gettext 1.05-5
    Permits access from Perl to the gettext() family of functions.
    local/perl-xml-simple 2.18-2
    Simple XML parser for perl
    local/perlxml 2.36-2
    XML::Parser - an XML parser module for perl
    local/pidgin 2.6.6-1
    Multi-protocol instant messaging client
    local/pidgin-facebookchat 1.64-1
    Facebook chat plugin for Pidgin and libpurple messengers.
    local/pixman 0.16.6-1
    Pixman library
    local/pkgconfig 0.23-1 (base-devel)
    A system for managing library compile/link flags
    local/pkgtools 17-1
    A collection of scripts for Arch Linux packages
    local/pm-utils 1.2.6.1-4
    Utilities and scripts for suspend and hibernate power management
    local/polkit 0.96-2
    Application development toolkit for controlling system-wide privileges
    local/polkit-gnome 0.96-3
    PolicyKit integration for the GNOME desktop
    local/popt 1.15-1 (base)
    A commandline option parser
    local/postgresql-libs 8.4.2-4
    Libraries for use with PostgreSQL
    local/ppl 0.10.2-2
    A modern library for convex polyhedra and other numerical abstractions.
    local/ppp 2.4.5-1 (base)
    A daemon which implements the PPP protocol for dial-up networking
    local/preload 0.6.4-2
    Makes applications run faster by prefetching binaries and shared objects
    local/procinfo 19-3 (base)
    Displays useful information from /proc
    local/procps 3.2.8-1 (base)
    Utilities for monitoring your system and processes on your system
    local/psmisc 22.10-1 (base)
    Miscellaneous procfs tools
    local/psutils 1.17-2
    A set of postscript utilities
    local/pycairo 1.8.8-1
    Python bindings for the cairo graphics library
    local/pygobject 2.20.0-1
    Python bindings for GObject
    local/pygtk 2.16.0-2
    Python bindings for the GTK widget set
    local/python 2.6.5-1
    A high-level scripting language
    local/python-mpd 0.2.1-2
    Python MPD client library
    local/qt 4.6.2-1
    A cross-platform application and UI framework
    local/qwt 5.2.0-2
    Qt Widgets for Technical Applications
    local/r128-dri 7.7-1
    Mesa DRI drivers for ATI Rage128
    local/randrproto 1.3.1-1
    X11 RandR extension wire protocol
    local/raptor 1.4.21-1
    A C library that parses RDF/XML/N-Triples into RDF triples
    local/rasqal 0.9.19-1
    a free C library that handles Resource Description Framework (RDF) query
    syntaxes, query construction and query execution returning result bindings
    local/readline 6.1.002-1
    GNU readline library
    local/recode 3.6-3
    Converts files between various character sets and usages
    local/recordproto 1.14-1
    X11 Record extension wire protocol
    local/redland 1.0.10-2
    Library that provides a high-level interface to RDF data
    local/reiserfsprogs 3.6.21-2 (base)
    Reiserfs utilities
    local/renderproto 0.11-1
    X11 Render extension wire protocol
    local/rp-pppoe 3.10-4 (base)
    Roaring Penguin's Point-to-Point Protocol over Ethernet client
    local/rpcbind 0.2.0-1
    portmap replacement which supports RPC over various protocols
    local/run-parts 3.2.2-1
    run scripts or programs in a directory
    local/savage-dri 7.7-1
    Mesa DRI drivers for S3 Sraphics/VIA Savage
    local/saxon 9.2.0.6-1
    XSLT 2.0 / XPath 2.0 / XQuery 1.0 processor for Java - the open source Home
    Edition
    local/scrnsaverproto 1.2.0-1
    X11 Screen Saver extension wire protocol
    local/sdl 1.2.14-1
    A library for portable low-level access to a video framebuffer, audio
    output, mouse, and keyboard
    local/sdl_gfx 2.0.20-1
    SDL Graphic Primitives
    local/sdl_image 1.2.10-2
    A simple library to load images of various formats as SDL surfaces
    local/sdl_mixer 1.2.11-2
    A simple multi-channel audio mixer
    local/sdl_net 1.2.7-3
    A small sample cross-platform networking library
    local/sdl_pango 0.1.2-2
    Pango SDL binding
    local/sdl_perl 2.2.6-3
    A Perl wrapper for SDL
    local/sdl_ttf 2.0.9-2
    A library that allows you to use TrueType fonts in your SDL applications
    local/sdparm 1.04-1 (base)
    An utility similar to hdparm but for SCSI devices
    local/sed 4.2.1-1 (base)
    GNU stream editor
    local/shadow 4.1.4.2-2 (base)
    Shadow password file utilities
    local/shared-mime-info 0.71-1
    Freedesktop.org Shared MIME Info
    local/silc-toolkit 1.1.10-1
    Toolkit for Secure Internet Live Conferencing
    local/sis-dri 7.7-1
    Mesa DRI drivers for SiS
    local/smbclient 3.5.1-1
    Tools to access a server's filespace and printers via SMB
    local/smpeg 0.4.4-5
    SDL MPEG Player Library
    local/sonata 1.6.2.1-1
    Elegant GTK+ music client for MPD
    local/speex 1.2rc1-1.1
    A free codec for free speech
    local/sqlite3 3.6.22-1
    A C library that implements an SQL database engine
    local/squeeze 0.2.3-2 (xfce4)
    Squeeze is a modern and advanced archive manager for the Xfce Desktop
    Environment.
    local/startup-notification 0.10-1
    Monitor and display application startup
    local/sudo 1.7.2p5-1
    Give certain users the ability to run some commands as root
    local/sysfsutils 2.1.0-5 (base)
    System Utilities Based on Sysfs
    local/syslog-ng 3.0.4-3 (base)
    Next-generation syslogd with advanced networking and filtering capabilities
    local/sysvinit 2.86-5 (base)
    Linux System V Init
    local/taglib 1.6.1-1
    library for reading and editing the meta-data of several popular audio
    formats.
    local/talloc 2.0.1-1
    talloc is a hierarchical pool based memory allocator with destructors
    local/tar 1.23-1 (base)
    Utility used to store, backup, and transport files
    local/tcp_wrappers 7.6-11 (base)
    Monitors and Controls incoming TCP connections
    local/tdb 1.2.1-1
    A Trivia Database similar to GDBM but allows simultaneous commits
    local/tdfx-dri 7.7-1
    Mesa DRI drivers for 3dfx
    local/terminal 0.4.4-1 (xfce4)
    A modern terminal emulator primarly for the Xfce desktop environment
    local/texinfo 4.13a-3 (base)
    Utilities to work with and produce manuals, ASCII text, and on-line
    documentation from a single source file
    local/thunar 1.0.1-5 (xfce4)
    new modern file manager for Xfce
    local/ttf-dejavu 2.30-2
    Font family based on the Bitstream Vera Fonts with a wider range of
    characters
    local/ttf-freefont 20090104-2
    A set of free high-quality TrueType fonts covering the UCS character set
    local/ttf-ms-fonts 2.0-2
    Core TTF Fonts from Microsoft
    local/ttf-vista-fonts 1-3
    Microsoft Vista True Type Fonts
    local/tzdata 2010e-1
    Sources for time zone and daylight saving time data
    local/udev 151-3 (base)
    The userspace dev tools (udev)
    local/unixodbc 2.2.14-2
    ODBC is an open specification for providing application developers with a
    predictable API with which to access Data Sources
    local/unzip 6.0-5
    Unpacks .zip archives such as those made by PKZIP
    local/usbutils 0.86-2 (base)
    USB Device Utilities
    local/util-linux-ng 2.17.1-1 (base)
    Miscellaneous system utilities for Linux
    local/vbetool 1.1-1
    vbetool uses lrmi in order to run code from the video BIOS
    local/vi 050325-3 (base)
    The original ex/vi text editor.
    local/videoproto 2.3.0-1
    X11 Video extension wire protocol
    local/vigra 1.6.0-2
    Computer vision library
    local/vim 7.2.385-1
    Vi Improved, a highly configurable, improved version of the vi text editor
    local/virtualbox_bin 3.1.4-3
    Powerful x86 virtualization (Personal Use Binaries Edition).
    local/vlc 1.0.5-5
    A multi-platform MPEG, VCD/DVD, and DivX player
    local/vte 0.22.5-1
    Virtual Terminal Emulator library
    local/wget 1.12-1 (base)
    A network utility to retrieve files from the Web
    local/which 2.20-2 (base)
    A utility to show the full path of commands
    local/wine 1.1.41-1
    A compatibility layer for running Windows programs
    local/wireless_tools 29-3
    Wireless Tools
    local/wpa_supplicant 0.6.10-1 (base)
    A utility providing key negotiation for WPA wireless networks
    local/x264 20100312-1
    free library for encoding H264/AVC video streams
    local/xbitmaps 1.1.0-1
    X.org Bitmap files
    local/xcb-proto 1.6-1
    XML-XCB protocol descriptions
    local/xcb-util 0.3.6-1
    Utility libraries for XC Binding
    local/xchat 2.8.6-5
    A GTK+ based IRC client
    local/xcursor-themes 1.0.2-1
    X.org Cursor themes
    local/xcursor-vanilla-dmz-aa 0.4-5
    Vanilla DMZ AA cursor theme
    local/xdg-utils 1.0.2.20100303-1
    Command line tools that assist applications with a variety of desktop
    integration tasks.
    local/xextproto 7.1.1-1
    X11 various extension wire protocol
    local/xf86-input-evdev 2.3.2-1 (xorg-input-drivers)
    X.org evdev input driver
    local/xf86-input-synaptics 1.2.1-1 (xorg-input-drivers)
    synaptics driver for notebook touchpads
    local/xf86-video-apm 1.2.2-2 (xorg-video-drivers)
    X.org Alliance ProMotion video driver
    local/xf86-video-ark 0.7.2-1 (xorg-video-drivers)
    X.org ark video driver
    local/xf86-video-ati 6.12.4-3 (xorg-video-drivers)
    X.org ati video driver
    local/xf86-video-chips 1.2.2-2 (xorg-video-drivers)
    X.org Chips and Technologies video driver
    local/xf86-video-cirrus 1.3.2-2 (xorg-video-drivers)
    X.org Cirrus Logic video driver
    local/xf86-video-dummy 0.3.2-2 (xorg-video-drivers)
    X.org dummy video driver
    local/xf86-video-fbdev 0.4.1-2 (xorg-video-drivers)
    X.org framebuffer video driver
    local/xf86-video-geode 2.11.6-1 (xorg-video-drivers)
    X.org AMD/Geode LX & NX video driver
    local/xf86-video-glint 1.2.4-2 (xorg-video-drivers)
    X.org GLINT/Permedia video driver
    local/xf86-video-i128 1.3.3-2 (xorg-video-drivers)
    X.org Number 9 I128 video driver
    local/xf86-video-i740 1.3.2-2 (xorg-video-drivers)
    X.org Intel i740 video driver
    local/xf86-video-intel 2.10.0-1 (xorg-video-drivers)
    X.org Intel i810/i830/i915/945G/G965+ video drivers
    local/xf86-video-mach64 6.8.2-2 (xorg-video-drivers)
    X.org mach64 video driver
    local/xf86-video-mga 1.4.11-2 (xorg-video-drivers)
    X.org mga video driver
    local/xf86-video-neomagic 1.2.4-3 (xorg-video-drivers)
    X.org neomagic video driver
    local/xf86-video-nv 2.1.17-1 (xorg-video-drivers)
    X.org nv video driver
    local/xf86-video-r128 6.8.1-2 (xorg-video-drivers)
    X.org ati Rage128 video driver
    local/xf86-video-radeonhd 1.3.0-1 (xorg-video-drivers)
    Experimental Radeon HD video driver for r500 and r600 ATI cards
    local/xf86-video-rendition 4.2.3-1 (xorg-video-drivers)
    X.org Rendition video driver
    local/xf86-video-s3 0.6.3-1 (xorg-video-drivers)
    X.org S3 video driver
    local/xf86-video-s3virge 1.10.3-1 (xorg-video-drivers)
    X.org S3 Virge video driver
    local/xf86-video-savage 2.3.1-2 (xorg-video-drivers)
    X.org savage video driver
    local/xf86-video-siliconmotion 1.7.3-2 (xorg-video-drivers)
    X.org siliconmotion video driver
    local/xf86-video-sis 0.10.2-3 (xorg-video-drivers)
    X.org SiS video driver
    local/xf86-video-sisusb 0.9.3-1 (xorg-video-drivers)
    X.org SiS USB video driver
    local/xf86-video-tdfx 1.4.3-2 (xorg-video-drivers)
    X.org tdfx video driver
    local/xf86-video-trident 1.3.3-3 (xorg-video-drivers)
    X.org Trident video driver
    local/xf86-video-tseng 1.2.3-1 (xorg-video-drivers)
    X.org tseng video driver
    local/xf86-video-v4l 0.2.0-4 (xorg-video-drivers)
    X.org v4l video driver
    local/xf86-video-vesa 2.2.1-1 (xorg xorg-video-drivers)
    X.org vesa video driver
    local/xf86-video-vmware 10.16.9-1 (xorg-video-drivers)
    X.org vmware video driver
    local/xf86-video-voodoo 1.2.3-1 (xorg-video-drivers)
    X.org 3dfx Voodoo1/Voodoo2 2D video driver
    local/xf86dgaproto 2.1-1
    X11 Direct Graphics Access extension wire protocol
    local/xf86miscproto 0.9.3-1
    X11 XFree86-Miscellaneous extension wire protocol
    local/xf86vidmodeproto 2.3-1
    X11 Video Mode extension wire protocol
    local/xfce-utils 4.6.1-2 (xfce4)
    Utilities for Xfce
    local/xfce4-appfinder 4.6.1-2 (xfce4)
    Xfce application finder
    local/xfce4-battery-plugin 0.5.1-2 (xfce4-goodies)
    A battery monitor plugin for the Xfce panel
    local/xfce4-diskperf-plugin 2.1.0-5 (xfce4-goodies)
    Plugin for the Xfce4 panel displaying instant disk/partition performance
    local/xfce4-icon-theme 4.4.3-1 (xfce4)
    A set of icon themes for the Xfce window manager
    local/xfce4-mixer 4.6.1-1 (xfce4)
    The volume control plugin for the Xfce panel
    local/xfce4-panel 4.6.3-1 (xfce4)
    Panel for the Xfce desktop environment
    local/xfce4-session 4.6.1-1 (xfce4)
    A session manager for Xfce
    local/xfce4-settings 4.6.4-1 (xfce4)
    Settings manager for xfce
    local/xfconf 4.6.1-3 (xfce4)
    xfconf.. thingie
    local/xfdesktop 4.6.1-1 (xfce4)
    A desktop manager for Xfce
    local/xfprint 4.6.1-2 (xfce4)
    A print dialog and a printer manager for Xfce
    local/xfsprogs 3.1.1-1 (base)
    XFS filesystem utilities
    local/xfwm4 4.6.1-1 (xfce4)
    Xfce window manager, compatible with Gnome, Gnome2, KDE2, and KDE3
    local/xfwm4-themes 4.6.0-1 (xfce4)
    A set of additionnal themes for the Xfce window manager
    local/xineramaproto 1.2-1
    X11 Xinerama extension wire protocol
    local/xkeyboard-config 1.8-1
    X keyboard configuration files
    local/xorg-apps 7.5-3
    Various X.Org applications
    local/xorg-docs 1.5-1 (xorg)
    X.org documentations
    local/xorg-font-utils 7.5-2
    X.Org font utilities
    local/xorg-fonts-100dpi 1.0.1-3 (xorg)
    X.org 100dpi fonts
    local/xorg-fonts-75dpi 1.0.1-3 (xorg)
    X.org 75dpi fonts
    local/xorg-fonts-alias 1.0.2-1
    X.org font alias files
    local/xorg-fonts-encodings 1.0.3-1
    X.org font encoding files
    local/xorg-fonts-misc 1.0.1-1
    X.org misc fonts
    local/xorg-res-utils 1.0.3-3 (xorg)
    X.Org X11 resource utilities
    local/xorg-server 1.7.5.902-1 (xorg)
    X.Org X servers
    local/xorg-server-utils 7.5-3 (xorg)
    X.Org utilities required by xorg-server
    local/xorg-twm 1.0.4-3 (xorg)
    Tab Window Manager for the X Window System
    local/xorg-utils 7.6-1 (xorg)
    Collection of client utilities used to query the X server
    local/xorg-xauth 1.0.4-1
    X.Org authorization settings program
    local/xorg-xinit 1.2.0-1 (xorg)
    X.Org initialisation program
    local/xorg-xkb-utils 7.5-2
    X.org keyboard utilities
    local/xproto 7.0.16-1
    X11 core wire protocol and auxiliary headers
    local/xsel 1.2.0-1
    XSel is a command-line program for getting and setting the contents of the X
    selection
    local/xterm 255-1 (xorg)
    X Terminal Emulator
    local/xvidcore 1.2.2-1
    XviD is an open source MPEG-4 video codec
    local/xz-utils 4.999.9beta-2
    utils for managing LZMA and XZ compressed files
    local/yaourt-git 20100319-1
    A pacman wrapper with extended features and AUR support
    local/zd1211-firmware 1.4-3
    Firmware for the in-kernel26 zd1211rw wireless driver
    local/zlib 1.2.4-1
    Compression library implementing the deflate compression method found in
    gzip and PKZIP
    local/zvbi 0.2.33-2
    VBI capture and decoding library
    Output of lsmod
    Module Size Used by
    nls_cp437 4513 1
    vfat 8348 1
    fat 43888 1 vfat
    ipv6 237596 22
    snd_hda_codec_analog 51443 1
    i915 267595 2
    drm_kms_helper 21971 1 i915
    i2c_i801 7122 0
    drm 126556 3 i915,drm_kms_helper
    i2c_algo_bit 4219 1 i915
    ndiswrapper 172796 0
    usbhid 33579 0
    hid 61085 1 usbhid
    i2c_core 15369 4 i915,i2c_i801,drm,i2c_algo_bit
    iTCO_wdt 7577 0
    ppdev 4882 0
    lp 6616 0
    video 14871 1 i915
    e1000e 112803 0
    ide_pci_generic 2008 0
    button 3638 1 i915
    iTCO_vendor_support 1453 1 iTCO_wdt
    output 1404 1 video
    ide_core 76951 1 ide_pci_generic
    intel_agp 23225 1
    agpgart 23331 2 drm,intel_agp
    processor 26526 2
    dcdbas 4440 0
    thermal 9326 0
    sg 21079 0
    psmouse 56309 0
    serio_raw 3620 0
    snd_seq_dummy 1099 0
    snd_seq_oss 25304 0
    snd_seq_midi_event 4452 1 snd_seq_oss
    snd_seq 42628 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
    snd_seq_device 4313 3 snd_seq_dummy,snd_seq_oss,snd_seq
    snd_hda_intel 18985 0
    snd_pcm_oss 33693 0
    snd_mixer_oss 14810 1 snd_pcm_oss
    snd_hda_codec 56728 2 snd_hda_codec_analog,snd_hda_intel
    parport_pc 27680 1
    snd_hwdep 5102 1 snd_hda_codec
    snd_pcm 57351 3 snd_hda_intel,snd_pcm_oss,snd_hda_codec
    parport 26575 3 ppdev,lp,parport_pc
    snd_timer 16117 2 snd_seq,snd_pcm
    pcspkr 1347 0
    evdev 6970 8
    snd 43847 11 snd_hda_codec_analog,snd_seq_oss,snd_seq,snd_seq_device,snd_hda_intel,snd_pcm_oss,snd_mixer_oss,snd_hda_codec,snd_hwdep,snd_pcm,snd_timer
    soundcore 5007 1 snd
    snd_page_alloc 5841 2 snd_hda_intel,snd_pcm
    loop 11399 0
    rtc_cmos 7504 0
    rtc_core 12011 1 rtc_cmos
    rtc_lib 1450 1 rtc_core
    ext2 56463 1
    mbcache 4278 1 ext2
    sr_mod 13161 0
    cdrom 31625 1 sr_mod
    sd_mod 24101 3
    usb_storage 34006 2
    pata_acpi 2264 0
    ata_generic 2235 0
    ata_piix 17725 0
    uhci_hcd 19156 0
    libata 135579 3 pata_acpi,ata_generic,ata_piix
    scsi_mod 78933 5 sg,sr_mod,sd_mod,usb_storage,libata
    ehci_hcd 31594 0
    usbcore 118921 6 ndiswrapper,usbhid,usb_storage,uhci_hcd,ehci_hcd

  • Pacman transparent HTTP cache

    Hey all,
    I'm a fairly new Arch user, and to be honest, a fairly new Linux user in general. Over the years I tried so many times to make the transition from Windows to Linux and after finding Arch, I felt it was finally time, but I digress...
    I now run 2 Arch machines here and one Arch virtual machine, but I found myself with a little problem. Having 3 machines meant that it required either 3 times the bandwidth to keep them updated, or a lot of hassle with copying packages around the network. I even experimented with using the Pacman cache directory on an NFS share, but none of these were acceptable to me.
    So this afternoon I sat down and coded a solution I was happy with.
    I run a small Linux server here, Debian based, which serves as a small file server to the local network and also hosts a few services for myself and a friend. This server also runs Lighttpd which I use for developing with PHP and Perl.
    The idea was that this machine would be a mirror for Arch to update from, but I didn't want to mirror everything, just those packages which I used. After much searching through Google I discovered someone who had done something similar for Debian based distributions, apt-cache. It's essentially a small web-server which, when queried for a package, first checks it's local cache, and if it doesn't find the file, it downloads it from an official mirror, both storing it locally and sending it to the client.
    I've never coded in Java personally and I didn't want to have 2 web-servers running when one would suffice, so I set about coding something similar in PHP.
    The end result is 130 lines of code, and a url.rewrite rule, which achieves exactly what I was after. It works like this:
    1) Pacman requests a file from the local server
    2) Local server checks to see if it has the file
    3a) Local server cannot find the file so it requests it from an Arch mirror
    4a) The file is simultaneously downloaded, written to disk and sent to Pacman.
    3b) Local server has the file
    4b) The file is sent to Pacman
    The end result is a transparent cache which will only have to download the file once. An example of the speed increase is as follows:
    # pacman -S --downloadonly kernel26
    kernel26 21.7M 806.4K/s 00:00:28
    # rm /var/cache/pacman/pkg/kernel26-2.6.21.5-1.pkg.tar.gz
    # pacman -S --downloadonly kernel26
    kernel26 21.7M 8.5M/s 00:00:03
    As you can see, after the package was cached on the server, it didn't need re-downloading and as such it transferred to the local machine at LAN speeds.
    My mirror entries for the repositories looks like this:
    Server = http://192.168.0.1/pacman-cache/pkg/current/os/i686/
    Server = http://192.168.0.1/pacman-cache/pkg/extra/os/i686/
    etc....
    So, my question is this; would anyone out there be interested in the code? Right now it still needs a lot of work before it could be made public as there's very little error checking; I need to handle unexpected conditions like a broken download, and I also have to add handling to deal with the db.tar.gz files being updated, but as and when I feel it's ready would anyone use it?
    I'd appreciate any input anyone felt like sharing, even feature requests =^.^=
    PS: I hope this is in the right sub-forum... I didn't think it belonged in the actual Pacman forum, but if it did, apologies!

    Just a little update
    I solved the timeout problem. It wasn't a misconfiguration but rather a bug in the code that was causing it to stall randomly when retrieving a remote package, it'll now happily retrieve multiple packages without a problem.
    The following new features have been added since I last posted:
    Logging support
    It's a little primitive, but it works. The location of the log file is customizable so it should be possible for logrotate to work with it, hence I've not added any rotation system of my own.
    Setup support
    The cache script now functions correctly when initially installing Arch via the /arch/setup script. I've run it through once or twice, but it could do with further testing.
    Testing & Unstable repository support
    Self explanatory really
    Currently the script only supports the i686 architecture (due to some hard-coded paths), I'd need to do some recoding to support x86_64 as well, it's something I'm considering, assuming I can get VMWare to run a 64bit Arch install. Resuming is still on the "maybe" pile as I'm still trying to come up with a way of coding it cleanly, it's a case of trying to balance effort vs reward on this one.
    I'm also currently working on a quick-and-simple administration interface for the cache. It should let you see what files are cached, remove selected ones or an entire repository worth of cache. Perhaps even have the ability to verify the local files against the md5 summary files I build. It's in the early stages right now, but it'll hopefully be complete in the near future.
    Overall it works very well and depending on how many bugs I run into when giving it a real test, I should be able to release it here in the not-too-distant future, then anyone who's interested can play with it and perhaps improve it beyond my original design.

  • Hello Universe 2D 3D Translation

    of course since i hate using command prompt, and i dont understand how the hell it works, i cant get JAR to work, so i cant compile this(which means i have no protection from anyone claiming it as their own.. i dont really care now that ive seen what Java 3D has to offer), but i made this program based on a few formulas ive found(this is before i knew about Java 3D), after i found out about java3D, ive looked all over for a Java 3D tutorial because thats basicly how i learn everything in java, unfourtionally i couldnt find one. Anyways i was hoping if anyone would be so kind to translate this code into the Java 3D form(its like the Hello Universe Demo at Java.net)
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import javax.swing.*;
    import java.awt.Shape;
    * This is like the FontDemo applet in volume 1, except that it
    * uses the Java 2D APIs to define and render the graphics and text.
    public class ThreeDTool extends JApplet implements MouseListener, MouseMotionListener,ActionListener,KeyListener{
        final static Color bg = Color.black;
        final static Color fg = Color.white;
         double x =0;//xcenter
        double y = 0;//ycenter
        double z = 100;///set size of shape
        double zf = 2;
        double xaw = 100;//xaway ///set size of shape
        double yaw = 100;//yaway ///set size of shape
        double scale = 1000;
    //  double tri= .5*100*Math.sqrt(3);
    //     double[] points = {0,tri,-tri,-100,-tri,-tri,100,-tri,-tri,0,tri,-tri,0,0,tri,-100,-tri,-tri,100,-tri,-tri,0,0,tri};
         double[] points = {x-xaw,y-yaw,z,x+xaw,y-yaw,z,x+xaw,y+yaw,z,x-xaw,y+yaw,z,x-xaw,y-yaw,z,x-xaw,y-yaw,z-(zf*z),x-xaw,y+yaw,z-(zf*z),x+xaw,y+yaw,z-(zf*z),x+xaw,y-yaw,z-(zf*z),x-xaw,y-yaw,z-(zf*z),x-xaw,y+yaw,z-(zf*z),x-xaw,y+yaw,z,x+xaw,y+yaw,z,x+xaw,y+yaw,z-(zf*z),x+xaw,y-yaw,z-(zf*z),x+xaw,y-yaw,z};
        double[] points2 = new double[points.length];
        int sides = 3; //sides of shape -1
        double angle = 0;
        double cos = Math.cos(angle);
        double sin = Math.sin(angle);
        int lines;
        int lcount;
        int count;
        double X=0;
        double Y=0;
        double Z=0;
        double X2=0;
        double Y2=0;
        double Z2=0;
         boolean rotateZ=false;
         boolean rotateY=false;
         boolean rotateX=false;
         boolean showName = false;
         double xangle=0;
         double yangle=0;
         double zangle=0;
         int Xcoord;
         int Ycoord;
         boolean zoom=true;
    //     int zoomA = 0;
    // int colorcount=0;
                     public ThreeDTool(javax.swing.JFrame f)
    //        JMenuBar menuBar = new JMenuBar();
    //        JMenu fileMenu = new JMenu("File");
    //        fileMenu.setMnemonic(KeyEvent.VK_F);
    //        fileMenu.getAccessibleContext().setAccessibleDescription("File");
    //        menuBar.add(fileMenu);
    //        JMenuItem menuItem = new JMenuItem("Close", KeyEvent.VK_C);
    //          menuItem.addActionListener(this);
    //          fileMenu.add(menuItem);
    //          JMenu rotateMenu = new JMenu("Rotate");
    //          rotateMenu.setMnemonic(KeyEvent.VK_R);
    //          menuBar.add(rotateMenu);
    //          menuItem = new JMenuItem("Rotate Left",KeyEvent.VK_L);
    //          menuItem.setAccelerator(KeyStroke.getKeyStroke(
    //      KeyEvent.VK_L, ActionEvent.ALT_MASK));
    //       menuItem.addActionListener(this);
    //          rotateMenu.add(menuItem);
    //          menuItem = new JMenuItem("Rotate Right",KeyEvent.VK_R);
    //          menuItem.setAccelerator(KeyStroke.getKeyStroke(
    //      KeyEvent.VK_R, ActionEvent.ALT_MASK));
    //        menuItem.addActionListener(this);
    //          rotateMenu.add(menuItem);
    //          menuItem = new JMenuItem("Rotate Up",KeyEvent.VK_U);
    //          menuItem.setAccelerator(KeyStroke.getKeyStroke(
    //      KeyEvent.VK_U, ActionEvent.ALT_MASK));
    //          menuItem.addActionListener(this);
    //          rotateMenu.add(menuItem);
    //          menuItem = new JMenuItem("Rotate Down",KeyEvent.VK_D);
    //          menuItem.setAccelerator(KeyStroke.getKeyStroke(
    //      KeyEvent.VK_D, ActionEvent.ALT_MASK));
    //          menuItem.addActionListener(this);
    //          rotateMenu.add(menuItem);
    //          f.setJMenuBar(menuBar);
              f.addMouseListener(this);
              f.addMouseMotionListener(this);
        public void init() {
            setBackground(bg);
            setForeground(fg);
            addMouseListener(this);
              addMouseMotionListener(this);
              addKeyListener(this);
         public void actionPerformed(ActionEvent e)
              double rotation = .1;
              String action = e.getActionCommand();
              if(action.equals("Turn Right"))
              while(rotation>0)
                   xangle+=.01;
                   rotateX = true;
                   this.repaint();
                   rotation-=.1;
              if(action.equals("Turn Left"))
              while(rotation>0)
                   xangle-=.01;
                   rotateX = true;
                   this.repaint();
                   rotation-=.1;
              if(action.equals("Turn Up"))
              while(rotation>0)
                   yangle+=.01;
                   rotateY = true;
                   repaint();
                   rotation-=.1;
              if(action.equals("Turn Down"))
              while(rotation>0)
                   yangle-=.01;
                   rotateY = true;
                   repaint();
                   rotation-=.1;
         public void mouseEntered(MouseEvent e)
         public void mouseExited(MouseEvent e)
         public void mouseReleased(MouseEvent e)
         public void keyReleased(KeyEvent e)
         public void keyPressed(KeyEvent e)
              double speed =.05;
              int action = e.getKeyCode();
              if(action==(KeyEvent.VK_DOWN))
                   xangle=-speed;
                   rotateX = true;
                   this.repaint();
                   return;
              if(action==(KeyEvent.VK_UP))
                   xangle=speed;
                   rotateX = true;
                   this.repaint();
                   return;
              if(action==(KeyEvent.VK_Z))
                   zangle-=.001;
                   rotateZ = true;
                   this.repaint();
                   return;
              if(action==(KeyEvent.VK_X))
                   zangle+=.001;
                   rotateZ = true;
                   this.repaint();
                   return;
              if(action==(KeyEvent.VK_LEFT))
                   yangle=-speed;
                   rotateY = true;
                   repaint();
                   return;
              if(action==(KeyEvent.VK_RIGHT))
                   yangle=speed;
                   rotateY = true;
                   repaint();
                   return;
              if(action==(KeyEvent.VK_EQUALS))
                   x+=10;
                   zoom = true;
                   repaint();
                   return;
              if(action==(KeyEvent.VK_MINUS))
                   x-=10;
                   zoom = true;
                   repaint();
                   return;
              showName = true;
              repaint();
         public void keyTyped(KeyEvent e)
         public void mousePressed(MouseEvent e)
              Xcoord=e.getX();
              Ycoord=e.getY();
              System.out.println("Click: "+Xcoord + " " + Ycoord);
         public void mouseMoved(MouseEvent e)
         public void mouseDragged(MouseEvent e)
              double speed =.03;
              if(Ycoord < e.getY())
                  System.out.println("DragLeft: "+Xcoord + " " + Ycoord);
                   xangle=-speed;
                   rotateX = true;
                   this.repaint();
              if(Xcoord < e.getX())
                   System.out.println("DragUp: "+Xcoord + " " + Ycoord);
                   yangle=speed;
                   rotateY = true;
                   repaint();
              if(Ycoord > e.getY())
                   System.out.println("DragRight: "+Xcoord + " " + Ycoord);
                   xangle=speed;
                   rotateX = true;
                   repaint();
              if(Xcoord > e.getX())
                   System.out.println("DragDown: "+Xcoord + " " + Ycoord);
                   yangle=-speed;
                   rotateY = true;
                   repaint();
              Xcoord = e.getX();
              Ycoord = e.getY();
         public void mouseClicked(MouseEvent e)
        public void paint(Graphics g) {
            Graphics2D g2 = (Graphics2D) g;
              g2.translate(500,350);
              if(rotateX || rotateY || rotateZ)
                   g2.setPaint(Color.black);
                   g2.fill(new Rectangle2D.Double(-500,-350,1000,700));
              g2.setPaint(fg);
              if(rotateY)
               System.out.println("RotateY");
             lines = points.length/3;
             cos = Math.cos(yangle);
             sin = Math.sin(yangle);
             lcount = lines;
             count =0;
             Y = points[1];
             X = (points[0]*cos)-(points[2]*sin);
             Z = (points[0]*sin)+(points[2]*cos);
             GeneralPath filledPolygon = new GeneralPath(GeneralPath.WIND_EVEN_ODD,points.length);
              filledPolygon.moveTo((float)((scale*X)/(Z+scale)+x),(float)((scale*Y)/(Z+scale)+x));  
             while(lines>0)
                    X2=X;
                  Y2=Y;
                  Z2=Z;
    //              X = points[count];
                  Y = points[count+1];
    //              Z = points[count+2];
                  X = (points[count]*cos)-(points[count+2]*sin);
                  Z = (points[count]*sin)+(points[count+2]*cos);
                    points2[count]=X;     
                    points2[count+1]=Y;
                    points2[count+2]=Z;
    //              points2[count]=(X*cos)-(Z*sin);
    //              points2[count+1]=Y;
    //              points2[count+2]=(X*sin)+(Z*cos);
                  count+=3;
            if(lines<points.length/3-sides)
                  if(lines == lcount)
                  g2.draw(new Line2D.Double((int)(scale*X)/(Z+scale)+x,(int)(scale*Y)/(Z+scale)+x,(int)(scale*X)/(Z+scale)+x,(int)(scale*Y)/(Z+scale)+x));
                  if(lines != lcount)
                  g2.draw(new Line2D.Double((int)(scale*X)/(Z+scale)+x,(int)(scale*Y)/(Z+scale)+x,(int)(scale*X2)/(Z2+scale)+x,(int)(scale*Y2)/(Z2+scale)+x));
               else if(lines>points.length/3-sides)
                   filledPolygon.lineTo((float)((scale*X)/(Z+scale)+x),(float)((scale*Y)/(Z+scale)+x));     
             else
                  filledPolygon.lineTo((float)((scale*X)/(Z+scale)+x),(float)((scale*Y)/(Z+scale)+x));     
                  filledPolygon.closePath();
                   g2.setPaint(new Color(0,100,150));
                   g2.fill(filledPolygon);
                   g2.setPaint(Color.white);
                     lines--;
             for(int j = 0; j<points.length;j++)
             points[j]=points2[j];
             if(rotateX)
               System.out.println("RotateX");
             lines = points.length/3;
             cos = Math.cos(xangle);
             sin = Math.sin(xangle);
             lcount = lines;
             count =0;
             X = points[count];
             Y = (points[count+2]*sin)+(points[count+1]*cos);
             Z = (points[count+2]*cos)-(points[count+1]*sin);
             GeneralPath filledPolygon = new GeneralPath(GeneralPath.WIND_EVEN_ODD,points.length);
              filledPolygon.moveTo((float)((scale*X)/(Z+scale)+x),(float)((scale*Y)/(Z+scale)+x));  
             while(lines>0)
                  X2=X;
                  Y2=Y;
                  Z2=Z;
                  X = points[count];
    //              Y = points[count+1];
    //              Z = points[count+2];
                  Y = (points[count+2]*sin)+(points[count+1]*cos);
                  Z = (points[count+2]*cos)-(points[count+1]*sin);
                    points2[count]=X;     
                    points2[count+1]=Y;
                    points2[count+2]=Z;
    //              points2[count]=(Z*cos)-(Y*sin);
    //              points2[count+1]=Y;
    //              points2[count+2]=(Z*sin)+(Y*cos);
                  count+=3;
    if(lines<points.length/3-sides)
                  if(lines == lcount)
                  g2.draw(new Line2D.Double((int)(scale*X)/(Z+scale)+x,(int)(scale*Y)/(Z+scale)+x,(int)(scale*X)/(Z+scale)+x,(int)(scale*Y)/(Z+scale)+x));
                  if(lines != lcount)
                  g2.draw(new Line2D.Double((int)(scale*X)/(Z+scale)+x,(int)(scale*Y)/(Z+scale)+x,(int)(scale*X2)/(Z2+scale)+x,(int)(scale*Y2)/(Z2+scale)+x));
               else if(lines>points.length/3-sides)
                   filledPolygon.lineTo((float)((scale*X)/(Z+scale)+x),(float)((scale*Y)/(Z+scale)+x));     
             else
                  filledPolygon.lineTo((float)((scale*X)/(Z+scale)+x),(float)((scale*Y)/(Z+scale)+x));     
                  filledPolygon.closePath();
                   g2.setPaint(new Color(0,100,150));
                   g2.fill(filledPolygon);
                   g2.setPaint(Color.white);
                     lines--;
             for(int j = 0; j<points.length;j++)
             points[j]=points2[j];
    //       colorcount = 0;
            if(rotateZ)
               System.out.println("RotateZ");
             lines = points.length/3;
             cos = Math.cos((int)zangle);
             sin = Math.sin((int)zangle);
             lcount = lines;
             count =0;
             while(lines>0)
                  X2=X;
                  Y2=Y;
                  Z2=Z;
    //              X = points[count];
    //              Y = points[count+1];
                  Z = points[count+2];
                  X = (points[count]*cos)-(points[count+1]*sin);
                  Y = (points[count]*sin)+(points[count+1]*cos);
                  System.out.print("X:"+X+"Y:"+Y+"Z:"+Z);
                    points2[count]=X;     
                    points2[count+1]=Y;
                    points2[count+2]=Z;
    //              points2[count]=(X*cos)-(Y*sin);
    //              points2[count+1]=(X*sin)+(Y*cos);
    //              points2[count+2]=Z;
                  count+=3;
                  if(lines == lcount)
                  g2.draw(new Line2D.Double((int)(scale*X)/(Z+scale)+x,(int)(scale*Y)/(Z+scale)+x,(int)(scale*X)/(Z+scale)+x,(int)(scale*Y)/(Z+scale)+x));
                  if(lines != lcount)
                  g2.draw(new Line2D.Double((int)(scale*X)/(Z+scale)+x,(int)(scale*Y)/(Z+scale)+x,(int)(scale*X2)/(Z2+scale)+x,(int)(scale*Y2)/(Z2+scale)+x));
                     lines--;
             for(int j = 0; j<points.length;j++)
             points[j]=points2[j];
    /*        if(zoom)
             System.out.println("Zoom");
             lines = points.length/3;
             lcount = lines;
             count =0;
             while(lines>0)
                   Z = points[count+2];
                  // if(Z<=0)
             //      Z+=zoomA;
             // if(Z>0)
                   Z-=zoomA;
                  X = points[count];
              //      if(X<=0)
            //       X+=zoomA;
            //       if(Z>0)
                   X-=zoomA;
                  Y = points[count+1];
        //           if(Y<=0)
      //             Y+=zoomA;
    //               if(Y>0)
                   Y-=zoomA;
                   points2[count]=X;     
                    points2[count+1]=Y;
                    points2[count+2]=Z;
                   if(lines == lcount)
                  g2.draw(new Line2D.Double((int)(scale*X)/(Z+scale),(int)(scale*Y)/(Z+scale),(int)(scale*X)/(Z+scale),(int)(scale*Y)/(Z+scale)));
                  if(lines != lcount)
                  g2.draw(new Line2D.Double((int)(scale*X)/(Z+scale),(int)(scale*Y)/(Z+scale),(int)(scale*X2)/(Z2+scale),(int)(scale*Y2)/(Z2+scale)));
                     lines--;     
             for(int j = 0; j<points.length;j++)
             points[j]=points2[j];
             if(showName)
                  g2.drawString("Made by Chris Hules", 350,300);
              rotateY = false;
              rotateX = false;
              rotateZ = false;
              showName = false;
              zoom = false;
        public static void main(String s[])
            JFrame f = new JFrame("3DTool");
            f.addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {System.exit(0);}
            JApplet applet = new ThreeDTool(f);
            f.getContentPane().add("Center", applet);
            applet.init();
            f.pack();
            f.setSize(new Dimension(1000,700));
            f.show();
    }basicly... if you havent read through the code... arrow keys and mouse drag rotate the shape and - and = move the shape, there are a few bugs which i have to work out, there is another shape(located in the commented array) but if you use it you have to change variable sides to 2 instead of 3

    Hi some-guy94 :-)
    Both checkboxes concerning 3d acceleration are active, with vmplayer and also with virtualbox. For the last one, I've also spent 128 MB of graphical memory, but no way to make that f****g xmoto working in an arch guest with a reasonable speed.
    Ubuuuuuuuuuuntuuuu, one night before halloween, what's wrong here :-)
    Lots of love to all
    Eddi
    Last edited by etienne (2009-10-30 21:47:27)

  • [Solved] journalctl output is truncated

    Hi,
    it's maybe a really dumb question but I didn't get it why it isn't working
    I want to look at the log of my system but it is always truncated at 9:00 am and states "-- Reboot --" but I have an uptime of 5 days.  That is how it looks today:
    $ uptime
    09:45:23 up 5 days, 18:13, 3 users, load average: 0,52, 0,47, 0,46
    $ sudo journalctl
    -- Logs begin at Mo 2013-10-07 15:32:51 CEST, end at Mo 2014-01-20 09:34:29 CET. --
    Okt 07 15:32:51 wigrid systemd[26707]: Stopping Default.
    Okt 07 15:32:51 wigrid systemd[26707]: Stopped target Default.
    Okt 07 15:32:51 wigrid systemd[26707]: Starting Shutdown.
    Okt 07 15:32:51 wigrid systemd[26707]: Reached target Shutdown.
    Okt 07 15:32:51 wigrid systemd[26707]: Starting Exit the Session...
    -- Reboot --
    Jan 20 09:01:01 wigrid CROND[16397]: pam_unix(crond:session): session closed for user http
    I want to see the log of this night, but there is no way. I have this problem for some days now and also tried to reboot, but then is still the issue, that the log disappear on 9:00 am. Could this be caused by a log rotating system? Or log size config option?
    Thanks,
    kabum
    Last edited by kabum (2014-01-26 22:37:42)

    I don't know why (it's not clear from the man page) but, at least for me, log entries are not listed chronologically by default.
    Have you tried calling journalctl with some arguments, like:
    journalctl -r
    for reverse ordering?
    Alternatively, you could output only the last lines:
    journalctl -n 100
    which again sorts entries by time.
    Or maybe this is not related to your problem, in which case I'm sorry for not being helpful.

  • Banner/Button Ad Problem...Please Help...Going NUTS!

    Hi I was wondering if I could get some help here...I work at
    a company who's headquarters have an extremely old, outdated banner
    rotator system. We recently added designing Flash button and banner
    ads into our lineup of advertising strategies. After sending a few
    files to headquarters, we were notified that the URL to the
    advertiser's site needs to be embedded within the Flash file. No
    problem, usually...I started out by making a transparent button
    with only the "hit" stage having a keyframe (the others being
    blank). This layer masks the entire ad so at any given time, a user
    can click through to the desired site. I defined the URL using
    on (release) {
    getURL("
    http://www.yourwebsite.com","_blank");
    worked without a problem and clicked through to the site when
    testing in Flash Player. I later got word from headquarters that
    the click-thru wasn't working - no pointer icon upon rollover or
    anything. After previous experiences like this with some other
    banner rotator companies, I figured maybe they weren't compatible
    with actionscript 3 yet so I exported the file using actionscript 2
    compatibility and on that round, they said they got the pointer
    icon upon rollover, but the click-thru still wasn't working. One of
    their techs received the native flash file via email from me and
    said the only thing that was wrong was that the button layer was on
    the bottom layer and should have been on the top. After a new file
    was sent with that adjustment (and nothing else!), they STILL said
    it wasn't working!Meanwhile, I created these fully functional
    buttons within a blank flash file, 1 layer, with just the button in
    the library in hopes I could use it as a type of template file,
    where I could complete the Flash ad and simply drag that button
    into my library, posting it as a layer at the top. It seems like it
    works standalone just fine, but every time I try to merge it into
    the library on an already existing Flash file, I get the pointer
    icon but a compiler message saying 1087: Syntax error: extra
    characters found after end of program. Seems the only way this is
    working so far is to re-create the existing Flash files. Does
    anyone have any advice as to how I can get this working? I do have
    the native flash files I can email if need be. We're all thinking
    that there's just nobody at the banner rotator company that can
    properly tell us how they need their files. Keep in mind that the
    trouble doesn't start until they are uploaded into their
    rotator...flash player and the swf on a blank html page uploaded to
    my server both work without a problem. I almost dropped dead when
    they told me this afternoon that they are currently utilizing Flash
    2004 and can't work with anything else. HELP!

    The code that you're showing should work just fine. Just
    publish the file as Flash player 6 or 7, it should work.

  • [SOLVED]Cannot get 1680x1050

    Hey all
    New to arch, managed to get it all installed with Gnome. Problem I have is the screen display, with the standard arch setup with this xorg.conf:
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "dbe"
    Load "glx"
    Load "dri"
    Load "extmod"
    Load "dri2"
    Load "record"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "Dac6Bit" # [<bool>]
    #Option "Dac8Bit" # [<bool>]
    #Option "BusType" # [<str>]
    #Option "CPPIOMode" # [<bool>]
    #Option "CPusecTimeout" # <i>
    #Option "AGPMode" # <i>
    #Option "AGPFastWrite" # [<bool>]
    #Option "AGPSize" # <i>
    #Option "GARTSize" # <i>
    #Option "RingSize" # <i>
    #Option "BufferSize" # <i>
    #Option "EnableDepthMoves" # [<bool>]
    #Option "EnablePageFlip" # [<bool>]
    #Option "NoBackBuffer" # [<bool>]
    #Option "DMAForXv" # [<bool>]
    #Option "FBTexPercent" # <i>
    #Option "DepthBits" # <i>
    #Option "PCIAPERSize" # <i>
    #Option "AccelDFS" # [<bool>]
    #Option "IgnoreEDID" # [<bool>]
    #Option "CustomEDID" # [<str>]
    #Option "DisplayPriority" # [<str>]
    #Option "PanelSize" # [<str>]
    #Option "ForceMinDotClock" # <freq>
    #Option "ColorTiling" # [<bool>]
    #Option "VideoKey" # <i>
    #Option "RageTheatreCrystal" # <i>
    #Option "RageTheatreTunerPort" # <i>
    #Option "RageTheatreCompositePort" # <i>
    #Option "RageTheatreSVideoPort" # <i>
    #Option "TunerType" # <i>
    #Option "RageTheatreMicrocPath" # <str>
    #Option "RageTheatreMicrocType" # <str>
    #Option "ScalerWidth" # <i>
    #Option "RenderAccel" # [<bool>]
    #Option "SubPixelOrder" # [<str>]
    #Option "ShowCache" # [<bool>]
    #Option "ClockGating" # [<bool>]
    #Option "VGAAccess" # [<bool>]
    #Option "ReverseDDC" # [<bool>]
    #Option "LVDSProbePLL" # [<bool>]
    #Option "AccelMethod" # <str>
    #Option "DRI" # [<bool>]
    #Option "ConnectorTable" # <str>
    #Option "DefaultConnectorTable" # [<bool>]
    #Option "DefaultTMDSPLL" # [<bool>]
    #Option "TVDACLoadDetect" # [<bool>]
    #Option "ForceTVOut" # [<bool>]
    #Option "TVStandard" # <str>
    #Option "IgnoreLidStatus" # [<bool>]
    #Option "DefaultTVDACAdj" # [<bool>]
    #Option "Int10" # [<bool>]
    #Option "EXAVSync" # [<bool>]
    #Option "ATOMTVOut" # [<bool>]
    #Option "R4xxATOM" # [<bool>]
    #Option "ForceLowPowerMode" # [<bool>]
    #Option "DynamicPM" # [<bool>]
    #Option "NewPLL" # [<bool>]
    #Option "ZaphodHeads" # <str>
    Identifier "Card0"
    Driver "radeon"
    VendorName "ATI Technologies Inc"
    BoardName "R420 JK [Radeon X800]"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection]
    All I can get is 1280x1024. I have antiX which is based on Mepis on a different partition, it is also based on Debian testing so should have all the newer xorg's etc, Now that displays 1680x1050 just fine, so I thought I would try and copy over that xorg.conf to arch which is:
    Section "ServerFlags"
    Option "DontZap" "Off"
    Option "AllowMouseOpenFail" "true"
    Option "BlankTime" "0"
    Option "OffTime" "0"
    EndSection
    Section "InputDevice"
    Identifier "Touchpad"
    Driver "synaptics"
    Option "Device" "/dev/psaux"
    Option "Protocol" "auto-dev"
    Option "LeftEdge" "1700"
    Option "RightEdge" "5300"
    Option "TopEdge" "1700"
    Option "BottomEdge" "4200"
    Option "FingerLow" "25"
    Option "FingerHigh" "30"
    Option "MaxTapTime" "180"
    Option "MaxTapMove" "220"
    Option "VertScrollDelta" "100"
    Option "HorizScrollDelta" "0"
    Option "MinSpeed" "0.09"
    Option "MaxSpeed" "0.18"
    Option "AccelFactor" "0.0015"
    Option "SHMConfig" "on"
    EndSection
    Section "InputDevice"
    Driver "synaptics"
    Identifier "ALPS Touchpad"
    Option "Device" "/dev/input/mouse0"
    Option "Protocol" "event"
    Option "LeftEdge" "130"
    Option "RightEdge" "840"
    Option "TopEdge" "130"
    Option "BottomEdge" "640"
    Option "FingerLow" "7"
    Option "FingerHigh" "8"
    Option "MaxTapTime" "180"
    Option "MaxTapMove" "110"
    Option "EmulateMidButtonTime" "75"
    Option "VertScrollDelta" "20"
    Option "HorizScrollDelta" "0"
    Option "MinSpeed" "0.25"
    Option "MaxSpeed" "0.50"
    Option "AccelFactor" "0.030"
    Option "EdgeMotionMinSpeed" "200"
    Option "EdgeMotionMaxSpeed" "200"
    Option "UpDownScrolling" "1"
    Option "CircularScrolling" "1"
    Option "CircScrollDelta" "0.1"
    Option "CircScrollTrigger" "2"
    Option "SHMConfig" "on"
    EndSection
    Section "InputDevice"
    Identifier "Appletouch"
    Driver "synaptics"
    Option "Device" "/dev/psaux"
    Option "Protocol" "auto-dev"
    Option "LeftEdge" "100"
    Option "RightEdge" "1120"
    Option "TopEdge" "50"
    Option "BottomEdge" "310"
    Option "FingerLow" "25"
    Option "FingerHigh" "30"
    Option "MaxTapMove" "220"
    Option "TapButton1" "1"
    Option "TapButton2" "3"
    Option "TapButton3" "2"
    Option "MinSpeed" "0.79"
    Option "MaxSpeed" "0.88"
    Option "AccelFactor" "0.0015"
    Option "SHMConfig" "on"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "unknown"
    ModelName "unknown"
    Option "DPMS" "true"
    HorizSync 30-75
    VertRefresh 55-70
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "radeon"
    BoardName "unknown"
    Screen 0
    #Option "UseDisplayDevice" "dfp"
    #Option "MonitorLayout" "crt,crt"
    #BusID "PCI:1:0:0"
    #Option "sw_cursor" # needed for some ati cards
    #Option "hw_cursor"
    #Option "NoAccel"
    #Option "ShowCache"
    #Option "ShadowFB"
    #Option "UseFBDev"
    #Option "Rotate"
    Option "UseInternalAGPGART" "no"
    Option "XAANoOffscreenPixmaps" "true"
    # savage special options, use with care
    #Option "NoUseBios"
    #Option "BusType" "PCI"
    Option "DmaMode" "None"
    # nvidia special options, use with care
    Option "CursorShadow" "1"
    Option "CursorShadowAlpha" "63"
    Option "CursorShadowYOffset" "2"
    Option "CursorShadowXOffset" "4"
    Option "FlatPanelProperties" "Scaling = native"
    Option "NoLogo" "true"
    Option "UseEDID" "true"
    Option "AddARGBGLXVisuals" "true"
    Option "RenderAccel" "true"
    #Option "AllowGLXWithComposite" "true"
    EndSection
    Section "Device"
    Identifier "Card1"
    Driver "radeon"
    BoardName "unknown"
    Screen 1
    #Option "MonitorLayout" "crt,crt"
    #BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultColorDepth 24
    SubSection "Display"
    Depth 8
    Modes "1680x1050"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1680x1050"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1680x1050"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1680x1050"
    EndSubSection
    SubSection "Display"
    Depth 32
    Modes "1680x1050"
    EndSubSection
    # Only the official NVIDIA driver supports twinview
    # these setting are an example
    Option "TwinView" "false"
    Option "SecondMonitorVendorName" "unknown"
    Option "SecondMonitorModelName" "unknown"
    Option "SecondMonitorHorizSync" "30-75"
    Option "SecondMonitorVertRefresh" "55-70"
    #Option "MetaModes" "1024x768, 1024x768"
    Option "TwinViewOrientation" "RightOf"
    Option "ConnectedMonitor" "dfp,dfp"
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    It gets me a little closer but not correct yet, this has a max display of 1600x1200 but still no 1680x1050. The card is an older ati x800 which uses the old ATI 9-3 driver, which can't be used in the newer xorg's, but like with antiX the open source driver is fine. glxgears runs fine. But I just cannot get my screen to displa its native res. Any help would be great.
    Thanks
    Last edited by voorhees1979 (2010-04-18 22:30:24)

    Hi
    Thanks again for trying to help me. Removing xorg.conf and then rebooting didnt help me. This is from xrandr again:
    [voorhees@myhost ~]$ xrandr
    Screen 0: minimum 320 x 200, current 1024 x 768, maximum 4096 x 4096
    VGA-0 connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
    1024x768 60.0*
    800x600 60.3 56.2
    848x480 60.0
    640x480 59.9 59.9
    -Qs ati:
    [voorhees@myhost ~]$ pacman -Qs ati
    local/alsa-lib 1.0.22-1
    An alternative implementation of Linux sound support
    local/alsa-oss 1.0.17-1
    OSS compatibility library
    local/alsa-utils 1.0.22-2
    An alternative implementation of Linux sound support
    local/ati-dri 7.7.1-1
    Mesa DRI drivers for AMD/ATI Radeon
    local/brasero 2.30.0-1
    A disc burning application for Gnome
    local/cdrkit 1.1.10-1
    Suite of programs for CD/DVD recording, ISO image creation, and audio CD extraction
    local/clutter 1.2.4-1
    A GObject based library for creating fast, visually rich graphical user interfaces
    local/coreutils 8.4-2 (base)
    The basic file, shell and text manipulation utilities of the GNU operating system
    local/dasher 4.10.1-2 (gnome-extra)
    Information-efficient text-entry interface, driven by natural continuous pointing gestures
    local/diffutils 2.9-1 (base)
    Utility programs used for creating patch files
    local/docbook-xml 4.5-4
    A widely used XML scheme for writing documentation and help
    local/evolution 2.30.0.1-1 (gnome-extra)
    Integrated Workgroup and Personal Information Management for Gnome
    local/evolution-data-server 2.30.0-2
    Evolution Data Server provides a central location for addressbook and calendar in the GNOME Desktop
    local/file 5.04-2 (base)
    File type identification utility
    local/gamin 0.1.10-1
    Gamin is a file and directory monitoring system defined to be a subset of the FAM (File Alteration
    Monitor) system.
    local/gconf 2.28.1-1
    A configuration database system
    local/gdm 2.30.0-1 (gnome-extra)
    Gnome Display Manager (a reimplementation of xdm)
    local/gettext 0.17-3 (base)
    GNU internationalization library
    local/gnome-disk-utility 2.30.1-1
    GNOME libraries and applications for dealing with storage devices
    local/gnome-doc-utils 0.20.0-1
    Documentation utilities for Gnome
    local/gnome-menus 2.30.0-1
    GNOME menu specifications
    local/gnome-mime-data 2.18.0-4 (gnome)
    The base MIME and Application database for GNOME
    local/gnome-system-tools 2.30.0-2
    Gnome System Configuration Utilities
    local/gnome2-user-docs 2.30.0-1 (gnome)
    User documentation for GNOME2
    local/guile 1.8.7-2
    Guile is a portable, embeddable Scheme implementation written in C
    local/hal-info 0.20091130-1
    Hardware Abstraction Layer information files
    local/hdparm 9.28-1
    A shell utility for manipulating Linux IDE drive/driver parameters
    local/heimdal 1.3.2-1
    Implementation of Kerberos V5 libraries
    local/icu 4.4-2
    International Components for Unicode library
    local/imagemagick 6.6.0.10-1
    An image viewing/manipulation program
    local/imlib2 1.4.2-6
    Library that does image file loading and saving as well as rendering, manipulation, arbitrary polygon
    support
    local/initscripts 2010.01-1 (base)
    System initialization/bootup scripts
    local/iputils 20100214-2 (base)
    IP Configuration Utilities (and Ping)
    local/jasper 1.900.1-5
    A software-based implementation of the codec specified in the emerging JPEG-2000 Part-1 standard
    local/libbonobo 2.24.3-1
    A set of language and system independant CORBA interfaces for creating reusable components
    local/libcanberra 0.23-1
    A small and lightweight implementation of the XDG Sound Theme Specification
    local/libcroco 0.6.2-1
    GNOME CSS2 parsing and manipulation toolkit
    local/libdatrie 0.2.3-1
    Libdatrie is an implementation of double-array structure for representing trie, as proposed by Junichi
    Aoe.
    local/libdvdread 4.1.3-1
    libdvdread provides a simple foundation for reading DVD video disks
    local/libgail-gnome 1.20.2-1 (gnome)
    GNOME Accessibility Implementation Library for gnomeui and libbonoboui
    local/libgdiplus 2.6.2-1
    An Open Source Implementation of the GDI+ API
    local/libgksu 2.0.12-1
    gksu authorization library
    local/libgtop 2.28.1-1
    A library that read information about processes and the running system
    local/libgweather 2.30.0-1
    Provides access to weather information from the net
    local/libical 0.44-1
    An open source reference implementation of the icalendar data type and serialization format
    local/libidn 1.16-1
    Implementation of the Stringprep, Punycode and IDNA specifications
    local/libnice 0.0.11-1
    An implementation of the IETF's draft ICE (for p2p UDP data streams)
    local/libnl 1.1-1
    Library for applications dealing with netlink sockets
    local/libnotify 0.4.5-1.1
    Desktop notification library
    local/libproxy 0.2.3-1
    A library that provides automatic proxy configuration management
    local/libsasl 2.1.23-2
    Cyrus Simple Authentication Service Layer (SASL) library
    local/libtiff 3.9.2-2
    Library for manipulation of TIFF images
    local/libunique 1.1.6-2
    Library for writing single instance applications
    local/libusb 0.1.12-4 (base)
    Library to enable user space application programs to communicate with USB devices
    local/libvisual 0.4.0-2
    Abstraction library that comes between applications and audio visualisation plugins
    local/libxau 1.0.5-1
    X11 authorisation library
    local/libxfont 1.4.1-1
    X11 font rasterisation library
    local/libxkbfile 1.0.6-1
    X11 keyboard file manipulation library
    local/libxslt 1.1.26-1
    XML stylesheet transformation library
    local/logrotate 3.7.8-1 (base)
    Rotates system logs automatically
    local/mcpp 2.7.2-2
    Matsui's CPP implementation precisely conformed to standards
    local/mkinitcpio 0.6.3-1 (base)
    Modular initramfs image creation utility
    local/mono 2.6.3-1
    Free implementation of the .NET platform including runtime and compiler
    local/mono-addins 0.4-3
    a generic framework for creating extensible applications and for creating libraries which extend those
    applications
    local/mozilla-common 1.4-1
    Common Initialization Profile for Mozilla.org products
    local/mpfr 2.4.2-2
    Multiple-precision floating-point library
    local/musicbrainz 2.1.5-3
    The second generation incarnation of the CD Index
    local/ncurses 5.7-2 (base)
    System V Release 4.0 curses emulation library
    local/ndesk-dbus 0.6.0-2
    C# implementation of D-Bus
    local/ndesk-dbus-glib 0.4.1-2
    C# GLib implementation of D-Bus
    local/net-tools 1.60-14 (base)
    Configuration tools for Linux networking
    local/notification-daemon 0.4.0-4 (gnome)
    Notification daemon for the desktop notifications framework
    local/pam 1.1.1-1 (base)
    PAM (Pluggable Authentication Modules) library
    local/parted 2.2-1
    A program for creating, destroying, resizing, checking and copying partitions
    local/pciutils 3.1.7-1 (base)
    PCI bus configuration space access library and tools
    local/polkit 0.96-2
    Application development toolkit for controlling system-wide privileges
    local/polkit-gnome 0.96-3
    PolicyKit integration for the GNOME desktop
    local/procinfo 19-3 (base)
    Displays useful information from /proc
    local/python-pysqlite 2.5.5-1
    A Python DB-API 2.0 interface for the SQLite embedded relational database engine
    local/rarian 0.8.1-1
    Documentation meta-data library, designed as a replacement for Scrollkeeper.
    local/seahorse 2.30.0-1 (gnome-extra)
    GNOME application for managing PGP keys.
    local/sound-juicer 2.28.2-1 (gnome-extra)
    A cd ripper application
    local/startup-notification 0.10-1
    Monitor and display application startup
    local/syslog-ng 3.1.0-1 (base)
    Next-generation syslogd with advanced networking and filtering capabilities
    local/t1lib 5.1.2-2
    Library for generating character- and string-glyphs from Adobe Type 1 fonts
    local/texinfo 4.13a-3 (base)
    Utilities to work with and produce manuals, ASCII text, and on-line documentation from a single source
    file
    local/tomboy 1.2.0-2 (gnome-extra)
    Desktop note-taking application for Linux and Unix
    local/unixodbc 2.2.14-2
    ODBC is an open specification for providing application developers with a predictable API with which
    to access Data Sources
    local/upower 0.9.2-2
    Abstraction for enumerating power devices, listening to device events and querying history and
    statistics
    local/wpa_supplicant 0.6.10-2 (base)
    A utility providing key negotiation for WPA wireless networks
    local/xf86-video-ati 6.12.192-1 (xorg-video-drivers)
    X.org ati video driver
    local/xkeyboard-config 1.8-1
    X keyboard configuration files
    local/xorg-apps 7.5-3
    Various X.Org applications
    local/xorg-docs 1.5-1 (xorg)
    X.org documentations
    local/xorg-xauth 1.0.4-1
    X.Org authorization settings program
    local/xorg-xinit 1.2.1-1 (xorg)
    X.Org initialisation program
    -Qs xorg:
    [voorhees@myhost ~]$ pacman -Qs xorg
    local/xf86-input-acecad 1.4.0-1 (xorg-input-drivers)
    X.Org acecad tablet input driver
    local/xf86-input-aiptek 1.3.0-1 (xorg-input-drivers)
    X.Org Aiptek USB Digital Tablet input driver
    local/xf86-input-elographics 1.2.3-3 (xorg-input-drivers)
    X.org Elographics TouchScreen input driver
    local/xf86-input-evdev 2.3.2-1 (xorg-input-drivers)
    X.org evdev input driver
    local/xf86-input-fpit 1.3.0-3 (xorg-input-drivers)
    X.Org Fujitsu Stylistic Tablet PC input driver
    local/xf86-input-hyperpen 1.3.0-3 (xorg-input-drivers)
    X.Org HyperPen Tablet input driver
    local/xf86-input-joystick 1.5.0-1 (xorg-input-drivers)
    X.Org Joystick input driver
    local/xf86-input-keyboard 1.4.0-1 (xorg-input-drivers)
    X.Org keyboard input driver
    local/xf86-input-mouse 1.5.0-1 (xorg-input-drivers)
    X.org mouse input driver
    local/xf86-input-mutouch 1.2.1-4 (xorg-input-drivers)
    X.org mutouch input driver
    local/xf86-input-penmount 1.4.1-1 (xorg-input-drivers)
    X.org penmount input driver
    local/xf86-input-synaptics 1.2.1-1 (xorg-input-drivers)
    synaptics driver for notebook touchpads
    local/xf86-input-vmmouse 12.6.5-3 (xorg-input-drivers)
    X.org VMWare Mouse input driver
    local/xf86-input-void 1.3.0-1 (xorg-input-drivers)
    X.org void input driver
    local/xf86-video-ati 6.12.192-1 (xorg-video-drivers)
    X.org ati video driver
    local/xf86-video-vesa 2.3.0-1 (xorg xorg-video-drivers)
    X.org vesa video driver
    local/xorg-apps 7.5-3
    Various X.Org applications
    local/xorg-docs 1.5-1 (xorg)
    X.org documentations
    local/xorg-font-utils 7.5-2
    X.Org font utilities
    local/xorg-fonts-100dpi 1.0.1-3 (xorg)
    X.org 100dpi fonts
    local/xorg-fonts-75dpi 1.0.1-3 (xorg)
    X.org 75dpi fonts
    local/xorg-fonts-alias 1.0.2-1
    X.org font alias files
    local/xorg-fonts-encodings 1.0.3-1
    X.org font encoding files
    local/xorg-fonts-misc 1.0.1-1
    X.org misc fonts
    local/xorg-res-utils 1.0.3-3 (xorg)
    X.Org X11 resource utilities
    local/xorg-server 1.7.6-3 (xorg)
    X.Org X servers
    local/xorg-server-utils 7.5-3 (xorg)
    X.Org utilities required by xorg-server
    local/xorg-twm 1.0.4-3 (xorg)
    Tab Window Manager for the X Window System
    local/xorg-utils 7.6-1 (xorg)
    Collection of client utilities used to query the X server
    local/xorg-xauth 1.0.4-1
    X.Org authorization settings program
    local/xorg-xinit 1.2.1-1 (xorg)
    X.Org initialisation program
    local/xorg-xkb-utils 7.5-2
    X.org keyboard utilities
    local/xterm 256-1 (xorg)
    X Terminal Emulator
    Thanks again for any help

  • The System Preference:Desktop&Screensaver will not open. I get a rotating circle that never stop rotating. I have to do a Force Stop.

    The System Preference:Desktop&Screensaver will not open. I get a rotating circle that never stop rotating. I have to do a Force Stop.

    Quit System Preferences if it's running. In the Finder, hold down the option key and select
    Go ▹ Library
    from the menu bar. From the Library folder, delete the following item, if it exists: 
    Caches/com.apple.systempreferences
    and move the following item to the Desktop:
    Preferences/com.apple.desktop.plist
    Launch System Preferences and test. If you still have the issue, put the item on the Desktop back where it came from and post again. Otherwise, delete the item.

Maybe you are looking for

  • Fios digital voice app no longer working

    I have the digital voice service on my home phone, and the android app always worked fine. I have the app installed on a phone and a tablet, and was able to get voice mails, see the call log, etc. .  Starting a few days ago the app would say that I d

  • Select which fields to copy of fields during creation of new version

    Hi Gurus- Is it possible to set config in a manner that will copy the authorization group value when creating a new version?  Thanks! -J Edited by: Jennifer Kramer on Mar 14, 2011 6:18 PM

  • Was going to update from 2.2.1 to 3.1.1 and an error happened 8288

    was goignt to download version 3.1.1 from 2.2.1 and an error occured 8288

  • Troubleshooting Ringtones

    I can't get the ringtones feature to work with iTunes since it says that it requires me to connect to the iTunes Service Disclaimer but then when I go there there's no option to accept the disclaimer to allow me to start creating ringtones. What am I

  • What Should I Aim For Next?

    Hello Forum Members, For a year (actually less) I've been in a AP Computer Science class learn with my teacher and fellow students the secrets of the the Java language, I find most of it very intutive, as we focus mainly on the concepts theories, alg