우분투 16버전에서 php5.6 설치하는 방법
sudo add-apt-repository -y ppa:ondrej/php
sudo apt update
sudo apt install php5.6 php5.6-mysql php5.6-curl
Hello world
우분투 16버전에서 php5.6 설치하는 방법
sudo add-apt-repository -y ppa:ondrej/php
sudo apt update
sudo apt install php5.6 php5.6-mysql php5.6-curl
tcpdump -i eth0 -s 0 -A 'tcp dst port 80 and (tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x504f5354)'
tcpdump -i eth0 -s 0 -A 'tcp dst port 80 and tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x47455420'
ALTER user 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '변경할비밀번호';
flush privileges;
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
SET GLOBAL validate_password_policy = LOW SET GLOBAL validate_password_length = 4
[mysqld] validate_password_policy=LOW validate_password_length=4
ASUS 게이밍 노트북 FA506IU-HN174를 윈도우 업데이트를 통해서 드라이버를 설치하면 그래픽 드라이버 관련 오류들이 발생한다. 화면이 깜빡이고 갑자기 멈추고 화면이 꺼지는 현상 등이 발생한다. 또 HDMI 연결시 노트북의 화면이 나오지 않는 문제도 있다.
윈도우즈의 공용드라이버를 사용하면서 나오는 문제로 보이는데 ASUS 공식 홈페이지의 드라이버를 설치하는 것으로 해결한다.
아래 목록은 미리 다운로드 해서 USB등에 저장해둔다. AMD 칩셋드라이버를 제외하면 나머지는 최신을 받아도 될 것 같다.
NVIDIA 그래픽 드라이버
https://dlcdnets.asus.com/pub/ASUS/GamingNB/DriverforWin10/VGA/VGA_NVIDIA_ROG_N18E_W10_64_V2621144223.zip
무선랜 드라이버
https://dlcdnets.asus.com/pub/ASUS/GamingNB/DriverforWin10/Wlan/WLAN_Realtek_W10_64_V2024010111.zip
AMD 칩셋 드라이버 (핵심)
최신버전 다운로드하지 말고 2020-03-03 (V26.20.14001.45004) 버전 사용
https://dlcdnets.asus.com/pub/ASUS/GamingNB/DriverforWin10/Chipset/Chipset_AMD_APU_ROG_W10_64_V26201400145004.zip
ISO파일을 다운로드하고 rufus를 이용해서 USB디스크를 만들어서 설치를 진행한다. windows10 pro 버전으로 설치했다. 설치를 완료가 되는시점에 인터넷 연결을 물어보는데 연결없음으로 진행한다.
Chipset_AMD_APU_ROG_W10_64_V26201400145004.zip 압축을 해제하고 파일탐색기로 보면 install.bat 파일이 있다. 그 상태에서 Alt+F > Windows PowerShell 열기 > 관리자 권한으로 Windows PowerShell 열기를 선택한다. 파워쉘 터미널이 나오면 아래 명령을 입력한다
./install.bat
칩셋 드라이버외 다른것도 마찬가지로 압축을 해제하고 파워쉘(관리자권한으로 실행)로 진입해서 install.bat를 실행해서 설치한다. 간혹 installPackage.bat도 있다.
이 작업을 하지 않으면 윈도우 업데이트시 강제로 AMD 드라이버가 최신으로 변경되어 버린다. 반드시 해야하는 작업이다. 윈도우키+R을 눌러서 실행을 띄우고 gpedit.msc 를 실행해서 로컬 그룹 정책 편집기를 띄운다. 아래 경로로 이동한다
컴퓨터 구성 > 관리 템플릿 > Windows 구성 요소 > Windows 업데이트 > Windows 업데이트에서 드라이버를 포함하지 않음
Windows 업데이트에서 드라이버를 포함하지 않음을 [사용]으로 변경한다.
인터넷을 연결하고, 윈도우 업데이트를 진행한다.
xubuntu에서 vino 사용을 위한 설정
#apt install vino
#gsettings set org.gnome.Vino notify-on-connect false
#gsettings set org.gnome.Vino disable-background false
#gsettings set org.gnome.Vino require-encryption false
#gsettings set org.gnome.Vino prompt-enabled false
#gsettings set org.gnome.Vino vnc-password 1234
#gsettings set org.gnome.Vino view-only true
#cp /usr/share/applications/vino-server.desktop /etc/xdg/autostart/
이전버전에서는 vino를 설치하지만 우분투 18.04이상에서는 기본적으로 vino가 설치되어 있다. 따라서 설정 > share > 데스크탑 공유 켜기만 하면 된다.
<div class="form-group">
<div class="input-group input-group-sm" id="default-daterange">
<input type="text" name="default-daterange" class="form-control" value="<?php echo date("Y-m-d", strtotime("-7 day")) ?> ~ <?php echo date("Y-m-d") ?>" placeholder="기간선택" style="width:200px">
<span class="input-group-append">
<span class="input-group-text"><i class="fa fa-calendar"></i></span>
</span>
</div>
</div>
<link href="/assets/plugins/bootstrap-daterangepicker/daterangepicker.css" rel="stylesheet" />
<script src="/assets/plugins/bootstrap-daterangepicker/moment.js"></script>
<script src="/assets/plugins/bootstrap-daterangepicker/daterangepicker.js"></script>
<script>
$('#default-daterange').daterangepicker({
opens: 'right',
format: 'YYYY-MM-DD',
separator: ' ~ ',
startDate: moment().subtract('days', 7),
endDate: moment(),
minDate: '<?php echo date("Y-m-d", strtotime("-3 year")) ?>',
maxDate: '<?php echo date("Y-m-d") ?>',
locale: {
"format": "YYYY-MM-DD",
"separator": " ~ ",
"applyLabel": "적용",
"cancelLabel": "취소",
"fromLabel": "부터",
"toLabel": "까지",
"customRangeLabel": "사용자",
"daysOfWeek": [
"일",
"월",
"화",
"수",
"목",
"금",
"토"
],
"monthNames": [
"1월",
"2월",
"3월",
"4월",
"5월",
"6월",
"7월",
"8월",
"9월",
"10월",
"11월",
"12월"
],
"firstDay": 1
}
}, function (start, end) {
$('#default-daterange input').val(start.format('YYYY-MM-DD') + ' ~ ' + end.format('YYYY-MM-DD'));
});
</script>
html+css
<link rel="stylesheet" href="http://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="http://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script>
jQuery(function($) {
$.datepicker.regional['ko'] = {
closeText : '닫기',
prevText : '이전달',
nextText : '다음달',
currentText : '오늘',
monthNames : ['1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월'],
monthNamesShort : ['1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월'],
dayNames : ['일', '월', '화', '수', '목', '금', '토'],
dayNamesShort : ['일', '월', '화', '수', '목', '금', '토'],
dayNamesMin : ['일', '월', '화', '수', '목', '금', '토'],
weekHeader : 'Wk',
dateFormat : 'yy-mm-dd',
firstDay : 0,
isRTL : false,
showMonthAfterYear : true,
yearSuffix : '년'
};
$.datepicker.setDefaults($.datepicker.regional['ko']);
});
function onlyMonday(date){
var day = date.getDay();
return [(day == 1), ''];
};
$(document).ready(function(){
$(".datepicker").datepicker({
beforeShowDay: onlyMonday
});
});
</script>
이탈리아 남부 포시타노 가는 길에 한 컷!!
주말을 끼워서 짧게 다녀온 라오스
비엔티안에 도착하자마자 방비엥으로 셔틀타고 날라간다
그리고 숙소에서 자면 하루가..
짥게 잘 놀았고, 다음에 간다면 루앙프라방을 방문하고 싶네