Nihai Performans Ekleme

Perşembe, Ekim 1st, 2020
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61

LibreELEC otomatik video başlatma

Cumartesi, Haziran 13th, 2020
nano /storage/.kodi/userdata/autoexec.py
import xbmc
xbmc.executebuiltin( "PlayMedia(/storage/.kodi/userdata/playlists/video/Liste.m3u)" )
xbmc.executebuiltin( "PlayerControl(repeat)" )

Startup G-Code

Çarşamba, Haziran 3rd, 2020
G21	;metric values
G90	;absolute positioning
M82	;set extruder to absolute mode
M107	;start with the fan off

M190 S[bed0_temperature]
M109 S[extruder0_temperature] T0

M140 S[bed0_temperature]
M104 S[extruder0_temperature] T0

G28	;home
;G29	; auto bed level
M420 S1	; restore auto level

G1 Y10 F1800
G1 Z0.200 F1002
G1 E-1 F1800
G1 X40 E25 F500 ; Extrude 25mm of filament in a 4cm line
G92 A0 B0 E0 ; zero the extruded length
G1 E-1 F500 ; Retract a little
G1 X80 F4000 ; Quickly wipe away from the filament line

G92 E0                  ;zero the extruded length again
G1 F{travel_speed}
M117 Yaziliyor...

UE4 Material Blueprint Shortcuts

Salı, Mayıs 26th, 2020

Software:
Unreal\n Engine 4.24

Some useful Unreal Editor Material Blueprint shortcuts:

Yazının devamını oku »

19 Mayıs 1919

Pazar, Mayıs 17th, 2020

https://www.tarihiyolculuk.com/bilet/WpxxBIhY19vsgxHEUPs3OA2https://www.tarihiyolculuk.com/bilet/WpxxBIhY19vsgxHEUPs3OA2

Installing FTP Server on Linux

Cuma, Mart 6th, 2020

Installing the FTP Framework

1) Before installing the FTP server, you should upgrade the Ubuntu version. After upgrading the Ubuntu version, restart the system.

 sudo apt-get upgrade

2) Install the FTP framework using the VSFTPD install command. This installation will take some time to complete, so be patient.

 sudo apt-get install vsftpd

3) Install FileZilla program which is used to access and upload files into the server.

sudo apt-get install filezilla

Change the Configuration file

1) Before making any changes to the configuration file, we need to take a copy of the same for backup.

sudo cp /etc/vsftpd.conf /etc/vsftpd.conf.orig

2) Edit the vsftpd.conf file to enable or disable certain VSFTPD features.

sudo nano /etc/vsftpd.conf

3) To allow the local users to log in to the FTP server, you need to remove the “#” from the local_enable=YES line. If it is already enabled, then there won’t be a “#” symbol in front of this command.

4) Uncomment the write_enable=YES line to allow the FTP write command.

5) We can disable the “ASCII mangling” by uncommenting the below two lines under the heading “#ASCII mangling is a horrible feature of the protocol.”.

ascii_upload_enable=YES

ascii_download_enable=YES

6) Scroll down to the #Chroot heading and then add the below lines. If any of these lines exist, remove “#” before each existing line.

user_sub_token=$USER

chroot_local_user=YES

chroot_list_enable=YES

7) Edit the default “chroot” settings by adding the below lines under the heading # (default follows). If any of these lines exist, remove “#” before each existing line.

chroot_list_file=/etc/vsftpd.chroot_list

local_root=/home/$USER/Public_html

allow_writeable_chroot=YES

8) Scroll down to the heading, you may activate the “-R” option ….  and uncomment the below:

ls_recurse_enable=YES

9) Save and exit the vsftpd.conf file.

Add Usernames to the CHROOT List

Open the chroot text file and then add the usernames to the list for whom you want to access their Home directories from within the server. After adding the username, you can save the file.

sudo nano /etc/vsftpd.chroot_list

To ensure that the changes have been updated, we should restart the VSFTPD. After this, you will be able to access your FTP server.

sudo systemctl restart vsftpd

Testing FTP Access

1) The IP address can be determined by entering ifconfig in the terminal and then reviewing the “inet addr” number. If “ifconfig” is not installed, then you can install the same by entering the below command.

sudo apt-get install net-tools

2) Then you need to forward your router’s port 21 slots to that IP address; the port should use TCP protocol and not UDP.

3) You can connect to the server by typing FTP [address] in the terminal. Only the users added in the vsftpd.chroot_list file should be able to connect to the server, and others should get a connection failed error.

Accessing FTP using FileZilla

1) Open the FileZilla app and then open the “Site Manager” under the File option.

2) Click the “New Site” option under the Site Manager and add the server address in the “Host” tab. Then add the forwarded port number as 21 into the “Port” text field. Then click “Connect” to connect your computer to your FTP server.

3) After connecting, you can move the files by dragging and dropping the files or folders from the server to the remote system.

This is the end of this tutorial. We hope that now you know how to install and configure FTP server in an Ubuntu system.

QNAP How To Fix and Mount Volume?

Cuma, Ocak 17th, 2020

1 – I type this command;

e2fsck -f -b 32768 /dev/md0

or

e2fsck_64 -fp /dev/md0
Yazının devamını oku »

Debian “no public key available” on apt-get update and sources.list

Pazartesi, Ocak 13th, 2020

apt-get update

sudo apt install debian-archive-keyring
sudo apt-key update

sudo apt-key adv –keyserver keyserver.ubuntu.com –recv-keys <your key>

sudo nano /etc/apt/sources.list

deb http://security.debian.org/ jessie/updates main
deb-src http://security.debian.org/ jessie/updates main

deb http://archive.debian.org/debian/ jessie-backports main
deb-src http://archive.debian.org/debian/ jessie-backports main

deb http://archive.debian.org/debian/ jessie main contrib non-free
deb-src http://archive.debian.org/debian/ jessie main contrib non-free

apt-get update

apt-get upgrade

Qnap Acronis Mobil Backup Dizini

Çarşamba, Ocak 8th, 2020

Qnap da kullandığım Acronis True Image yazılımı dosyaları nı .tibx uzantılı olarak

 /usr/local/Acronis/MobileBackupServer/acronis-local-data 

altında tutuyor..!

Net user command : Manage user accounts from command line

Cuma, Ocak 3rd, 2020

Using Net user command, administrators can manage user accounts from windows command prompt. Below are some examples on how to use this command.

Add a domain user account:

Net user /add username  newuserPassword /domain
Yazının devamını oku »

AD Rejoin

Cuma, Aralık 27th, 2019
$computer = Get-WmiObject Win32_ComputerSystem 
$computer.UnjoinDomainOrWorkGroup("AdminPW", "AdminAccount", 0)
$computer.JoinDomainOrWorkGroup("Domain", "AdminPW", "AdminAccount", $null, 3)
Restart-Computer -Force

Proxmox Update

Pazartesi, Aralık 23rd, 2019

nano /etc/apt/apt.conf.d/75pveconf

Change lines..!

Acquire::https::enterprise.proxmox.com::CaInfo "/etc/apt/pve-repo-ca-certificates.crt";
Acquire::https::enterprise.proxmox.com::Verify-Peer "false";

/etc/apt/sources.list.d/pve-enterprise.list

Need to change the line:

"deb https://enterprise.proxmox.com/debian jessie pve-enterprise"
to
"deb http://download.proxmox.com/debian jessie pve-no-subscription"

XMRig Ubuntu Build

Cuma, Aralık 20th, 2019
sudo apt-get install git build-essential cmake libuv1-dev libssl-dev libhwloc-dev
git clone https://github.com/xmrig/xmrig.git
cd xmrig && mkdir build && cd build
cmake ..
make

ATMEGA8′ e Harici HEX Flash’lamak

Pazartesi, Ekim 21st, 2019

Öncelikle Arduino’ya kartı tanıtmamız gerekiyor..

ATMEGA8
https://mcudude.github.io/MiniCor/package_MCUdude_MiniCore_index.json

Yazının devamını oku »

Türkçe AVRDUDESS

Pazartesi, Ekim 21st, 2019

AVRDude ‘un GUI’li, kullanımı kolay versiyonu…!

Türkçe’leştirmeyi ben yaptım eksikleri olabilir, sürçü lisan ettiysek affola..! , .NET Framework 2.0 SP1 veya yukarısına ihtiyaç duyar,

Yazının devamını oku »

Mac’te Gizli Dosyaları Göstermek

Pazartesi, Ekim 21st, 2019

Öncelikle Uygulamalar > Diğer > Terminal’i başlatın.

Tüm açık finder’leri kapatın..

killall Finder

Gizli klasör ve dosyaları göstermek için:

defaults write com.apple.finder AppleShowAllFiles -bool YES

Gizli klasör ve dosyaları tekrar görünmez hale getirmek için:

defaults write com.apple.finder AppleShowAllFiles -bool NO