|
There's absolutely no problem, as said, if you had not a single problem during the installation, it really doesn't matter. /proc doesn't truly exist in the same sense that the rest of the fs's. /proc is a convenient way to access the OS structures in an fs-like fashion, but it only exists in the kernel memory, and not in the disk as the rest of the fs's do.
In /proc you can see, amongst many other things, a whole image of the kernel allocated memory that will be big but as said don't worry since it doesn't take any disk space at all (/proc/kcore), structures relevant to the current processes (a lot of dirs named with numbers under /proc, like /proc/1 and so on), and some others created by specific drivers or kernel parts, like /proc/cpuinfo. This structures can be navigated and some of them can be viewed with a simple "cat <filename>" to get live info about your kernel and drivers, processes, etc.
This is created by the kernel itself, so there's nothing from the livecd or the install phase remaining in there. Don't worry.
|