quinta-feira, 1 de agosto de 2013

Grub no Debian 7

Como adicionar ao Grub do Debian 7 o meu segundo HD com Windows 7?

os-prober um script para detecção de outros SOs instalados.
update-grub que gera um novo arquivo de configuração grub.cfg.

Mãos a massa!
Logado como root execute:

root@hulk:~# aptitude search os-prober
i A os-prober                       - Utilitário para detectar outros SOs em um
p   os-prober:i386                  - Utilitário para detectar outros SOs em um

root@hulk:~# os-prober
/dev/sdc1:Windows 7 (loader):Windows:chain

root@hulk:~# update-grub
Generating grub.cfg ...
Found background image: /usr/share/images/desktop-base/desktop-grub.png
Found linux image: /boot/vmlinuz-3.2.0-4-amd64
Found initrd image: /boot/initrd.img-3.2.0-4-amd64
Found Windows 7 (loader) on /dev/sdc1
done

root@hulk:~# shutdown -r now

Pronto!



quinta-feira, 10 de janeiro de 2013

daloRADIUS

daloRADIUS is an advanced RADIUS web platform aimed at managing Hotspots and general-purpose ISP deployments. It features rich user management, graphical reporting, accounting, and integrates with GoogleMaps for geo-locating (GIS). daloRADIUS is written in PHP and JavaScript and utilizes a database abstraction layer which means that it supports many database systems, among them the popular MySQL, PostgreSQL, Sqlite, MsSQL, and many others.

http://www.daloradius.com/

quinta-feira, 3 de janeiro de 2013

Bitvise Tunnelier is an SSH and SFTP client for Windows.


Tunnelier is an SSH and SFTP client for Windows. It is developed and supported professionally by Bitvise. Tunnelier is robust, easy to install, easy to use, and supports all features supported by PuTTY, as well as the following:
  • graphical SFTP file transfer;
  • single-click Remote Desktop tunneling;
  • auto-reconnecting capability;
  • dynamic port forwarding through an integrated proxy;
  • an FTP-to-SFTP protocol bridge.
Tunnelier is free for personal use, as well as for individual commercial use inside organizations. You can download Tunnelier here.

terça-feira, 1 de janeiro de 2013

Setting Reverse Proxy With Apache2 on Debian 6


Load modules

#a2enmod proxy
#a2enmod proxy_http

Reload Apache

#/etc/init.d/apache2 force-reload

Virtualhost Configuration

#cd /etc/apache2/sites-available/
#vi website

<VirtualHost *:80>
        ServerName website.no-ip.org
        ProxyPass       /       http://192.168.x.y
        ProxyPassReverse        /       http://192.168.x.y
</VirtualHost>

Disable Default

#a2dissite default

Enable new Virtualhost

#a2ensite website

Restart Apache

#/etc/init.d/apache2 restart

Ok!

segunda-feira, 3 de dezembro de 2012