centos8 安裝 docker
https://www.cnblogs.com/zbseoag/p/11736006.htmlposted @ 2020-05-06 12:57 狼愛上貍 閱讀(397) | 評論 (3) | 編輯 收藏
我胡漢三又回來了
2020年2月25日 #
posted @ 2020-05-06 12:57 狼愛上貍 閱讀(397) | 評論 (3) | 編輯 收藏
posted @ 2020-04-18 09:45 狼愛上貍 閱讀(291) | 評論 (0) | 編輯 收藏
posted @ 2020-03-22 08:22 狼愛上貍 閱讀(294) | 評論 (0) | 編輯 收藏
posted @ 2020-03-21 21:43 狼愛上貍 閱讀(243) | 評論 (0) | 編輯 收藏
posted @ 2020-03-20 21:52 狼愛上貍 閱讀(562) | 評論 (0) | 編輯 收藏
posted @ 2020-03-20 18:53 狼愛上貍 閱讀(190) | 評論 (0) | 編輯 收藏
posted @ 2020-03-19 17:10 狼愛上貍 閱讀(168) | 評論 (0) | 編輯 收藏
posted @ 2020-03-14 11:01 狼愛上貍 閱讀(477) | 評論 (0) | 編輯 收藏
posted @ 2020-03-09 18:20 狼愛上貍 閱讀(947) | 評論 (0) | 編輯 收藏
posted @ 2020-03-08 23:21 狼愛上貍| 編輯 收藏
posted @ 2020-03-07 19:08 狼愛上貍 閱讀(317) | 評論 (0) | 編輯 收藏
posted @ 2020-03-07 18:59 狼愛上貍 閱讀(212) | 評論 (0) | 編輯 收藏
posted @ 2020-03-03 18:43 狼愛上貍 閱讀(772) | 評論 (0) | 編輯 收藏
posted @ 2020-03-03 16:20 狼愛上貍 閱讀(125) | 評論 (0) | 編輯 收藏
===============CentOS 7.6================
1.查看系統時間
date
查看當前系統時間以及時區
結果是:
Mon Jul 8 09:23:31 UTC 2019
2.更改系統時間時區
timedatectl set-timezone Asia/Shanghai
3.再次查看
date
結果是:
Mon Jul 8 17:25:28 CST 2019
4.可以重啟后查看,防止重啟后失效
reboot
=======================
posted @ 2020-03-02 21:11 狼愛上貍 閱讀(218) | 評論 (0) | 編輯 收藏
posted @ 2020-03-02 19:47 狼愛上貍 閱讀(124) | 評論 (0) | 編輯 收藏
posted @ 2020-03-02 18:34 狼愛上貍 閱讀(103) | 評論 (0) | 編輯 收藏
posted @ 2020-03-01 20:45 狼愛上貍 閱讀(3086) | 評論 (0) | 編輯 收藏
Catalina 10.15
系統posted @ 2020-03-01 20:43 狼愛上貍 閱讀(176) | 評論 (0) | 編輯 收藏
keytool -genkey -v -keystore ./key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias key
apk 輸出在:key.properties
storePassword=123456
keyPassword=123456
keyAlias=key
storeFile=C:/Users/Administrator/AndroidStudioProjects/flutter_app/key.jks
build.gradledef localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
def keystorePropertiesFile = rootProject.file("key.properties")
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
android {
compileSdkVersion 28
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.flutter_app"
minSdkVersion 16
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
//signingConfig signingConfigs.debug
signingConfig signingConfigs.release
}
}
}
flutter {
source '../..'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}
posted @ 2020-02-29 11:48 狼愛上貍 閱讀(342) | 評論 (0) | 編輯 收藏
posted @ 2020-02-25 18:18 狼愛上貍 閱讀(146) | 評論 (0) | 編輯 收藏
posted @ 2020-02-25 12:47 狼愛上貍 閱讀(942) | 評論 (0) | 編輯 收藏
2.0.0-rc
posted @ 2020-02-25 12:46 狼愛上貍 閱讀(400) | 評論 (0) | 編輯 收藏
posted @ 2020-02-25 11:40 狼愛上貍 閱讀(138) | 評論 (0) | 編輯 收藏