Pues no es que tenga nada que decir pero, por no dejar el blog abandonado publico esto. A lo mejor este año lo retomo.
Emulador de terminal "Termux", hay bastante información por ahí así que no voy a repetir cosas. Me está gustando bastante.
Pues no es que tenga nada que decir pero, por no dejar el blog abandonado publico esto. A lo mejor este año lo retomo.
Emulador de terminal "Termux", hay bastante información por ahí así que no voy a repetir cosas. Me está gustando bastante.
Mwahahahahaaaaa. Me llega una actua lización de no sé donde para corregir ciertos defectillos.
Ahora ya no la encuentro donde anda.
Manda carallo.
http://www.androidpit.es/stagefright-fallo-de-seguridad-como-protegerse
#aptitude install openssh-server
#aptitude install openssh-client
#aptitude install ifplugd
1 # This file may be changed either manually or by running dpkg-reconfigure.
2 #
3 # N.B.: dpkg-reconfigure deletes everything from this file except for
4 # the assignments to variables INTERFACES, HOTPLUG_INTERFACES, ARGS and
5 # SUSPEND_ACTION. When run it uses the current values of those variables
6 # as their default values, thus preserving the administrator's changes.
7 #
8 # This file is sourced by both the init script /etc/init.d/ifplugd and
9 # the udev script /lib/udev/ifplugd.agent to give default values.
10 # The init script starts ifplugd for all interfaces listed in
11 # INTERFACES, and the udev script starts ifplugd for all interfaces
12 # listed in HOTPLUG_INTERFACES. The special value all starts one
13 # ifplugd for all interfaces being present.
14 INTERFACES="usb0"
15 HOTPLUG_INTERFACES="usb0"
16 ARGS="-q -f -u0 -d10 -w -I"
17 SUSPEND_ACTION="stop"
1 # This file describes the network interfaces available on your system
2 # and how to activate them. For more information, see interfaces(5).
3
4 # The loopback network interface
5 auto lo
6 iface lo inet loopback
7
8 auto usb0
9 iface usb0 inet static
10 address 192.168.42.2
11 netmask 255.255.255.0
12 gateway 192.168.42.129
$ ssh 192.168.42.2
$ ssh-keygen
# mount -t vboxsf www /var/www
1 127.0.0.1 localhost
2 127.0.1.1 debian
3
4 #192.168.42.2 server.jorge.com server
5 192.168.42.86 apache-deb.jorge.com apache-deb
6 192.168.42.120 vsftp-deb.jorge.com vsftp-deb
7 192.168.42.51 openldap-deb.jorge.com openldap-deb
8 192.168.42.2 server.jorge.com server
9
10
11 # The following lines are desirable for IPv6 capable hosts
12 ::1 localhost ip6-localhost ip6-loopback
13 ff02::1 ip6-allnodes
14 ff02::2 ip6-allrouters
1 127.0.0.1 localhost
2 127.0.1.1 server.jorge.com server
3
4 # The following lines are desirable for IPv6 capable hosts
5 ::1 localhost ip6-localhost ip6-loopback
6 ff02::1 ip6-allnodes
7 ff02::2 ip6-allrouters
1 #! /bin/sh
2 # /etc/init.d/VM
3 #
4 VMUSER=jorge
5 VM1NAME= "openldap-deb"
6 VM2NAME="apache-deb"
7 VM3NAME="vsftp-deb"
8
9 case "$1" in
10 start)
11 echo "Starting VirtualBox VM...
12 sudo -H -b -u $VMUSER vboxmanage startvm "$VM1NAME" --type headless
13 sudo -H -b -u $VMUSER vboxmanage startvm "$VM2NAME" --type headless
14 sudo -H -b -u $VMUSER vboxmanage startvm "$VM3NAME" --type headless
15 ;;
16 stop)
17 echo "Saving state of Virtualbox VM...
18 sudo -H -b -u $VMUSER vboxmanage controlvm "$VM1NAME" savestate
19 sudo -H -b -u $VMUSER vboxmanage controlvm "$VM2NAME" savestate
20 sudo -H -b -u $VMUSER vboxmanage controlvm "$VM3NAME" savestate
21 ;;
22 *)
23 echo "Usage: /etc/init.d/VM {start|stop}"
24 exit 1
25 ;;
# chmod +x /etc/init.d/VM
# update-rc.d VM defaults 99 01
1 #!/bin/bash
2 ssh server killall mplayer
3 killall mplayer
4 ssh server rm stream.dump
5 ssh server mplayer --dumpstream dvb://"laSexta" & > /dev/null
6 sleep 20 && ssh server cat stream.dump | mplayer --cache=5024 --cache-min=70 -
#!/bin/bash
iptables -t nat -A FORWARD -o pdp0 -j MASQUERADE
iptables -A FORWARD -i usb0 -j ACCEPT
iptables -A FORWARD -i wlan1 -j ACCEPT
echo 1 > /proc/sys/net/ipv4/ip_forward
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <time.h>
4 int main (void)
5 {
6 int i = 1,j,k;
7 srand(time(NULL));
8 while(i)
9 {
10 k = (rand()%5)+8;
11 for(i = 1;i <= k;++i)
12 {
13 j = 58;
14 while((j > 57 && j < 65) || (j > 90 && j < 97))
15 {
16 j = (rand() % 75) + 48;
17 }
18 printf ("%c",j);
19 }
20 printf("\n");
21 }
22 return 0;
23 }
En /usr/share/dict/ disponemos de algún diccionario con palabras en minúscula. Podemos pasarlo a mayúscula con tr o, también capitalizar sólo la primera letra con:
cat dict-spanish1.txt | sed 's/^./\U&/g' > dict-spanish2.txt
# ip route show
Mostrará algunas líneas, la primera dirá algo así como default via xxx.xxx.xxx.xxx dev interfaz0.
# iptables -t nat POSTROUTING -o interfaz0 -j MASQUERADE
# iptables -P FORWARD ACCEPT
Y con esto debería funcionar.
Como siempre Ajustes - Más ajustes - Zona Wifi y módem USB
Si no funciona puede que sea necesario
# echo 1 > /proc/sys/net/ipv4/ip_forward
# ifconfig usb0 up
# dhclient -v usb0
#!/bin/bash
xrandr --newmode "1280x1024" 109 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync
xrandr --addmode VGA1 1280x1024
xrandr --output VGA1 --mode 1280x1024
xrandr --output LVDS1 --auto --rotate normal --pos 0x0 --output VGA1 --auto --left-of LVDS1
para generar la nueva Modeline utilicé esto cvt 1280 1024 60