... insmod part_gpt set root='(hd0,gpt4)' ... linux /boot/vmlinuz-3.2.0-29 initrd /boot/initrd.img-3.2.0-29-generic
bringout@bringout-Inspiron-5537:~$ lspci
00:00.0 Host bridge: Intel Corporation Haswell-ULT DRAM Controller (rev 09) 00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 09) 00:03.0 Audio device: Intel Corporation Device 0a0c (rev 09) 00:14.0 USB controller: Intel Corporation Lynx Point-LP USB xHCI HC (rev 04) 00:16.0 Communication controller: Intel Corporation Lynx Point-LP HECI #0 (rev 04) 00:1b.0 Audio device: Intel Corporation Lynx Point-LP HD Audio Controller (rev 04) 00:1c.0 PCI bridge: Intel Corporation Lynx Point-LP PCI Express Root Port 3 (rev e4)
vlc --video-filter transform --transform-type=vflip 1.kerim.mp4
vlc 3.kerim.mp4 --sout "#transcode{vcodec=h264,vb=0,scale=0,acodec=mpga,ab=128,channels=2}:file{dst=3.kerim_rotated.mp4}" --sout-transcode-vfilter transform --transform-type vflip --sout-keep
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fonts | |
=============== | |
http://ruturaj.net/tweaking-gnome3-fedora-fonts-like-ubuntu/ | |
vagrant | |
================ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fan control | |
hernad@hernad-Inspiron-5521:~$ cat /etc/i8kmon.conf | |
# Run as daemon, override with --daemon option | |
set config(daemon) 1 | |
# Automatic fan control, override with --auto option | |
set config(auto) 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://forum.openwrt.org/viewtopic.php?id=29747 | |
http://aacable.wordpress.com/2012/08/13/youtube-caching-with-squid-nginx/ | |
/opt/etc/squid/squid.conf | |
------------------------------------------- | |
/opt/home/admin # squid -d 9 | |
/opt/home/admin # squid -z | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://dev.openwrt.org/ticket/5890 | |
sudo su - | |
iptables -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Redirect Packets from ppp0 interface to ethernet interface in linux | |
http://unix.stackexchange.com/questions/62392/redirect-packets-from-ppp0-interface-to-ethernet-interface-in-linux | |
.... | |
From what i see on Wikipedia: "OpenFlow is a Layer 2 communications protocol". | |
ppp gives you a *layer 3 protocol: IP*. | |
*You basically have a interface which can not carry layer 2 information*. | |
To go from layer 2 to layer 3 can be done by discarding the layer 2, but on the other way around, you have to actually fill the layer2 part, via routing or whatever. |