monitor memory usage
$ watch vmstat -sSM View this command to comment, vote or add to favourites View all commands by 0disse0 by David Winterbottom (codeinthehole.com)
View ArticleTo Stop or Start (Restart) a Windows service from a Linux machine
$ net rpc -I indirizzoip -U nomeutente%password servizio {stop|start} nomedelservizio View this command to comment, vote or add to favourites View all commands by 0disse0 by David Winterbottom...
View ArticleVirtualbox: setup hardware
$ VBoxManage modifyvm "vm-name" --memory 256 --acpi on --ioapic off --pae on --hwvirtex on --nestedpaging on where - memory 256 assign 256 Mb RAM - acpi on enable ACPI (mandatory if you use Winfog 2000...
View Articleto clone an NTFS partition
$ ntfsclone Although not frequently used, it is possible to clone an NTFS partition to an image file and, where necessary, restore the image to another partition. This command is useful, for example,...
View Articlecreate an empty NTFS partition
$ mkntfs /dev/hda1 With this command you can create an empty NTFS partition. The command is useful if, for example, we want to format a previous installation of Windows and reinstall before you want to...
View Articleresize a NTFS partition
$ ntfsresize --size X[k,M.G] /dev/hda1 With this command you can resize an NTFS partition by specifying the new size (X) in Kbytes, Mbytes or Gbytes. If you plan to do this it is advisable to precede...
View Articleforcing Windows to do the scandisk during boot
$ ntfsfix /dev/hda1 This command marks it as "dirty" NTFS partition, forcing Windows to do the scandisk during boot. It is convenient if you work hard to NTFS partitions under Linux View this command...
View ArticleHow to add an "alternate access mapping" from the command line
$ stsadm -o addalternatedomain -url http://paperino.paperopoli.com -urlzone Internet -incomingurl http://quiquoqua.paperopoli.com How to add an "alternate access mapping" from the command line and...
View ArticleAdd a controller to a VirtualBox
$ VBoxManage storageattach "volpedimongibello" --storagectl "fighetto" --port 1 --device 0 --type dvddrive --medium "/tanto/mipaghi/tutto.iso was inspired by...
View ArticleHow to remove an ISO image from media database
$ VBoxManage closemedium dvd "/sicuramente/mipaghi/tutto.iso View this command to comment, vote or add to favourites View all commands by 0disse0 by David Winterbottom (codeinthehole.com)
View ArticleHow to extract 5000 records from each table in MySQL
$ mysqldump --opt --where="true LIMIT 5000" dbinproduzione > miodbditest.sql How to extract data from one table: mysqldump --opt --where="true LIMIT 5000" dbinproduzione tabella >...
View Articledisplay memory usage of a process
$ TOTAL_RAM=`free | head -n 2 | tail -n 1 | awk '{ print $2 }'`; PROC_RSS=`ps axo rss,comm | grep [h]ttpd | awk '{ TOTAL += $1 } END { print TOTAL }'`; PROC_PCT=`echo "scale=4; ( $PROC_RSS/$TOTAL_RAM )...
View Articleubuntu tasksel
$ tasksel list-tasks The command tasksel allows the choice of packages from the command line to get predefined configurations for specific services (usually this option is offered during installation)....
View ArticleArchive all files that have not been modified in the last days
$ find /protocollo/paflow -type f -mtime +5 | xargs tar -cvf /var/dump-protocollo/`date '+%d%m%Y'_archive.tar` Finally, we can make the file "unchangeable" sudo chattr +i View this command to comment,...
View ArticleSend SVN diff to Meld
$ svn diff --diff-cmd='meld' -r 100:BASE FILE View this command to comment, vote or add to favourites View all commands by 0disse0 by David Winterbottom (codeinthehole.com)
View ArticleAccess to a SVN repository on a different port
$ sudo svn co svn+ ciccio_diverso://root@192.160.150.151/svn-repo/progettino first need to Edit the configuration file /home/cicciobomba/.subversion and under the [tunnels] add this line ciccio_diverso...
View ArticleHow to access to virtual machine
$ VBoxManage modifyvm "vm-name" --vrdp on --vrdpport 3389 --vrdpauthtype external --vrdp on enables VirtualBox RDP server for the VM --vrdpport 3389 ndicates the TCP port that the server will accept...
View ArticleTo capture a remote screen
$ DISPLAY=":0.0" import -window root screenshot.png But if you use a screen saver, you must first disable your screen saver kill $(ps ax | grep screensaver | grep -v grep | awk '{ print $1 }') View...
View ArticleKill a process (in windows)
$ taskkill /F /FI "USERNAME eq Cicciopalla" The taskkill command has the option of the curve, for a complete list just type: taskkill /? As we know, but to give a practical example, suppose you want to...
View Articlehow to allow a program to listen through the firewall
$ netsh firewall add programmaautorizzato C:\nltest.exe mltest enable To allow a program ("programmaautorizzato" in example) to listen through the firewall View this command to comment, vote or add to...
View Articlewhat model of computer I'm using?
$ sudo hal-get-property --udi /org/freedesktop/Hal/devices/computer --key 'system.hardware.product' View this command to comment, vote or add to favourites View all commands by 0disse0 by David...
View ArticleI am using a desktop?
$ sudo hal-get-property --udi /org/freedesktop/Hal/devices/computer --key 'system.formfactor' View this command to comment, vote or add to favourites View all commands by 0disse0 by David Winterbottom...
View ArticleCreate new user with home dir and given password
$ useradd -m -p $(perl -e'print crypt("passwordscelta", "stigghiola")') user The crypt function takes a password, key, as a string, and a salt character array which is described below, and returns a...
View ArticleReverse SSH
$ ssh -f -N -R 8888:localhost:22 user@somedomain.org this command from the source server and this follow in the destination server: ssh user@localhost -p 8888 View this command to comment, vote or add...
View ArticlettyS0 - terminal on serial connection
$ setserial -q /dev/ttyS0 I actually planned to do this for quite a long time, but since I haven't had any suitable client hardware, I procrastinated this. Now, the old laptop I've got from my dad,...
View Article