|
This post mentioned that servers can be powered on when given power (useful for remote power up by PDU).
Does anyone know if Dell PowerEdge servers have this options (particularly 2950 and 2850s). Also, will Cisco 3825 / 2800 router work this way?
Started by Kyle Brandt on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Since most, if not all Cisco gear....
The Cisco.
If your Dells have DRACs, you should be able to power them on with that, as well.
Enable it, and you should be able to boot from there .
Of "resume after power loss" or something to that effect.
|
|
Black Power? White Power? Forget them - the only real Power is the power of words. This my Forum for today: Literature Power.
VOTING BLUES (Tune: ‘Sloop John B’)
Election time is near,
But you've got nothing to fear,
If you don't tell nobody,
Who you ...
Started by Gerry M. Oldham on
, 15 posts
by 7 people.
Answer Snippets (Read the full thread at bahamasissues):
Re: Black Power? White Power? Forget them - the only real Power is the power of word Hmmmmnm of the Bahamas Re: Black Power? White Power? Forget them - the only real Power is the power of word ....
|
|
Is there a solution for powering a machine back on after power loss once the power is back on? I could use wake-on-lan, but if there is a solution (software or hardware) to automatically power-up once there is power again it would fit a bit better.
Started by Michael Mitchell on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
You can set it to "Always on" or "Last State" or "Never power.
To do when getting power back.
|
Ask your Facebook Friends
|
I have 7 port USB hub with external supply.
I tried turning it off by removing external power but then it takes power from motherboard and is still working.
I have many external hardrives connected to it.
i was worrying if i turn off the power it may ...
Started by Mirage on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
I assume that as long as the power the 7 port hub is less than 500mA, you ....
The hubs usually say they draw 100mA of power, that is why you usually see four port unpowered devices require 100mA, for example, I had a mouse that take 20mA.
|
|
I have a Windows XP system - desktop with no battery - which says it is on AC power, but it goes into standby based on the battery power settings. Obviously the work-around is to configure the battery settings instead of the plugged-in settings, but I...
Started by Justin Love on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
If you are unable to simply change the power scheme and make it stick, check that....
Power Options -- can you select and apply a desktop/workstation profile instead of laptop? This may why you see battery schemes in power settings.
|
|
My co-workers (who worked with the company longer than I have) loves to remove their laptop's power cord when they need to move around the office.
I frown on this practice since they usually don't remove the power brick from the power socket. I've told...
Started by MrValdez on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
I was trying to track down some powere amount of power even when the....
I disagree with the power load being minimal.
As long as the power supply gets warm/hot despite unused, you've got a brilliant argument for energy saving.
|
|
I recently replaced my motherboard, processor, memory, and power supply. After powering up and running for approx. 3 minutes, the rig shuts down, like somebody pulled the cord out of the wall. It won't power back up either instantly. I have to wait a ...
Started by Aaron Daniels on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
If it shuts down in BIOS as well, I would point to power, but it could mean other parts are faulty
If the motherboard is one of the new ones that comes, but remember it is running at ....
I would go down the route of either heat or power.
|
|
I like having my laptop run as long as humanly possible when running off battery, even if it means huge a compromise in performance.
Currently, whenever I'm on battery I have to manually switch my power plan to "Power Saver", and then switch back to "...
Started by matthews on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
I would recommend Power Plan Assistant much more than automatic reswitching....
Your power plan to "power saver" and disables the Aero glassy desktop manager when you switch in Windows 7 at all -- it gets stuck halfway through installing.
|
|
I recently purchased a Targus Lap Chill Mat , which is a USB powered device, but doesn't have any interface/storage/etc function.
I'd like it to power-down when my (macbook) laptop sleeps (since the fan obviously doesn't need to be running when the laptop...
Started by Carl on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
What would be to check, however, would be why your Mac still provides power several places, but there doesn....
It uses only the power which to current" situation.
Such device doesn't use any of the USB data functions .
In that information.
|
|
I want a program that takes an int x as parameter and returns 2^x . The implementation is not allowed to use power of.
public int double2 (int x) { int r = 2; int y = 1; for (int i=0; i < x; i++){ y = r* y; } return y; }
Do you think this is a right...
Started by ss on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Are you trying to find a power of two? Maybe expand of explanatory code....(its in c though....
How about this:
int power = someNumberHere; int result = 1; while (power-- > 0) result *= 2;
And I think that is what you want...I think.
|