Review new and existing Hardware and Software Technologies and Products, its updates and features.
Review Features of Products like Mobile Phone and Computers.
Update on the Technologies in Agriculture domain.
Update on IT and Software domain - Windows, Linux, Programming and Cloud.
Review of consumer products.
CeLL
Install OpenClaw With Ollama on Raspberry Pi 5 | Zero Cost Local AI | Offline AI | ClawdBot, MoltBot
https://youtu.be/IwKCk5ycpV0
############## Install Openclaw ##############
1)
Install Prerequisites
Inside Ubuntu, update your packages and install the necessary build tools and Node.js:
$ sudo apt update && sudo apt upgrade -y
$ sudo apt install -y curl git build-essential
2)
Install Node.js 22+:
$ curl -fsSL deb.nodesource.com/setup_22.x | sudo bash
$ sudo apt install -y nodejs
3)
Install OpenClaw
You can install OpenClaw globally using npm:
$ sudo npm install -g openclaw@latest
sudo npm install -g openclaw@2026.2.26
4)
Configuration and Launch
Onboarding: Start the setup wizard to connect your AI provider (e.g., Anthropic, OpenAI, or Z.AI):
$ openclaw onboard --install-daemon
5)
Start the Gateway: Launch the background service after configuration:
$ openclaw gateway --verbose
openclaw gateway status
6)
http://localhost:18789
http://192.168.1.7:18789
############## Install Ollama ##############
1)
apt install zstd
2)
curl -fsSL ollama.com/install.sh | sh
3)
ollama --version
#status
sudo systemctl status ollama
#log
journalctl -u ollama -f
4)
ollama list
5)
#Integrate Openclaw and Ollama
$ ollama launch openclaw
or
$ ollama launch openclaw --model <ollama model name>
6)
#Intergrate with telegram
$ openclaw config
7)
#Access Dashboard
$ sudo openclaw dashboard
cat /home/pi5/.openclaw/openclaw.json
3 weeks ago | [YT] | 5
View 0 replies
CeLL
Install OpenClaw With Ollama on Android Phone | Setup & Run Local AI | Zero Cost | ClawdBot, MoltBot
https://youtu.be/yug4rQUPWew
############## Install Ubuntu on Android ##############
1)
Download termux
f-droid.org/packages/com.termux/
2)
Open Termux and run:
$ pkg update && pkg upgrade -y (Update repositories)
$ termux-setup-storage (Grant file access)
3)
Install Ubuntu
Use the following commands to install the proot-distro utility and then the Ubuntu image:
$ pkg install proot-distro -y
$ proot-distro install ubuntu
4)
Start Ubuntu
To enter your new Ubuntu environment, use:
$ proot-distro login ubuntu
5)
Once inside, you can run standard Linux commands. It is recommended to immediately update the internal Ubuntu packages:
$ apt update && apt upgrade -y
cat /root/.openclaw/openclaw.json
############## Install Openclaw ##############
1)
Enter Your Ubuntu Environment
Launch Termux and log in to your Ubuntu PRoot distribution:
$ proot-distro login ubuntu
2)
Install Prerequisites
Inside Ubuntu, update your packages and install the necessary build tools and Node.js:
$ apt update && apt upgrade -y
$ apt install -y curl git build-essential
3)
Install Node.js 22+:
$ curl -fsSL deb.nodesource.com/setup_22.x | bash -
$ apt install -y nodejs
4)
Install OpenClaw
You can install OpenClaw globally using npm:
$ npm install -g openclaw@latest
npm install -g openclaw@2026.2.26
5)
Apply the Android "Bionic Bypass"
To prevent potential network crashes on Android caused by kernel differences, create a bypass script. This involves creating a directory, creating the bypass file with specific JavaScript code, and adding an export command to your bash profile:
cat <<EOF > /root/hijack.js
const os = require('os');
os.networkInterfaces = () => ({});
EOF
echo 'export NODE_OPTIONS="-r /root/hijack.js"' >> ~/.bashrc
source ~/.bashrc
6)
Configuration and Launch
Onboarding: Start the setup wizard to connect your AI provider (e.g., Anthropic, OpenAI, or Z.AI):
$ openclaw onboard --install-daemon
7)
Start the Gateway: Launch the background service after configuration:
$ openclaw gateway --verbose
openclaw gateway status
############## Install Ollama ##############
1)
apt install zstd
2)
curl -fsSL ollama.com/install.sh | sh
3)
ollama --version
#start ollama server
ollama serve
4)
ollama list
5)
#Integrate Openclaw and Ollama
$ ollama launch openclaw
or
$ ollama launch openclaw --model <ollama model name>
6)
#Intergrate with telegram
$ openclaw config
7)
#Access Dashboard
$ sudo openclaw dashboard
3 weeks ago (edited) | [YT] | 6
View 0 replies
CeLL
Install & Setup OpenClaw on Ubuntu Linux Using Docker Container | Secure Setup | ClawdBot, MoltBot
1)
$ sudo su
2)
$ apt update && apt upgrade -y
3)
$ curl -fsSL get.docker.com/ | sh
4)
$ git clone --branch v2026.2.19 github.com/openclaw/openclaw.git
$ cd openclaw
5)
export OPENCLAW_IMAGE="alpine/openclaw:latest"
#Create .env file under openclaw cloned source code folder
$ vi .env
OPENCLAW_CONFIG_DIR=/root/.openclaw
OPENCLAW_WORKSPACE_DIR=/root/.openclaw/workspace
6)
docker compose up -d
7)
ls "$HOME/.openclaw"
chown -R 1000:1000 "$HOME/.openclaw"
8)
docker compose run --rm openclaw-gateway node dist/index.js onboard
9)
docker compose run --rm openclaw-cli pairing approve telegram XXXXXX
10)
#Access from outside via http
nano /root/.openclaw/openclaw.json
"bind": "lan",
"controlUi": {
"allowInsecureAuth": true
},
#restart gateway
docker compose restart openclaw-gateway
11)
Access dashboard
http://<yout IP>:18789/
1 month ago (edited) | [YT] | 2
View 0 replies
CeLL
How To Install and Setup OpenClaw With Ollama + Telegram | Zero Cost Local AI Assistant | ClawdBot, MoltBot
$ curl -fsSL ollama.com/install.sh | sh
$ ollama list
$ apt install -y nodejs
$ npm install -g openclaw@latest
$ openclaw onboard
$ ss -tulpn | grep 18789
$ ollama launch openclaw
$ cat ~/.openclaw/openclaw.json
$ Open in Browser http://<yourIP Address>:18789
1 month ago | [YT] | 4
View 0 replies
CeLL
How To Install and Setup OpenClaw With Docker | OpenClaw AI Docker Setup | Clawdbot, Moltbot
1)
$ sudo su
2)
$ apt update && apt upgrade -y
3)
$ curl -fsSL get.docker.com/ | sh
4)
$ git clone --branch v2026.2.19 github.com/openclaw/openclaw.git
$ cd openclaw
$ ./docker-setup.sh
#Fix known issue (permission error), run in server
#edit docker-setup.sh
$ nano docker-setup.sh
#add below line above docker compose onboard
$ chown -R 1000:1000 "$HOME/.openclaw"
$ ./docker-setup.sh
5)
docker compose run --rm openclaw-cli pairing approve telegram 123456
1 month ago (edited) | [YT] | 3
View 0 replies
CeLL
Install & Setup Ollama Local AI Agent on Android Phone with Free Models using Termux
1)
Download termux
f-droid.org/packages/com.termux/
2)
Open Termux and run:
$ pkg update && pkg upgrade -y (Update repositories)
$ termux-setup-storage (Grant file access)
3)
Install Ollama
$ pkg install ollama
4)
Start the Server: Ollama requires a background server to function.
$ ollama serve
5)
Run a Model: Open a new session in Termux (swipe from the left and tap "New Session") and run your desired model:
$ ln -s $PREFIX/bin/ollama $PREFIX/bin/serve
$ ollama run llama3.2:1b
1 month ago (edited) | [YT] | 6
View 0 replies
CeLL
How to Install OpenClaw on Android Phone with Free Models,Telegram Channel
https://youtu.be/imnYBzfwhqY
############## Install Ubuntu ##############
1)
Download termux
f-droid.org/packages/com.termux/
2)
Open Termux and run:
$ pkg update && pkg upgrade -y (Update repositories)
$ termux-setup-storage (Grant file access)
3)
Install Ubuntu
Use the following commands to install the proot-distro utility and then the Ubuntu image:
$ pkg install proot-distro -y
$ proot-distro install ubuntu
4)
Start Ubuntu
To enter your new Ubuntu environment, use:
$ proot-distro login ubuntu
5)
Once inside, you can run standard Linux commands. It is recommended to immediately update the internal Ubuntu packages:
$ apt update && apt upgrade -y
############## Install Openclaw ##############
1)
Enter Your Ubuntu Environment
Launch Termux and log in to your Ubuntu PRoot distribution:
$ proot-distro login ubuntu
2)
Install Prerequisites
Inside Ubuntu, update your packages and install the necessary build tools and Node.js:
$ apt update && apt upgrade -y
$ apt install -y curl git build-essential
3)
Install Node.js 22+:
$ curl -fsSL deb.nodesource.com/setup_22.x | bash -
$ apt install -y nodejs
4)
Install OpenClaw
You can install OpenClaw globally using npm:
$ npm install -g openclaw@latest
5)
Apply the Android "Bionic Bypass"
To prevent potential network crashes on Android caused by kernel differences, create a bypass script. This involves creating a directory, creating the bypass file with specific JavaScript code, and adding an export command to your bash profile:
cat <<EOF > /root/hijack.js
const os = require('os');
os.networkInterfaces = () => ({});
EOF
echo 'export NODE_OPTIONS="-r /root/hijack.js"' >> ~/.bashrc
source ~/.bashrc
6)
Configuration and Launch
Onboarding: Start the setup wizard to connect your AI provider (e.g., Anthropic, OpenAI, or Z.AI):
$ openclaw onboard
7)
Start the Gateway: Launch the background service after configuration:
$ openclaw gateway --verbose
8)
http://localhost:18789
1 month ago | [YT] | 12
View 4 replies
CeLL
iPhone 17 Will be Delivered to Customer Starting From September 19
6 months ago | [YT] | 4
View 0 replies
CeLL
iPhone 17 Pre-Order Starts from Friday
6 months ago | [YT] | 5
View 0 replies
CeLL
iPhone 17 Pro & 17 Pro Max Price
6 months ago | [YT] | 2
View 0 replies
Load more