I am basically away from my office, but would like to check whether a pc (which has 4GB of RAM) has 4x 1GB DIMMs or 2x 2GB DIMMs.
I am referring to a windows XP system. Is it possible to gather this info from System information or otherwise, remotely?
Thank you for your help
Hello everybody with powerpc's,
I'm looking to find a way of identifying which ram slots are used. Unfortunately I have 3 gigs worth of DIMMs installed but only 1.5GB of memory show up as recognized by /proc/MemTotal or in System Monitor.
I found how to do this with intel/amd architecture but it requires the BIOS in the machines to be read with dmidecode.
I was playing arround with conky and wanted to show an animation..So I took a compdead.gif and used this line to grap all stills from it:gifsicle --unoptimize --explode /home/pieter/temp/compdead.gif --output /home/pieter/temp/temp.gifAbove line creates images in /temp/ that look like this:temp.gif.001
temp.gif.002
temp.gif.003
temp.gif.004
temp.gif.005
..
temp.gif.236
temp.gif.237
temp.gif.238The
Ok so my problem is that Ubuntu 12.04 64 bit does not like multiple DIMMs of ram. I have two sticks of 2GB ddr3 ram, and both work fine, I have switched one out for the other to see if it was faulty RAM, but it isnt. A summary of the issue is ubuntu wont let me use multiple DIMMs at once.
I have One file - temp.txt - which contains
ABCDF
PQRST
LMNOP
I tried this cut command
$ cut -c 2-5 temp.txt
BCDF
QRST
MNOP
output is right.
$ cut -c 1,2,3,4 temp.txt
ABCD
PQRS
LMNO
output is right.
But when I change sequence, meaning
$ cut -c 2-4,1 temp.txt
ABCD
PQRS
LMNO
above output displayed.
but logically output is
BCDA
QRSP
MNOL
so my question is how this happen
Dear all,
first of all thank for the great work.
I have to perform some memory tests in an intel i7-960 processor but I m not able to find any command that give me an answer of the type numbers of channel that the Integrated memory contol use.
I only know that there are 6 memory bank of 2GB.
I also try to guess but decode-dimms (after the activation of the eeprom module) gave me 0 module found
I want to run a command and save its output and its exit code, in different files.
Here's what i am doing:
cmd.exe /C command 1> %TEMP%\output.log 2> %TEMP%\error.log && echo %ERRORLEVEL% > %TEMP%\status || echo %ERRORLEVEL% > %TEMP%\status
If i don't do output redirection (into %TEMP%\output.log and/or %TEMP%\error.log), then exit code is saved just fine.
However, when i r
Hello-
I have just removed 2 x 1GB DDR2 DIMMS from my desktop and replaced then with 2 x 2GB DDR2 DIMMS.
On boot the Bios reports only 3GB is usuable - this is before the OS boots. There are two OS's, 64 bit Ubuntu and 32 bit XP. Both report 3GB of available RAM.
HI All,
I am using grep command to serach a pattern in a list of files and storing the output in a variable. Then i am applying some logic on that variable to get the required output.