Use this commands to fix it.
$ chcon -t execmem_exec_t '/home/mythcat/SavageSer/silverback.bin'
tutorials, tips, tricks, commands, programming, linux, windows, database, sql, python, programming language, Fedora, drawing, painting, tutorial, tutorials
$ chcon -t execmem_exec_t '/home/mythcat/SavageSer/silverback.bin'
$ cd .config/
$ cd f-spot/
$ ls
addin-db-001 photos.db
Once I found the database, I started SQLite3. See the example below:$ sqlite3 photos.db
SQLite version 3.7.2
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .tables
exports meta photo_versions rolls
jobs photo_tags photos tags
sqlite> .schema photos
CREATE TABLE photos (
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
time INTEGER NOT NULL,
base_uri STRING NOT NULL,
filename STRING NOT NULL,
description TEXT NOT NULL,
roll_id INTEGER NOT NULL,
default_version_id INTEGER NOT NULL,
rating INTEGER NULL
);
CREATE INDEX idx_photos_roll_id ON photos(roll_id);
sqlite> select * from photos;
1|1279913277|file:///home/mythcat/Photos/2010/07/23|IMG_2970.JPG||1|1|0
It is easy to use and implemented various python scripts.
netstat -ant | grep SYN_RECV | wc -l
$ notify-send "This is some text"
or$zenity --info --text "This is some text"
This will display a text balloon "This is some text".#!/usr/bin/env python
import os
import sys
import pynotify
pynotify.init("Output comand")
arg=sys.argv[1]
print arg
s = os.popen(arg).read()
n = pynotify.Notification("Output",s)
n.show()
If you wish to use a compound command, then you will need to use quotes.$python testpy.py "ls -a"
This is just a small example, you can create more complex applications.
Firefox is one of the latest versions of the Mozilla .
It is currently available in two repositories - Remi and Spot.
See the next steps if you want install Firefox 4.
First , go on super user shell.
# wget http://repos.fedorapeople.org/repos/spot/firefox4/fedora-firefox4.repo -O /etc/yum.repos.d/fedora-firefox4.repo
Now, you can install Firefox 4
# yum --enablerepo fedora-firefox4 install firefox4
That is all.
# yum search blender
Loaded plugins: langpacks, presto, refresh-packagekit
Adding en_US to language list
updates/pkgtags | 10 kB 00:00
============= Matched: blender =====================
blenderplayer.i686 : Standalone blender player
LuxRender-blender.i686 : Blender export plugin to LuxRender
blender.i686 : 3D modeling, animation, rendering and post-production
spe.noarch : Python IDE with UML,PyChecker,Debugger,GUI design,Blender & more
libpano13-tools.i686 : Tools that use the libpano13 library
yofrankie-bge.noarch : 3D Game with characters from Big Buck Bunny movie
Of course, you can use version 2.5 from the official site.
import os
import subprocess
import sys
import time
import uno
NoConnectionException = uno.getClass("com.sun.star.connection.NoConnectException")
ooffice = 'soffice "-accept=socket,host=localhost,port=8100;urp;"'
def start_OOo():
'''Starts OpenOffice.org with a listening socket.'''
# Start OpenOffice.org and report any errors that
# occur.
try:
retcode = subprocess.call(ooffice, shell=True)
if retcode < 0:
print >>sys.stderr, \
"OOo was terminated by signal", \
-retcode
elif retcode > 0:
print >>sys.stderr, \
"OOo returned", \
retcode
except OSError, e:
print >>sys.stderr, "Execution failed:", e
# Terminate this process when OOo has closed.
raise SystemExit()
started_OOo = False
if not started_OOo:
print "Starting OOo"
started_OOo = True
start_OOo()
time.sleep(3)
print "OOo started"
This will start OpenOffice 3.At Sep 02 2010 16:22:56 GMT, there are 125104 users registered 133701 machines registered My guess at the number of Linux users: Twenty-nine million
My number machine is :
<img src="image/name_of_jpeg.jpg" alt="" />
The list of file is :11.jpg,12.jpg,13.jpg,14.jpg,15.jpg
My method uses two commands: ll and awk.$ ll | awk '/jpg/ {print $9}'
11.jpg
12.jpg
13.jpg
14.jpg
15.jpg
I created one variable f1.f1=‘<img src="image‘;
We add two sed commands.
#yum install freeglut-devel
...
Dependencies Resolved
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
freeglut-devel i686 2.6.0-5.fc13 updates 112 k
Installing for dependencies:
libX11-devel i686 1.3.1-3.fc13 fedora 1.0 M
libXau-devel i686 1.0.5-1.fc12 fedora 13 k
libXdamage-devel i686 1.1.2-2.fc13 fedora 8.8 k
libXext-devel i686 1.1.2-2.fc13 updates 77 k
libXfixes-devel i686 4.0.4-2.fc13 fedora 11 k
libXxf86vm-devel i686 1.1.0-1.fc13 fedora 17 k
libdrm-devel i686 2.4.21-2.fc13 updates 64 k
libxcb-devel i686 1.5-1.fc13 fedora 139 k
mesa-libGL-devel i686 7.8.1-8.fc13 updates 486 k
mesa-libGLU-devel i686 7.8.1-8.fc13 updates 111 k
xorg-x11-proto-devel noarch 7.4-36.fc13 fedora 250 k
Transaction Summary
================================================================================
Install 12 Package(s)
Some tutorials about glut on C programming language: Glut and C tutorial