All Entries Tagged With: "Linux"
Moving/renaming a file name with space(s)
Issue :
How to move/rename a file which has space(s) in it ?
Solution :
Considering that the file name is My file name.zip and you want to rename it to Myfilename.zip, there are two ways to achieve this.
First,
mv “My file name.zip” Myfilename.zip
Second,
mv My\ file\ name.zip Myfilename.zip
64 Bit Vs 32 Bit
In computer architecture, 64-bit integers, memory addresses, or other data units are those that are at most 64 bits (8 octets) wide. Also, 64-bit CPU and ALU architectures are those that are based on registers, address buses, or data buses of that size. Similar is the case with 32-bit CPU & ALU will have 32 [...]
Linux Booting Process
The Booting process starts when the system/machine power is switched “On”.
————————
Stage 1
————————
The processor will execute the codes contained in BIOS[basic input and output system]. The BIOS is actually a program stored in ROM [Read only memory].
——
The processor runs the instruction located at the memory location CS:IP FFFF:0000 of the BIOS, which is located at the [...]
Linux Kernel 2.6.30 – Released
New architecture switches the kernel to a “New world order”, says Linus Torvalds about the Linux Kernel 2.6.30 which was released just few days back with hundreds of changes.
Let us see what’s really new in it and why is it creating a buzz.
First of all , It now boots faster. It has been designed [...]

