# cryptsetup -c aes-plain create crloop /dev/loop7 # instead of: # cryptsetup create crloop /dev/loop7 # and then mount: # mount /dev/mapper/crloop /mnt/secret-dir
Wednesday, December 28, 2011
cryptsetup upgrade from fedora 12 to 13
From Fedora 12 to fedora 13 cryptsetup change default encryption algorithm. I upgrade my workstation OS. And I can't mount encrypted partition. Mount error: incorrect partition type. In fedora 13 You can try next command for example:
Saturday, November 19, 2011
Весёлая Азбука - Маршак
Wednesday, October 12, 2011
Git - начало
Удалённый сервер:
# ssh user@remote-server
# mkdir my-repo.git
# cd my-repo.git
# git init --bare
Локальный сервер:
# git clone user@remote-server:/home/user/my-repo.git
# cd my-repo/
# vi index.html
# git add .
# git commit -m 'Initial commit'
# git push origin master
Tuesday, October 4, 2011
Amazon kindle: touch and fire
Amazon порвал конкурентов выпустив новые модели Kindle. Touch - читалка на E Ink с сенсорным экраном и 3G. Kindle Fire - полноценный планшет по самой минимальной цене.
Sunday, March 20, 2011
Amazon Kindle 3G
На Amazon появился Kindle третьего поколения, с поддержкой utf-8 (кириллица) и Wi-Fi. Всего за $139! Доставка с UPS в Беларусь ещё $10. Надо покупать.
cgi shell
Многие хостеры запрещают php-функции для работы с системными вызовами. Поэтому php-shell скрипты могут не работать. Но иногда работают cgi-сценарии.
Пример простого shell.cgi скрипта на perl:
А каким хостингом пользуетесь Вы?
Пример простого shell.cgi скрипта на perl:
#!/usr/bin/perl use strict; use warnings; use CGI; print CGI::header( -type => 'text/plain' ); my $command = CGI::param('command'); print "$command\n"; my @out=`$command 2>&1`; print @out;
А каким хостингом пользуетесь Вы?
Subscribe to:
Posts (Atom)