zeldor.biz

Linux, programming and more

Copyright © 2025
Log in

Windows 7 – Enable Telnet

November 22, 2010 by Igor Drobot Leave a Comment

Telnet

It’s very rare that I use telnet these days, so it took some time for me to notice that by default it was not packaged with Windows 7.

Enable Telnet:

1. Start
2. Control Panel
3. Programs And Features
4. Turn Windows features on or off
5. Check Telnet Client
6. Hit OK

Filed Under: Windows Tagged With: Telnet, Windows 7

Introduction to LVM

November 21, 2010 by Igor Drobot Leave a Comment

hdd

physical volumes:
These are your physical disks, or disk partitions, such as /dev/hda or /dev/hdb1. These are what you’d be used to using when mounting/unmounting things. Using LVM we can combine multiple physical volumes into volume groups.

volume groups:
A volume group is comprised of real physical volumes, and is the storage used to create logical volumes which you can create/resize/remove and use. You can consider a volume group as a “virtual partition” which is comprised of an arbitary number of physical volumes.

logical volumes:
These are the volumes that you’ll ultimately end up mounting upon your system. They can be added, removed, and resized on the fly. Since these are contained in the volume groups they can be bigger than any single physical volume you might have. (ie. 4x5Gb drives can be combined into one 20Gb volume group, and you can then create two 10Gb logical volumes.)

apt-get update && apt-get install lvm2

apt-get update && apt-get install lvm2

pvcreate /dev/md0

pvcreate /dev/md0

Once we’ve initialised the partitions, or drives, we will create a volume group which is built up of them:

vgcreate storm /dev/md0

vgcreate storm /dev/md0

If you’ve done this correctly you’ll be able to see it included in the output of:

vgscan

vgscan

Create your first logical volume:

lvcreate -n data --size 300g storm

lvcreate -n data --size 300g storm

Your new logical volume will be accessible via:

/dev/storm/data
# or
/dev/mapper/storm-data

/dev/storm/data # or /dev/mapper/storm-data

Create file system:

mkfs.ext4 /dev/storm/data

mkfs.ext4 /dev/storm/data

Show created volumes and their sizes:

lvdisplay

lvdisplay

Extend volume:

lvextend -L+10g /dev/storm/data

lvextend -L+10g /dev/storm/data

After resizing you should resize the filesystem:

e2fsck -f /dev/storm/data 
resize2fs /dev/storm/data

e2fsck -f /dev/storm/data resize2fs /dev/storm/data

Remove volume:

lvremove /dev/storm/data

lvremove /dev/storm/data

If you need some visual help you can use: “system-config-lvm” utility co configure LVM.

LVM Stripe

First thing to say it’s a kind of RAID0; if you have the need of a single big partition but you have only multiple smaller disks, you have the possibility to crate a LVM-stripe over all your smaller disks.
In this example I have 4x 4TiB devices which will be used to create a single one with 16TiB

pvcreate /dev/sdb /dev/sdc /dev/sde /dev/sdd
# verify with:
vgdisplay to verify

pvcreate /dev/sdb /dev/sdc /dev/sde /dev/sdd # verify with: vgdisplay to verify

lvcreate -l 100%FREE -n storage backups
# to verify:
lvdisplay

lvcreate -l 100%FREE -n storage backups # to verify: lvdisplay

Create a filesystem on your 16TiB device:

mkfs.xfs -L storage /dev/mapper/storage-bacula

mkfs.xfs -L storage /dev/mapper/storage-bacula

Filed Under: Debian, Ubuntu Tagged With: disk, LVM, LVM Stripe, partition, volume

Check Windows Server activation

November 21, 2010 by Igor Drobot Leave a Comment

It was a little strange behavior after activation and I wanted to know how to check the activation Status:

Activation

Activation
Press Win+R to launch Run and input any one of the following commands to check the windows activation status

– slmgr.vbs -dli
– slmgr.vbs -dlv
– slmgr.vbs -xpr

Filed Under: Windows Tagged With: Activation, Activation Status

Upgrade Debian lenny to squeeze

November 20, 2010 by Igor Drobot 1 Comment

Debian Logo

This upgrade from lenny to squeeze is not more complexer then the update from etch to lenny.
If you read everything carefully your server will run after upgrade too:)

Before you go on please read the official Debian release notes:

Recording your session:

1
script -t 2>~/upgrade-squeezestep.time -a ~/upgrade-squeezestep.script

script -t 2>~/upgrade-squeezestep.time -a ~/upgrade-squeezestep.script

First you should update your running system:

1
aptitude update && aptitude dist-upgrade

aptitude update && aptitude dist-upgrade

Check the package state:

1
dpkg --audit

dpkg --audit

It will show any packages which have a status of Half-Installed or Failed-Config, and those with any error status.

If you had a kernel upgrade please reboot. After successfully updates replace the sources from lenny to squeeze:
[Read more…]

Filed Under: Bash, Debian, Kernel, Linux Tagged With: Debian squeeze, lenny to squeeze, Upgrade debian

Firefox start in offline mode?

November 3, 2010 by Igor Drobot Leave a Comment

If you have this problem you know how frustrating it can be. Every time you start Firefox it wants to start in offline mode. To get around this you have to go to the File menu and uncheck the Work Offline box. And all your open tabs takes a lot of time to load :(

open the about:config window (you will most likely have to click the check box promising you’ll be careful using this configuration page), and do a search for the string:

toolkit.networkmanager

This string should have a true value

Filed Under: Linux Tagged With: firefox, mozilla

  • « Previous Page
  • 1
  • …
  • 57
  • 58
  • 59
  • 60
  • 61
  • …
  • 74
  • Next Page »
Yeaaah Cookie! We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.Ok