similar to: Centos on a Flash drive and Micro drive

Displaying 20 results from an estimated 8000 matches similar to: "Centos on a Flash drive and Micro drive"

2007 Jul 13
2
Centos on the decTOP?
https://store.dataevolution.com/ProductDetails.asp?ProductCode=DT%2D7001 For $99 a nice little system with AMD Geode GX500 128Mb memory and 10Gb disk. Upgrade to 256Mb and off we go? Replace the hard drive with a Flash card, and run off a battery pack? Add Bluetooth (lower power draw that 802.11) and run IP over it to your desktop.... It does have ethernet, so a crossover cable works too.
2007 Aug 28
3
Installing Centos 5 on one system and moving the HD to another....
I have a bug report in (0002288) on an install failure on my decTOPs (Centos 4.5 installed on them). I have tried a lot of combinations and it is getting tiring. What what happen, or rather how do I get the following to work: Put my HD into a computer (Compaq SSF that I have installed Centos 5 on with no trouble), install Centos 5, move the HD to the decTOP. Different Video card. No PS/2
2008 Jan 23
4
Recommend a mini or nano ITX system for Centos
I am looking into convising the boss to get me a mini-itx system to replace my workhorse notebook (I have to have a corp notebook and I can remote terminal into a Centos server from it). So I have been playing with one mini-itx system (the decTOP) and am looking at my options. I want a fast processor, 1Gb memory, LAN, 4USB, VGA. Wireless and bluetooth optional USB dongles along with a
2012 Sep 06
2
[LLVMdev] micro mips/mips32
The problem is that everything about the mips32 and micro mips 16 instruction is the same, aside from the encoding in to binary. Seems like maybe we need to extend the notion of an instruction so that it can have alternate encodings depending on subtarget. On 09/05/2012 08:28 PM, Jim Grosbach wrote: > The instructions are defined by their encodings, not the assembly syntax. You want
2012 Sep 06
0
[LLVMdev] micro mips/mips32
My understanding was that micro mips was similar to Thumb2, in that the smaller encodings have constraints on which registers can be read/written, because of the narrowing of the register fields in the encoding. If that's the case, then it definitely makes sense to model the micro mips instruction set as distinct from the mips32 instruction set, in basically the same way that Thumb2 is done.
2010 Jun 11
2
Clustering algorithms don't find obvious clusters
I have a directed graph which is represented as a matrix on the form 0 4 0 1 6 0 0 0 0 1 0 5 0 0 4 0 Each row correspond to an author (A, B, C, D) and the values says how many times this author have cited the other authors. Hence the first row says that author A have cited author B four times and author D one time. Thus the matrix represents two groups of authors: (A,B) and (C,D) who cites
2012 Jan 20
4
[LLVMdev] various mips16 and micro mips issues
We are starting to look at the mips16 and micro mips ports. There are various design issues that people may have some good input on. Especially in how to structure the TD files and other optimizer issues. Mips16 is sort of like thumb and Micro Mips like thumb2 as far as I understand. Mips16 or Micro Mips can live inside of either MIPS32 or MIPS64. In gcc, it's possible using attributes to
2007 Nov 16
1
LSI 1068e (Super Micro OEM) - kernel update problem
Hello, I'am using a LSI 1068e OEM version from Super Micro (see lspci). I was able to install a plain CentOS5 with the binary drivers I got from Super Micro. 06:00.0 SCSI storage controller: LSI Logic / Symbios Logic Unknown device 0059 (rev 04) Subsystem: Super Micro Computer Inc Unknown device a180 Flags: bus master, fast devsel, latency 0, IRQ 10 I/O ports at e000
2012 Sep 06
2
[LLVMdev] micro mips/mips32
The micro mips processor assembly language is basically 100% the same as mips32/mips64. There are some assembler directives you add but for a base port, but that is all you need to do. However, the binary instruction encoding is entirely different. There are a combination of 16 and 32 bit instruction encodings. The question is, what's the best way to handle this? Extending tablegen ?
2009 Nov 23
5
[LLVMdev] New 8bit micro controller back-end
Hi all, I'm new to LLVM dev mailling list and I'm starting to discover some aspects of LLVM. Actually I'm looking for a solution to create a tool chain for my own chip (a 8bit micro controller processor) that include a compiler/linker/assembler toolset and a simulator/debugger. >From what I've read, LLVM is a good tool to implement a compiler for this proprietary platform,
2016 Apr 26
5
Firefox and Flash
Hello Andreas, On Tue, 26 Apr 2016 09:03:12 +0200 Andreas Benzler <andreas at benzlerweb.de> wrote: > Hello every one I installed the official > flash plugin from adobe > > About Plugins tells me: > > Datei: libflashplayer.so > Pfad: /usr/lib64/flash-plugin/libflashplayer.so > Version: 11.2.202.577 > Status: Aktiviert
2013 Apr 17
1
writefd_unbuffered failed (when writing to micro SD cards)
I'm using rsync 3.0.9-1 in Cygwin to copy several directories to 32GB micro SD cards in both WinXP and Win7. I randomly get this error message; Please help me to debug it: rsync: writefd_unbuffered failed to write 127 bytes to socket [generator]: Broken pipe (32) I'd first posted this to the Cygwin mailing list with no response after almost two weeks (and sent a reminder after one week).
2012 Jan 20
0
[LLVMdev] various mips16 and micro mips issues
On Fri, Jan 20, 2012 at 1:59 PM, reed kotler <rkotler at mips.com> wrote: > We are starting to look at the mips16 and micro mips ports. > > There are various design issues that people may have some good input on. > Especially in how to structure the TD files and other optimizer issues. > > Mips16 is sort of like thumb and Micro Mips like thumb2 as far as I > understand.
2012 Jan 20
0
[LLVMdev] various mips16 and micro mips issues
On Friday, January 20, 2012 03:59:14 PM reed kotler wrote: > We are starting to look at the mips16 and micro mips ports. [snip] I'm looking forward to seeing the mips16 and micro mips support. As an aside, the Mips code generator as it exists looks pretty solid so far in my testing. As I've been building the NetBSD library (and other stuff) using my ELLCC copy of clang/LLVM only the
2006 Jul 14
1
Micro-pump is cool idea for future computer chips
Micro-pump is cool idea for future computer chips http://www.studyandjobs.com/Micro_pump.html or visit http://www.studyandjobs.com/IT_study.htm Regards
2012 Sep 06
0
[LLVMdev] micro mips/mips32
The instructions are defined by their encodings, not the assembly syntax. You want separate instruction definitions for the different encodings and select. Between them in the assembler via sub target features. See ARM handling of thumb vs thumb2 vs arm for examples of how to do this. On Sep 5, 2012, at 6:59 PM, reed kotler <rkotler at mips.com> wrote: > The micro mips processor
2008 Jun 26
6
Kernel panic from install CD
I have a bunch of DecTOPs. Use the AMD Geode chip. Yesterday I upgraded one of them, and got the dreaded Kernel panic. Something about powernowk8. I could boot up with the old kernel, though. I know I have to put in a bug report on this, will do shortly, but first wanted to try a fresh install on another DecTOP. At the prompt, I specified: linux askmethod After it loaded the kernel, it
2011 Aug 09
3
OT: headless fanless silent 2 HDs micro server/pc...
Hey, A bit out of topic but I am looking for a micro server/pc if anyone knows a descent one... I found many nice NAS but I would like to have full access to the OS (install CentOS, etc). Dream one would be - Very quiet (fanless) since it will sit in my bedroom. - Headless - Small. - 2/3 HDs (2.5" are ok) for RAID1 (hardware RAID would be nice, and with BBC even more).- 1 or 2 GB NICs -
2009 Nov 23
0
[LLVMdev] New 8bit micro controller back-end
Our 8-bit port for PIC16 has taken roughly about 18 months to get to where we are now. Our instruction set is not orthogonal, data memory is banked, program memory is paged, there is only one accumulator and two pointer registers, and the use of indirect memory access is really expensive. So we had to implement some non conventional approaches to get the model working. For the most part, LLVM
2007 Oct 26
3
micro rsync
Let's assume only kernel and drivers are on a system. Is it possible to effectively run an rsync server with ssh (ie. the receiving end) with say 3MB of available memory? How about 6MB? _____________________________ Stephen Zemlicka Integrated Computer Technologies PH. 608-558-5926 E-Mail <mailto:stevezemlicka@gmail.com> stevezemlicka@gmail.com -------------- next part