virtualbox file type 변경하기(vdi,vmdk,vhd,hdd,qem,qcow) virtualbox file type 변경하기(vdi,vmdk,vhd,hdd,qem,qcow) # VBoxManage clonehd "aa.vdi" bbb.vmdk --format vmdk(변경하고싶은) --variant standard위와 같은 명령으로 변경이 가능하다. Linux 2013.08.16
centos 6.4 svn 1.7.x 설치하기 centos 6.4 에는 기본으로 1.6.11 설치되어 있다.[root@localhost ~]# svn --versionsvn, version 1.6.11 (r934486) compiled Jun 23 2012, 00:44:03 Copyright (C) 2000-2009 CollabNet.Subversion is open source software, see http://subversion.tigris.org/This product includes software developed by CollabNet (http://www.Collab.Net/). The following repository access (RA) modules are available: * ra_neon : Module for acce.. Linux 2013.08.14
리눅스 버전확인 방법 여러가지 방법이 있다.첫번째[root@localhost ~]# cat /etc/issueCentOS release 6.4 (Final)Kernel \r on an \m 두번째[root@localhost ~]# cat /etc/*-releaseCentOS release 6.4 (Final)LSB_VERSION=base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarchCentOS release 6.4 (Final)CentOS release 6.4 (Final) Linux 2013.08.10
리눅스 부팅 에러 어느날 갑자기 부팅이 안되고***** An error occurred during the file system check***** Dropping you to a shell; the system will reboot***** When you leave the shellGive root passward for maintenance(or type Control -D for normal startup): 위와 같이 에러가 뜨는경우가 생긴다.참 난감하다. root 암호를 입력하고(Repair filesystem) 1#화면이 뜨면(Repair filesystem) 1# fsck -y눌러서 repair 를 하면 된다. 물리적인 문제가 아니라면 왠만하면 다 복구 된다. Linux 2013.08.09
error connection activation failed device not managed by networkmanager or unavailable 서버에 Centos 6.4 를 설치를 했는데 네트워크 연결이 안된다.IP셋팅 후 [root@localhost ~]# service network stopShutting down interface eth0: Error: Device 'eth0' (/org/freedesktop/NetworkManager/Devices/0) disconnecting failed: This device is not active[FAILED]Shutting down loopback interface: Error: Device 'lo' not found.[FAILED]Bringing up loopback interface: [ OK ]Bringing up interface eth0: Error: Connection activati.. Linux 2013.08.08
리눅스(centos) 본딩(bonding) 랜카드 2개가 장착되어 있는 시스템에 본딩을 사용할수 있다. 윈도우는 티밍, 리눅스는 본딩 기술이다. 가상 이더넷(bond0) 설정[root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg-bond0DEVICE=bond0BOOTPROTO=noneONBOOT=yesIPADDR=192.168.0.10NETMASK=255.255.255.0GATEWAY=192.168.0.1DNS1=168.126.63.1DNS1=168.126.63.2USERCTL=noNM_CONTROLLED=noBONDING_MASTER=yesBONDING_OPTS="mode=balance-alb miimon=100"# IP를 자동할동으로 사용할 경우 IP 항목 모두 삭제 후 BOOTPROTO=d.. Linux 2013.08.06
hostname 변경하기 리눅스(linux)[root@localhost ~]# vi /etc/sysconfig/networkNETWORKING=yes#HOSTNAME=localhost HOSTNAME=test위와 같이 변경해주면 된다. 확인 방법[root@localhost ~]# hostnamelocalhost 우분투(ubuntu)root@localhost:~# vi /etc/hostnamelocalhost -> test 수정 root@localhost:~# vi /etc/hosts127.0.1.1 localhost -> test 수정 확인 방법 리눅스와 동일하다.root@localhost: ~# hostnamelocalhost Linux 2013.08.06
ext4 삭제파일 복구 extundelete ext4 삭제 파일 복구 방법이다. 우선 복구 프로그램 설치 설치전에 # yum install e2fsprogs-devel 미리 설치를 하자 그리고 [root@localhost tmp]# wget http://sourceforge.net/projects/extundelete/files/extundelete-0.2.4.tar.bz2 [root@localhost tmp]# tar -xvf extundelete-0.2.4.tar.bz2 [root@localhost tmp]# cd extundelete-0.2.4.tar.bz2 [root@localhost extundelete-0.2.4]# ./configure [root@localhost extundelete-0.2.4]# make && make install.. Linux 2013.08.05
HDIO_DRIVE_CMD(null) (wait for flush complete) failed: Inappropriate ioctl for device hdparm 테스트 하는데[root@test ~]# hdparm -tT /dev/mapper/isw_ciajbcfggd_Volume1p8 /dev/mapper/isw_ciajbcfggd_Volume1p8: Timing cached reads: 51120 MB in 1.99 seconds = 25636.22 MB/secHDIO_DRIVE_CMD(null) (wait for flush complete) failed: Inappropriate ioctl for device Timing buffered disk reads: 1110 MB in 3.00 seconds = 369.83 MB/secHDIO_DRIVE_CMD(null) (wait for flush complete) failed: Inappropriat.. Linux 2013.07.31
xterm unknown terminal type 어느날 갑자기 리눅스 명령어가 안먹고xterm unknown terminal type에러를 뿜고 있다면# export TERM=console 입력하면 된다. Linux 2013.07.31