Unmount disk
umount /dev/sdb1
Gunakan perintah tunefs untuk mengubah jenis partisi
tune2fs -O extents,uninit_bg,dir_index /dev/sdb1
Mount disk kembali
mount /dev/sdb1 /mnt1
Artikel Saintek Umum
Unmount disk
umount /dev/sdb1
Gunakan perintah tunefs untuk mengubah jenis partisi
tune2fs -O extents,uninit_bg,dir_index /dev/sdb1
Mount disk kembali
mount /dev/sdb1 /mnt1
Tutorial ini mengajarkan tentang cara membuat blog statis menggunakan Hugo pada Windows 10.
Ada banyak pilihan tema open-source untuk membuat blog dengan Hugo. Dalam tutorial ini, kita akan menggunakan tema Hulga.
Ini adalah langkah-langkah menginstall hugo dan menerapkan tema pada blog:
C:\Hugo\bin
, atau folder apapun yang Anda pilih.C:\Hugo\bin
) ke Path (ada di bagian System Environment pada setting Windows).hugo version
. Jika tidak ada pesan error, maka Anda sudah berhasil menginstall Hugo.hugo new site mysite
. Command ini akan membuat folder bernama mysite
yang akan menjadi source blog Anda.mysite/themes
, dan ganti nama folder hugo-theme-hulga
menjadi hulga
theme = "hulga"
ke file config.toml
yang ada pada direktori mysite
. Ini adalah contoh file config.toml
sederhana: baseURL = "https://example.com"
languageCode = "id"
title = "Site Hugo Baru"
paginate = 10
theme = "hulga"
[params]
subtitle = "Keterangan website."
copyright = "Copyright © 2021"
[menu]
[[menu.main]]
identifier = "index"
name = "index"
url = "/"
weight = 1
[taxonomies]
category = "categories"
tag = "tags"
post
di dalam folder mysite\content
mypost.md
di dalam mysite\content\post
mypost.md
sederhana:---
title: "Postingan Pertama"
date: 2021-11-17T14:15:55+07:00
draft: false
categories: [development, publishing]
tags: [hugo, static site generator]
---
Postingan pertama.
mysite
dengan mengetik cd mysite
hugo server
.Referensi:
https://www.freecodecamp.org/news/your-first-hugo-blog-a-practical-guide/
https://gohugo.io/getting-started/quick-start/
https://gohugo.io/getting-started/installing/
https://themes.gohugo.io/themes/hugo-theme-hulga/
Perintah untuk instalasi pytorch:
conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch
Permasalahan:
Downloading and Extracting Packages
pytorch-1.10.0 | 1.45 GB | ######################################################1 | 71%
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://conda.anaconda.org/pytorch/win-64/pytorch-1.10.0-py3.9_cuda11.3_cudnn8_0.tar.bz2>
Elapsed: -
An HTTP error occurred when trying to retrieve this URL.
HTTP errors are often intermittent, and a simple retry will get you on your way.
Penyebab
Solusi:
Ubah timeout, dengan perintah “conda config --set remote_read_timeout_secs new_time_out
, atau
Download file besar secara manual menggunakan wget
Berikut ini cara instalasi redmine versi 4.0.6 di Ubuntu 20.04.2. Redmine 4.0.6 adalah versi redmine yang dapat diinstall menggunakan tools apt dari Ubuntu. Pada saat tulisan ini dibuat, versi terbaru dari Redmine adalah 4.2.3
apt-get install apache2 software-properties-common ruby-rmagick mysql-server mysql-client mysql-common ruby-dev build-essential libmysqlclient-dev libssl-dev gcc libmysqlclient-dev libapache2-mod-passenger
apt-get install imagemagick libmagickcore-dev libmagickwand-dev
apt-get install libmagickcore-dev
Instalasi Redmine dan update bundle dari Ruby
apt-get install redmine redmine-mysql
gem update
gem install bundler
cd /usr/share/redmine
bundle update
Konfigurasi Apache2
edit file /etc/apache2/mods-available/passenger.conf
existing:
PassengerRoot /usr/lib/ruby/vendor_ruby/phusion_passenger/locations.ini PassengerDefaultRuby /usr/bin/ruby
ditambah “PassengerDefaultUser www-data” menjadi:
PassengerDefaultUser www-data
PassengerRoot /usr/lib/ruby/vendor_ruby/phusion_passenger/locations.ini PassengerDefaultRuby /usr/bin/ruby
tambahkan symlink:
ln -s /usr/share/redmine/public /var/www/html/redmine
edit file /etc/apache2/sites-available/000-default.conf , tambahkan sebagai berikut:
<Directory /var/www/html/redmine>
RailsBaseURI /redmine
PassengerResolveSymlinksInDocumentRoot on
</Directory>
Tambahkan file lock untuk Gemfile
touch /usr/share/redmine/Gemfile.lock
chown www-data:www-data /usr/share/redmine/Gemfile.lock
Restart Apache supaya konfigurasi dibaca ulang:
service apache2 restart
cek di browser:
ke alamat http://192.168.0.203/redmine
Restart Apache2
service apache2 restart
Browse ke alamat server anda, misal http://192.168.0.10/redmine
default username: admin, default password: admin
setelah login akan diminta untuk mengganti password
Jika muncul pesan kesalahan, coba jalankan instruksi berikut ini [ref: https://www.redmine.org/boards/2/topics/65152]
bundle clean --force
bundle update thor
bundle install
bundle update
service apache2 restart
Pada saat tulisan ini dibuat, Moodle terbaru adalah versi 3.11. Namun demikian, Moodle versi 3.6 masih diperlukan jika kita melakukan upgrade dari Moodle versi sebelum 3.6. Ada sedikit kesulitan pada instalasi Moodle 3.6 karena Moodle 3.6 tidak dapat diinstall dengan PHP 7.3, padahal instalasi Ubuntu 20.04.2 secara default akan menginstall PHP versi 7.4. Untuk itu kita perlu mengubah sedikit prosedur instalasi, supaay versi PHP yang diinstall adalah versi 7.3, bukan 7.4
Tahap pertama adalah update Ubuntu
apt update
apt upgrade
Setelah itu download dan buka source code Moodle 3.6
cd /var/www/html
tar -xzvf moodle-latest-36.tgz
pakai PHP 7.3
add-apt-repository ppa:ondrej/php
apt update
apt upgrade
apt install apache2
apt install mysql-server
apt install php7.3
apt install php7.3-xml
apt install php7.3-curl
apt install php7.3-gd
apt install php7.3-zip
apt install php7.3-intl
apt install php7.3-mysqli
apt install php7.3-mbstring
apt install php7.3-xmlrpc
apt install php7.3-soap
apt install libapache2-mod-php7.3 php7.3-mysql
apt install apache2 mysql-server php7.3 php7.3-xml php7.3-curl php7.3-gd php7.3-zip php7.3-intl php7.3-mysqli php7.3-mbstring php7.3-xmlrpc php7.3-soap libapache2-mod-php7.3 php7.3-mysql
Restart apache2
service apache2 restart
Masuk ke console MySQL , kemudian buat user baru untuk Moodle:
CREATE USER 'moodle'@'localhost' IDENTIFIED BY 'moodlepassword';
GRANT ALL PRIVILEGES ON moodle . * TO 'moodle'@'localhost';
ALTER USER 'moodle'@'localhost' IDENTIFIED WITH mysql_native_password BY 'moodlepassword';
Setelah itu proses instalasi dapat dilanjutkan melalui web browser
browse ke http://192.168.0.120/moodle/
auto redirect ke http://192.168.0.120/moodle/install.php
Australia’s Artificial Intelligence Action Plan https://www.industry.gov.au/data-and-publications/australias-artificial-intelligence-action-plan
Proses instalasi
conda install pip
pip install jupyter
pip install jupyterthemes
pip install matplotlib
pip install casidi
Abstract
A benchmark provides an ecosystem to measure the advancement of models with standard datasets and automatic and human evaluation metrics. We introduce IndoNLG, the first such benchmark for the Indonesian language for natural language generation (NLG). It covers six tasks: summarization, question answering, open chitchat, as well as three different language-pairs of machine translation tasks. We provide a vast and clean pre-training corpus of Indonesian, Sundanese, and Javanese datasets called Indo4B-Plus, which is used to train our pre-trained NLG model, IndoBART. We evaluate the effectiveness and efficiency of IndoBART by conducting extensive evaluation on all IndoNLG tasks. Our findings show that IndoBART achieves competitive performance on Indonesian tasks with five times fewer parameters compared to the largest multilingual model in our benchmark, mBART-LARGE (Liu et al., 2020), and an almost 4x and 2.5x faster inference time on the CPU and GPU respectively. We additionally demonstrate the ability of IndoBART to learn Javanese and Sundanese, and it achieves decent performance on machine translation tasks.
Spice.ai available on GitHub, a new open source project that helps developers use deep learning to create intelligent applications
Prosedur instalasi Pytorch di Windows:
Saya menggunakan conda, untuk itu di Windows mesti melakukan dulu instalasi Anaconda Individual Edition atau Miniconda