Friday, January 28, 2011

Want To Match My Kundli Online

Ubuntu server console resolution

I found two very useful articles for those interested in taking the first steps on Ubuntu server:
... from which I was inspired to do some tests (I thank the author for the useful tips!).

For the tests I have done so:

NB 1: I created a virtual machine with VirtualBox:
1) set the network configuration bridge so you can bet the host server IP address virtual.

2) When installing the Ubuntu server, I chose to install and configure Automatic LAMP (Linux, Apache, MySQL, PHP / Perl / Python) and OpenSSH.

NB 2: Installing Webmin :

1) I downloaded the latest version in deb format the official site (browsing from the console with links2 !): http://www.webmin. com / index.html

2) I installed webmin by downloaded deb: dpkg-i
webmin_1.530_all.deb
... a message that warns of the need to install some packages required dependencies from webmin.

3) I checked the missing dependencies are referring only to the new program we are installing:
apt-get check

4) The above message informs you that there are unmet dependencies, and should run the following command to install :
apt-get-f install

Note 3: use the browser to start webmin host, using the IP address of the server on port 10000 (http s):
https: / / indirizzoDelServer : 10000 /


Birthday Cake In Banff Restaurants



The server distro with only the text mode, you can find a console window with very small, especially if we are in a virtual machine. In
Ubuntu server (GRUB), the solution I've found on the net is as follows
(everything that follows should be executed by root ).

Open the GRUB configuration file (eg with nano ):
nano / etc / default / grub Replace

GRUB_GFXMODE the command with the following command:
GRUB_GFXPAYLOAD_LINUX = 800x600x24

Save and exit the editor and run the command that applies the corrections to GRUB: update-grub

When you restart the virtual machine window we will size to 800x600, making it a little more comfortable working from the console! ;-)

NB: to know the resolutions accepted by the system, press the "c" as soon as you start GRUB.
This will open the GRUB console where you can run some commands. Type
help to see the list of commands allowed.

Run the command:
vbeinfo
to view the resolutions accepted by the system.

Saturday, January 8, 2011

How To Reset Polo Club Lock

fstab and UUID

within / etc (according to the standard Filesystem Hierarchy Standard FHS ) in GNU / Linux, among the various configuration files, any one (fstab) that specifies which devices must be installed with their options. Normally

to identify a device (a specific disk partition) is convention to use a UUID instead of the code name of the file system.
If you add or remove a disc, the system may change the file names and to restore the system you have to suitably amend the fstab file. Using
universal codes associated with each partition, this problem does not occur, because the mapping between file system and mount directory need not be changed.

In systems Ubuntu and you can see the file system and its UUID by using the following commands.

To view a list of all disks and partitions recognized by the system:
sudo fdisk-l

example in my system the output is as follows: Device Boot Start End
Blocks Id System
/ dev / sda1 * 1 1912 15358108 + 7 HPFS / NTFS
/ dev/sda2 1913 1925 104422 + 83 Linux
/ dev/sda3 1926 2186 2096482 + 82 Linux swap / Solaris
/ dev/sda4 2187 12161 80124187 + 5 Extended
/ dev/sda5 2187 4736 20482843 + 83 Linux
/ dev/sda6 4737 5501 6144831
83 Linux / dev/sda7 5502 12161 53496418 + 83 Linux

and to see its UUID, simply run the command:
ls-la / dev / disk / by-uuid

and its output is like this:
3265f9e7-3d10-417b- b739-3a2650c67cba -> ../../sda5
6fbfe571-0156-420B-8089-72edbd12e041 -> ../../sda7
239th-87c37009-4a88-8d3a-68a701ece58f -> ../../sda2
b0gdcb1f-9a59-43cd-ae96-843fbcf3027d -> ../../sda6
C19C42BE9A43ADCB -> ../../sda1
f53b5dec-cb46-41ac-a48f-a465c10b53ae -> ../../sda3

NB: UUID is a value that depends on the characteristics of the disk and partition: so any adjustments to partitions (resize or move) will have the effect of changing values \u200b\u200bUUID of the partitions of the system.