Меню Рубрики

Рубрика «Linux»

Linux csv to xls

Convert a CSV file to a XLS file on the linux command line? [closed] Want to improve this question? Update the question so it’s on-topic for Server Fault. Closed 5 years ago . I’m using Debian Linux and I want to convert a CSV file to an Excel XLS Spreadsheet file. The catdoc package includes …

Linux crusader kings 2

Crusader Kings II вышел для Linux лень делать новость. и похоже, X3: Reunion тоже подтянулся. Мне просто интересно, в связи с грядущим игровым бумом превратится ли линупс в решето С точки зрения юзерспейса линукс никогда не переставал быть решетом. и рассадник троянов, замаскированных под кряки? Что то я не думаю, что игры парадоксов сильно пересекаются …

Linux crossover как пользоваться

Linux и Windows: помощь админам и пользователям Администрируем и настраиваем Windows, Linux. Устанавливаем Windows приложение в Linux используя Crossover Переход с Windows на Linux часто сопровождается головной болью и волнением. Люди обычно хотят получить в Linux те же программы с тем же функционалом, который у них был в Windows. Конечно, в Linux есть большое количество …

Linux cross compile kernel

Linux Kernel Cross Compilation Introduction There are several reasons to cross-compile the Linux kernel: Compiling on a native CPU and hardware requires a wide range of devices, which is not so practical. Furthermore, the actual hardware is often not suitable for the workload of kernel compilation due to a slow CPU, small memory, etc. Hardware …

Linux create new group

How to Create Groups in Linux (groupadd Command) In Linux, groups are used to organize and administer user accounts. The primary purpose of groups is to define a set of privileges such as reading, writing, or executing permission for a given resource that can be shared among the users within the group. In this article, …

Linux create file permissions

Linux file default permissions I just set up a apache server on my Raspberry pi. To make the development easier I shared the /var/www/html folder with samba. I’m able to create new files from my computer in the Pi folder, but they have the following permission : -rwxrw—- 1 pi pi 52 juin 10 17:54 …

Linux create archive zip

How to Create and Extract Zip Files to Specific Directory in Linux In one of our several articles about the tar command, we showed you how to extract tar files to a specific or different directory in Linux. This short guide explains to you how to extract/unzip .zip archive files to a specific or different …

Linux cr2 to jpg

How to convert CR2 to JPG or PNG? I need to convert a lot of CR2 photos to either JPG or PNG, no editing. How to do this? 10 Answers 10 Ufraw you can convert .cr2 to .jpeg by ufraw. Right click on the file and select open with ufraw . ** You can also …

Linux count lines in file

count lines in a file I’m sure there are many ways to do this: how can I count the number of lines in a text file? 6 Answers 6 The standard way is with wc , which takes arguments to specify what it should count (bytes, chars, words, etc.); -l is for lines: As Michael …

Linux copy disk to disk

Linux Copy One Hard Disk to Another Using dd Command Q. How can I copy one hard disk to another using dd command? A. dd command can copy disk in raw format. It will copy partition table and bootloader and all partitions within this disk. For example, you can copy /dev/sda to /dev/sdb (same size) …