Source

1.エラー現象

# rpm -ivh xe-cli-6.1.0-59235p.i686.rpm
error: Failed dependencies:
libc.so.6 is needed by xapi ...

Source

サーバー側設定
1.nfs-utilsとrpcbindのインストール
yum install nfs-utils rpcbind

2.自動起動の設定
chkconfig nfs on
chk ...

Source

方法1

# yum install vim-*

Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile

Windows10

ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード
更新内容:
Added support for Drag & Drop

MariaDB

環境
MariaDB 10.6.4

書式
TRUNCATE( 数値,桁数 )
TRUNCATE関数を利用して、指定少数桁数で切り捨てを行います。

使用例
1.指定した1桁数で切り ...

Linux

書式
行数dd

操作方法
カーソルの行から3行を削除する場合、「3dd」を入力します。

Android

ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード
SyncDroidはAndroidスマートフォンのデータをバッグアップ&復元ができるソフトです。

Security

ダウンロード:
softpediaサイトからダウンロード
majorgeeksサイトからダウンロード

更新内容:
Enhanced detections are those that have be ...

CSS

書式
タイプセレクタ:not(適用しないセレクタ1):not(適用しないセレクタ2)
使用例

<style>/*セレクタ:not(適用しないセレクタ)*/div:not(.tB):not(.tD) { ...

JavaScript

書式
arr.unshift(element1])
unshift() メソッドは、配列の最初に 1 つ以上の要素を追加し、新しい配列の長さを返します。
使用例

let cft = console.log ...

Windows10

ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード
更新内容:
Bug-Fix in the DesktopOK List–View!

MariaDB

環境
MariaDB 10.6.4

書式
@@GLOBAL.sql_mode
「@@GLOBAL.sql_mode」を利用して、現在のSQLモードを確認します。

使用例

Maria ...

Mac OS X

ダウンロード:
提供元サイトからダウンロード

動画:

Mac OS X

ダウンロード:
提供元サイトからダウンロード

更新内容:
• Compatible with iOS 7 and all iOS devices
• Added iFunBox Classic fo ...

Linux

書式
行頭:
任意文字:
いずれか1文字
行末:

使用例
# cat test02.txt
ebce
ebcfb
babfb
eae
eb.e ...

JavaScript

説明
加算演算子 (+) は、数値オペランドまたは文字列連結の合計を生成します。

使用例

console.log(4 + 5);console.log(6 + true);console.log('test ...

shellscript

サンプルコード
#!/bin/bash

loguser=$(whoami)

echo $loguser

Python

サンプル
i = 4
print isinstance(i, int)

結果
True