5월, 2014의 게시물 표시

kali linux gpg error 칼리 리눅스 gpg 에러

kali linux gpg error 칼리 리눅스 gpg 에러 에러 발생시 다음과 같이 조치 하면 진행 된다. gpg --keyserver pgpkeys.mit.edu --recv-key  ED444FF07D8D0BF6 gpg -a --export ED444FF07D8D0BF6 | sudo apt-key add - 지속적으로 문제 발생시 gpg키 삭제후 재시도 해본다.

debian source list add backtack

If you are not familiar with piping this is what this long string of command means: 1. wget http://all.repository.backtrack-linux.org/backtrack.gpg 2. sudo apt-key add backtrack.gpg wget http://all.repository.backtrack-linux.org/backtrack.gpg -O - This means download backtrack.gpg and output to stdout (standard output stream) sudo apt-key add - This means add apt-key from the stdin (standard input stream) wget http://all.repository.backtrack-linux.org/backtrack.gpg -O – | sudo apt-key add - Add the repositories Edit the file /etc/apt/sources.list with your favourite text editor. #backtrack deb http://all.repository.backtrack-linux.org revolution main microverse non-free testing deb http://all.repository.backtrack-linux.org revolution main microverse non-free testing deb http://all.repository.backtrack-linux.org revolution main microverse non-free testing

freebsd x60 /etc/ 설정 파일

 /etc/rc.conf #vesa mode allscreens_flags="-g 132x60 MODE_280" #host mode hostname="x60_fly" keymap="us.iso.kbd" # wireless wlans_wpi0="wlan0" ifconfig_wlan0="WPA DHCP" #ssh server sshd_enable="YES" # power saving powerd_enable="YES" performance_cx_lowest="C3" economy_cx_lowest="C3" # Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable dumpdev="NO" dbus_enable="YES" hald_enable="YES" gdm_enable="YES" linux_enable="YES" gnome_enabLe="YES" polkitd_enable="YES" # disable sendmail sendmail_enable="NONE" # trackpad scrolling moused_enable="YES" moused_flags="-V" # auto usb hdd mount devfs_system_ruleset="mypassport" fusefs_enable="YES" fuse_load="YES" /etc/sysctl.conf # $FreeBSD: release/10.0.0/etc/sysctl.conf 112200 2003-03-13 18:43:50Z ...

리눅스 매직 키

Using the Magic SysRq Key The SysRq key is located near the Scroll Lock key on your keyboard – the Sys Rq key is generally the same as your Print Screen key. The “magic” SysRq combination is Alt+SysRq. To use this key combination, your Linux kernel must have been compiled with the CONFIG_MAGIC_SYSRQ compile option – most Linux distributions will have this enabled by default. Assuming it’s compiled into your kernel, it can be enabled or disabled on a running system by changing the value of /proc/sys/kernel/sysrq. To check if it’s enabled, run the following command:     cat /proc/sys/kernel/sysrq If you see a “1”, the magic SysRq key is enabled. image If you see a “0”, you’ll have to enable it yourself by running the following command as root:     echo “1” > /proc/sys/kernel/sysrq Dealing With a Frozen X Server If your X server (the program that runs your graphical deskt...

freebsd magic key

* How do I use the magic SysRQ key? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ On x86 - You press the key combo 'ALT-SysRQ-<command key>'. Note - Some (older?) may not have a key labeled 'SysRQ'. The 'SysRQ' key is also known as the 'Print Screen' key. On SPARC - You press 'ALT-STOP-<command key>', I believe. On PowerPC - You press 'ALT-Print Screen-<command key>'. On other - If you know of the key combos for other architectures, please let me know so I can add them to this section. * What are the 'command' keys? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 'r' - Turns off keyboard raw mode and sets it to XLATE. 'k' - Kills all programs on the current virtual console. 'b' - Will immediately reboot the system without syncing or unmounting your disks. 'o' - Will shut your system off (if configured and supported). 's' - Will attempt to sync all mounted filesystems. 'u' - Will at...