On 2008-03-18, chloe K <chloekcy2000@xxxxxxxx> wrote: > i am trying to copy this folder /proc to other computer > > but all parameters in /proc are gone > > eg: cpuinfo > > how can I copy it and keep the information? /proc is not a real filesystem, but a virtual filesystem designed to provide access to certain features of the running kernel. If you want to capture the contents in a real file someplace, just redirect the contents to a file, e.g. "cat /proc/cpuinfo > cpuinfo.txt" -- John (john@xxxxxxxxxxx)