Archive | GNU/Linux

UBOS 12 Beta duyuruldu

Hızlı bir şekilde ağ hizmetleri kurmak için araçlar sağlayan USA kökenli ve Arch Linux tabanlı bir sunucu dağıtımı olan UBOS‘un 12 sürümünün betası duyuruldu. Bunun bir test sürümü olduğunun unutulmaması ve yalnızca test etmek amacıyla kullanılması gerektiği hatırlatılırken, test eden kullanıcıların tespit ettikleri hataları rapor etmeleri rica edildi. Nextcloud, wiki ve WordPress gibi hizmetleri komut satırı ile kurmayı mümkün kılan UBOS; tüm hizmetleri yedeklemeyi ve onları geri yüklemeyi de mümkün kılıyor. UBOS 12 Beta hakkında ayrıntılı bilgi edinmek için sürüm notlarını inceleyebilirsiniz.

Continue Reading →

UBOS 12 Beta edinmek için aşağıdaki linklerden yararlanabilirsiniz.

 

0

Manjaro 17.0.6 duyuruldu

Manjaro’nun yeni 17.0.6 sürümü, Bernhard Landauer tarafından duyuruldu. En yeni kararlı paket güncellemeleriyle yeni bir kurulum medyası hazırlandığını söyleyen Landauer; tüm resmi sürümlerinin (Xfce, KDE ve Gnome) güncellendiğini, topluluk sürümleri olarak i3 ve Deepin masaüstü ortamı 15.5’i içeren Manjaro-Deepin versiyonlarının yakın bir zamanda çıkarılacığını belirtti. Manjaro 17.0.6 hakkında ayrıntılı bilgi edinmek için sürüm duyurusunu inceleyebilirsiniz.

Continue Reading →

Manjaro 17.0.6 edinmek için aşağıdaki linklerden yararlanabilirsiniz.

0

SystemRescueCd 5.1.2 duyuruldu

Sistem tamiri için tasarlanan Gentoo tabanlı, Fransız kökenli SystemRescueCd‘nin 5.1.2 sürümü duyuruldu. Sistemin kararlı Linux çekirdeği LTS 4.9.60’a dayalı olarak geldiği bildirilirken, UEFI Önyükleme için Grub 2.02 kullanımının tercih edildiği belirtildi. Disk araçları güncellenmiş olarak gelen sistemde, sistem çekirdeği; ext2, ext3, ext4, ReiserFS, Reiser4FS, btrfs, XFS, JFS, VFAT, NTFS, ISO9660 gibi günümüzün en önemli dosya sistemlerinin tümünü ve Samba ve NFS gibi ağ dosya sistemlerini destekliyor. Gentoo tabanlı önyüklenebilir bir CD-ROM veya USB sistem olan SystemRescueCd ile yönetim görevlerini kolaylıkla yürütmek ve sabit disk bölümlerini düzenlemek mümkündür. SystemRescueCd 5.1.2 hakkında ayrıntılı bilgi edinmek için değişiklikler sayfasını inceleyebilirsiniz.

Continue Reading →

SystemRescueCd 5.1.2 edinmek için aşağıdaki linklerden yararlanabilirsiniz.

0

Black Lab Enterprise Linux 11.5 Beta 3 duyuruldu

Ubuntu tabanlı, kullanıcı dostu masaüstü ve sunucu versiyonlarıyla kullanıma sunulan GNU/Linux dağıtımı Black Lab Linux’un (eski adıyla OS4 OpenLinux) 11.5 sürümünün 3. betası, Roberto J. Dohnert tarafından duyuruldu. Black Lab Enterprise Linux 11.5 Beta 3’ü duyurmaktan memnuniyet duyduklarını söyleyen Dohnert; bu sürümde, sistemde birkaç geliştirme yaptıklarını belirtti ve sürücü yetenekleri artırılan sistemin 4.10.0-38 Linux çekirdeği üzerine yapılandırılarak daha iyi bir performans elde edildiğini ifade etti. Xorg 1.18’e dayalı olarak gelen sistem; LibreOffice 5.4 ve Chromium Browser 62 içeriyor ve Thunderbird, Ice SSB, Calligra, Skype 8.9, Nitroshare, Samba4, Synergy, Audacious gibi popüler yazılımların en yeni sürümleriyle kullanıma sunuluyor. Kullanıcılara KDE Plasma 5, Xfce, LXDE ve MATE masaüstü ortamlarını deneyimleme olanağı sağlayan sistem; XFS, JFS ve Btrfs dosya sistemlerini destekliyor ve ses düzenleme, 3D render ve video düzenleme araçları içeriyor. Black Lab Enterprise Linux 11.5 Beta 3 hakkında daha ayrıntılı bilgi edinmek için sürüm duyurusunu inceleyebilirsiniz.

Continue Reading →

Black Lab Enterprise Linux 11.5 Beta 3 edinmek için aşağıdaki linklerden yararlanabilirsiniz.

0

Main Linux Commands Easy Guide

In the previous post, we discussed how to install Linux, now we are going to talk about the most powerful features in Linux which is Linux commands or shell commands. For the whole documentation of Linux Commands, you can check Linux Documentation. The power of Linux is in the power of commands that you can use. I’m going to talk about the main Linux commands with their main parameters that you might use daily.

 

Continue Reading →

ls Command

List file and folders of the current directory.

Parameters

–l

to list the content as a detailed list.

-a

Display all files (hidden + non-hidden).

You can combine parameters like this:

ls -la

linux ls command

cd Command

Change directory from the current directory to another one.

cd /home

Will go to home directory

linux cd command

cp Command

Copy the source to target.

Parameters

-i

Interactive mode means wait for the confirmation if there are files on the target will be overwritten.

-r

Recursive copy means include subdirectories if they found.

Example

cp –ir sourcedir targetdir

linux cp command

mv Command

Move the source to target and remove the source.

Parameters

-i

Interactive mode means wait for the confirmation if there are files on the target will be overwritten.

Example

mv –i sourceFile targetFile

linux mv command

rm Command

Delete file or directory and you must use –r in case you want to delete a directory.

Parameters

-r

Recursive delete means delete all subdirectories if found.

-i

Interactive means wait till confirmation

linux rm command

mkdir Command

Create a new directory.

mkdir newDir

linux mkdir command

rmdir Command

Delete a directory

linux rmdir command

chown Command

Change the owner of a file or directory.

Parameters:

-R

Capital R here means to change ownership of all subdirectories if found and you must use this parameter if you use the command against a directory.

chown –R root:root myDir

linux chown command

chmod Command

Change the permission of a file or directory.

Parameters

The mode which consists of 3 parts, owner, group, and others means what will be the permissions for these modes, and you must specify them.

The permission is one of the followings:

Read =4

Write = 2

Execute =1

Every permission represented by a number as shown and you can combine permissions.

Example

chmod 755 myfile

That means set permission for the file named myfile as follows:

owner: set it to 7 which means 4+2+1 means read+write+execute.

group: set it to 5 which means 4+1 means read+execute.

other: set it to 5 which means 4+1 means read+execute.

Note: execute for a folder permission means opening it.

linux chmod command

locate Command

To find a file in your system, the locate command will search the system for the pattern you provide.

locate myfile

linux locate command

updatedb Command

updates the database used by the locate command.

date Command

Simply prints today’s date. Just type date on the shell.

tar Command

Combines several files into archive and compression if you want.

Parameters

-c

Create new archive.

-z

Compress the archive using gzip package.

-j

Compress the archive using bzip2 package.

-v

Verbose mode means show the processed files.

-f

Write the output to a file and not to screen.

-x

Unpack files from archive.

Example

tar –czvf myfiles.tar.gz myfiles

linux tar command create

This command will pack and compress all files in folder myfiles to a compressed archive named myfiles.tar.gz.

tar-xzvf myfiels.tar.gz

linux tar command extract

This command will decompress the archive.

cat Command

Display file content to screen without limits.

Example

cat myfile.txt

linux cat command

less Command

Displays file content with scroll screen so you can navigate between pages using PgUp, PgDn, Home, and End.

less myfile

grep Command

Searches for a string in the specified files and displays which line contains the matched string.

Parameters

-R

Recursive search inside subdirectories if found.

-i

Insensitive search and ignore case.

-l

Display file name, not the text lines.

Example

grep –Ril mystring /home

linux grep command

passwd Command

Used to change your user password.

linux passwd command

du Command

Calculates the disk usage of a file or a directory.

Parameters

-h

Display human readable form.

-s

Summarize the output total size.

Example

du –hs /home

linux du command

reboot Command

Reboot the system immediately. Just type reboot.

halt Command

Shuts down the system, but make sure to close all of your files to avoid data loss.

That was just some of the main Linux commands.

Notice that, if you forget any command parameters,  just type the command with – -help as a parameter and it will list the used parameters so you don’t have to remember all those parameters at the beginning.

cat --help

likegeeks.com

0