Search Results

Search: Posts Made By: osulinux
Forum: Ubuntu 12-11-2008
9,617
Posted By osulinux
Pretty much given up all hope here, but at any...
Pretty much given up all hope here, but at any rate..

I noticed if I pass acpi=off to the kernel when booting I get a bit farther. Udev starts up then it says

Disabled IRQ #17
Disabled IRQ #16...
Forum: Ubuntu 12-03-2008
9,617
Posted By osulinux
I've tried 3 different kernels now. The same...
I've tried 3 different kernels now. The same result for 2.6.26/27, only 2.6.25 is able to boot for some reason. I'm leaning towards a HW problem as well, but kinda need to narrow it down. The thing...
Forum: Ubuntu 12-02-2008
9,617
Posted By osulinux
I took out the rhgb (I'm guessing some redhat...
I took out the rhgb (I'm guessing some redhat thing) and quiet arguments. It hangs after about a second at:

NET: Registered protocol family 2

I remember something similar happening when I tried...
Forum: Linux 12-02-2008
7,216
Posted By osulinux
intel wireless disassociates its self
I have an Intel wireless 4965 device. It works on some networks but on most it does not. I've noticed that I have a lot of the following messages pretty much non-stop going to console...

wlan0:...
Forum: Ubuntu 12-01-2008
9,617
Posted By osulinux
nothing happens when booting kernel
I have a Fedora 9 installation. The initial kernel worked fine. Then I did a yum update and one of the new updates was a new kernel, but when I tried to reboot with that kernel it won't do anything....
Forum: Linux 11-14-2008
3,686
Posted By osulinux
dual head setup for laptop in docking station
I have a thinkpad laptop which I run in a docking station at work. I have two LCD monitors, unfortunately one is wide screen and the other isn't. I want to get dual head working, but have not been...
Forum: Linux 10-22-2008
2,219
Posted By osulinux
vpn problem
Trying to connect to my companies VPN with vpnc but I keep getting an error that the target failed to respond. I run wireshark and see that my host sends out a few ISAKMP packets but gets no response...
Forum: Solaris 08-20-2008
12,970
Posted By osulinux
Yeah its not meant to be something that you let...
Yeah its not meant to be something that you let run all the time on a real system. I use it for benchmarking things.

However it brings up a point that whatever you use to measure CPU usage...
Forum: Solaris 08-19-2008
12,970
Posted By osulinux
There is a small code called cyclesoak (zc) which...
There is a small code called cyclesoak (zc) which does a subtractive method for measuring CPU utilization. It is more accurate. Basically it launches a number of processes, to eat up 100% of the...
5,238
Posted By osulinux
Try 'sed'
Try 'sed'
Forum: Programming 08-12-2008
9,623
Posted By osulinux
You could do: enum { apple=0, orange, ...
You could do:
enum {
apple=0,
orange,
bannana,
count}

then count=3
Forum: Red Hat 08-07-2008
4,593
Posted By osulinux
rsh is likely disabled or rhosts is configured...
rsh is likely disabled or rhosts is configured incorrectly.
Forum: Programming 08-07-2008
7,631
Posted By osulinux
Sounds like a homework problem to me. Are you...
Sounds like a homework problem to me. Are you having a specific problem or are you just looking for someone to do the work for you.
Forum: Red Hat 07-23-2008
7,831
Posted By osulinux
Driver doesn't like the hardware it sounds like....
Driver doesn't like the hardware it sounds like. Try to find an updated driver, or a newer kernel.

One other thing is make sure there isn't updated firmware for the device.
163,456
Posted By osulinux
tee is what your after. $ echo "blah" |...
tee is what your after.


$ echo "blah" | tee file.log
blah
$ cat file.log
blah
$

*note: this probably should have been a new thread
Forum: Programming 07-22-2008
5,177
Posted By osulinux
Sounds like its defined somewhere, but one of the...
Sounds like its defined somewhere, but one of the fields in that structure are not defined. Grep for the definition of fatx_inode_info to investigate farther.
Forum: SCO 07-22-2008
5,248
Posted By osulinux
You can ssh in and do things interactively. You...
You can ssh in and do things interactively. You can also use ssh to run a command with out going to a shell prompt. Exp: ssh user@host "ls -l"

There is also rsh, but that's probably only an...
Forum: Ubuntu 07-18-2008
9,724
Posted By osulinux
Why isn't it a good option?
Why isn't it a good option?
21,333
Posted By osulinux
The reason is that calloc() implies array access....
The reason is that calloc() implies array access. They are not treating the memory area as an array here so use malloc(). calloc() is rarely used it seems to me, and in this case would not make any...
21,333
Posted By osulinux
calloc() is usually used to create arrays. It's...
calloc() is usually used to create arrays. It's sort of like malloc() in that it allocates memory, but calloc() as shamrock points out sets the allocated memory to 0.

The effect of calloc() is the...
Forum: SuSE 07-15-2008
9,911
Posted By osulinux
I believe its a hard coded value for resolver,...
I believe its a hard coded value for resolver, you can recompile it and change resolv.h. Take a look at the man page, I believe it mentions something about the limit in there.
Forum: Red Hat 07-15-2008
7,831
Posted By osulinux
does iwconfig return any "wireless extensions"...
does iwconfig return any "wireless extensions" for eth1. If so your just usue usual iwconfig eth1 essid XXXX followed by dhclient eth1.

The fact that the driver doesn't call it wlan0 is...
Forum: Red Hat 07-15-2008
5,272
Posted By osulinux
Write a dumb kernel module, something like the...
Write a dumb kernel module, something like the following should kill it:

MODULE_LICENSE("GPL");
MODULE_AUTHOR("blah");
MODULE_DESCRIPTION("kernel killer");

static int __init killer_init(void)...
Forum: Ubuntu 07-15-2008
12,978
Posted By osulinux
Does ubuntu not come with gcc installed? Isn't...
Does ubuntu not come with gcc installed? Isn't that pretty much sacrilege. Have you tried typing gcc on the command line, see what happens.
Forum: Ubuntu 07-15-2008
9,724
Posted By osulinux
If you don't want to mess with crontab, just...
If you don't want to mess with crontab, just write a shell script that does and infinite loop with sleep(5m) inside it followed by the wget/ftp command to put the file there.
Showing results 1 to 25 of 31

 
All times are GMT -4. The time now is 03:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy