Displaying 20 results from an estimated 9000 matches similar to: "Centos 5, X dies, I cry"
2007 Jun 21
4
In the market for a new (old) laptop
Changes at my day job (we have a big merger being finalized), has me in
the market for a new laptop.
They may require me to only run the approved XP build on the system they
provide.
I do not know if they will fund another unit for me or not, so I am
looking to go cheap. Here is what I am looking for:
Runs Centos (duh!)
Supports Suspend to memory as well as to disk.
Bootable from
2008 Mar 05
12
ipw3945 wireless not working
This is a new Centos 5.1 install on a HP nc2400 (that use to run XP).
Completely clean install; blew away the XP partitions...
After applying all the updates, and configuring for the rpmforge repo, I
used yumex to install dkms and the dkms-ipw3945, ipw3945-firmware, and
ipw3945d rpms.
lsmod|grep ipw shows:
ipw3945 180391 1
ieeee80211 33417 1 ipw3945
and dmesg)grep
2007 Jul 15
4
Tired of temp induced shutdowns
My notebook has a habit of getting hot, and Centos just shuts down.
Just did it again:
Jul 15 01:35:12 nc4010 kernel: ACPI: Critical trip point
Jul 15 01:35:12 nc4010 kernel: Critical temperature reached (113 C),
shutting down.
Jul 15 01:35:12 nc4010 kernel: Critical temperature reached (55 C),
shutting down.
Jul 15 01:35:13 nc4010 shutdown[9847]: shutting down for system halt
Jul 15 01:35:13
2007 Jun 14
1
Crazy - Re: Centos 5, X dies, I cry
>Message: 11
>Date: Wed, 13 Jun 2007 12:34:13 -0400
>From: "Robert Moskowitz" <rgm at htt-consult.com>
<snip>
< I tried to change it and although I am told the update to
<xorg.conf was made, no changes were made. I guess next time I will
<log in as root instead of chancing su...
In my brief fling with FC6, I had problems with that file not getting
2008 Jan 06
5
Live CD Planning systems
My company supplies me with a very nice HP nc2400. Much faster, more
memory, etc than my old HP nc4010.
Problem is the drive is not swappable, and they encrypt the drive (the
OS is XP).
The nc2400 has a DVD/CDRW and 2 USB 2.0 ports so I was thinking.....
Make a Live DVD with everything I need but map
/etc /root /home and /var/log (and what else?) to a USB flash drive
(16Gb are available
2007 Jun 26
1
Getting JPilot working
I am trying to get JPilot working.
I have configed gnome-pilot-applet, but it is not talking to the USB
connected Treo650.
My Treo has my name as the user, so from the applet, I see also a userid
(my UID on this system it seems). I try to put that on the Treo and
nothing happens. I have enabled the Backup Conduit.
I am using /dev/pilot, which shows up when my Treo is connected via its
USB
2007 Dec 31
16
Firewall frustration
Well FWbuilder is NOT easy. The documentation does not match the
current GUI. Now the box is locked up. I will have to pull it again,
hook it up to a kybd/VGA and reset iptables....
Maybe Shoreline with webmin....
Problem is I want a REAL router/firewall with little work. Both public
and private nets have routable addresses. No NATing for me! I just
help write the RFC ;) And all the
2007 Dec 28
4
MOre on buring ISOs
So right now I have installed k3b on this notebook. I am using my Storix
DVD/CDRW usb drive. I can read cds with it.
Cannot burn CDs. First k3b suggests slowing down (from 8x to 4x). Then
use TAO. Then it gave up.
So I try cdrecord directly. -checkdrive finds some interesting things.
Got to close the drive manually; cdrecord says it can't. then try a
cdrecord -v dev=dev/scd0 sample.iso
2006 Jul 13
2
Suspend and/or Hibernate
I asked about ACPI several weeks ago but received no responses. Are
suspend and hibernate features not supported in CentOS yet? I noticed
there is a daemon for acpi:
[scarolan at kalki ~]$ chkconfig --list | grep acpi
acpid 0:off 1:off 2:off 3:on 4:on 5:on 6:off
But how do I use this feature? Normally I'm accustomed to this being
a menu option when I log out (eg,
2005 Dec 22
1
Install Successes!
The CentOS drive for the HP NC4010 is built. I just needed to use
external instead of USB power for my USB CDrom. Go figure...
I did this in my hotel room, where they only have wireless. I went
down to the 'business center' and used an ethernet drop, but I don't
think the registration worked. I didn't know that even for the
ehternet drops you have to do that portal thing
2008 Jul 08
0
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
PPCTargetLowering::EmitInstrWithCustomInserter has a reference
to the current MachineFunction for other purposes. Can you use
MachineFunction::getRegInfo instead?
Dan
On Jul 8, 2008, at 1:56 PM, Gary Benson wrote:
> Would it be acceptable to change MachineInstr::getRegInfo from private
> to public so I can use it from
> PPCTargetLowering::EmitInstrWithCustomInserter?
>
>
2008 Jul 11
0
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
Hi Gary,
This does not patch cleanly for me (PPCISelLowering.cpp). Can you
prepare a updated patch?
Thanks,
Evan
On Jul 10, 2008, at 11:45 AM, Gary Benson wrote:
> Cool, that worked. New patch attached...
>
> Cheers,
> Gary
>
> Evan Cheng wrote:
>> Just cast both values to const TargetRegisterClass*.
>>
>> Evan
>>
>> On Jul 10, 2008, at 7:36
2008 Jul 10
0
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
Just cast both values to const TargetRegisterClass*.
Evan
On Jul 10, 2008, at 7:36 AM, Gary Benson wrote:
> Evan Cheng wrote:
>> How about?
>>
>> const TargetRegisterClass *RC = is64Bit ? &PPC:GPRCRegClass :
>> &PPC:G8RCRegClass;
>> unsigned TmpReg = RegInfo.createVirtualRegister(RC);
>
> I tried something like that yesterday:
>
> const
2008 Jul 10
2
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
Evan Cheng wrote:
> How about?
>
> const TargetRegisterClass *RC = is64Bit ? &PPC:GPRCRegClass :
> &PPC:G8RCRegClass;
> unsigned TmpReg = RegInfo.createVirtualRegister(RC);
I tried something like that yesterday:
const TargetRegisterClass *RC =
is64bit ? &PPC::GPRCRegClass : &PPC::G8RCRegClass;
but I kept getting this error no matter how I arranged it:
2008 Jun 30
0
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
You need to insert new basic blocks and update CFG to accomplish this.
There is a hackish way to do this right now. Add a pseudo instruction
to represent this operation and mark it usesCustomDAGSchedInserter.
This means the intrinsic is mapped to a single (pseudo) node. But it
is then expanded into instructions that can span multiple basic
blocks. See
2008 Jul 08
2
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
Would it be acceptable to change MachineInstr::getRegInfo from private
to public so I can use it from PPCTargetLowering::EmitInstrWithCustomInserter?
Cheers,
Gary
Evan Cheng wrote:
> Look for createVirtualRegister. These are examples in
> PPCISelLowering.cpp.
>
> Evan
> On Jul 8, 2008, at 8:24 AM, Gary Benson wrote:
>
> > Hi Evan,
> >
> > Evan Cheng wrote:
2012 Sep 27
1
How does "apply.monthly" function works (xts package)
Hi everybody.
I use to work with monthly data, however this is my first time working with
weekly data.
I have 4 data bases with monthly data and 1 with weekly data, so I want to
convert my weekly to monthly data in order to have the same periodicity in
all of them.
I've read that package xts can help me with this issue, so I have done the
following script:
2008 Jun 30
2
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
Chris Lattner wrote:
> On Jun 27, 2008, at 8:27 AM, Gary Benson wrote:
> > def CMP_UNRESw : Pseudo<(outs), (ins GPRC:$rA, GPRC:$rB, i32imm:
> > $label),
> > "cmpw $rA, $rB\n\tbne- La${label}_exit",
> > [(PPCcmp_unres GPRC:$rA, GPRC:$rB, imm:
> > $label)]>;
> > }
> >
> > ...and
2010 Dec 21
2
Compatibility with Far Cry broken with update
Hello !
I play Far Cry and it doesn't run properly on any version later than 1.1.40 !
Instead, on 1.1.40 and back the game runs nearly perfectly !
I heard of "patching" a version of Wine... Is someone enough skilled to do that ?
Also, I don't know how to report a bug so can someone help me to do it?
Have a nice day,
2010 May 25
0
Far Cry free version unCabbed, issues running it.
Hello,
I downloaded the Far Cry free version and used unCab to remove its ads.
The game runs fine on Windows but when I try to run it with Wine I have segment error (or non permitted instruction).
I posted on another Ubuntu forum and nobody was able to run it, except one guy but he uses archlinux.
So I would really appreciate your help ;)
Feel free to download it at