Slideshow maker on Fedora 12

Hi Guys. From last two months I am using Fedora 12 as my primary os. I want to create a slideshow which i can able to covert in DVD. I just did google and found Slide 2 Video.
“Slide 2 Video” create DVD-compatible slideshow video, flash video, or just plain vanilla MPEG video from still images. Includes a graphical user interface for assembling slides in a timeline fashion, manipulating transitions, and adding title slides and a soundtrack.

Dependencies:

Java
ImageMagick
FFMPEG

Download it from here.

Installation steps

cd /usr/local/src
wget http://downloads.sourceforge.net/project/jslideshow/jslideshow-binary/0.8/Jslideshow-bytecode0.8.tar.gz
wget http://downloads.sourceforge.net/project/jslideshow/jslideshow-src/0.8/Jslideshow0.8.tar.gz
tar zxvf Jslideshow-bytecode0.8.tar.gz
tar zxvf Jslideshow0.8.tar.gz
cp -rf /usr/local/src/Jslideshow/bin /usr/local/src/Jslideshow-bytecode0.8
cd /usr/local/src/Jslideshow-bytecode0.8

To run the application:

java -jar /usr/local/src/Jslideshow-bytecode/Jslideshow.jar

SSH Server on Windows

At my workplace most of the users use windows as their primary operating system. Windows do not have any inbuilt ssh server. Basic idea behind ssh server on windows is I can transfer files from my Linux box to user’s windows box without taking much efforts.

For the same I found MobiSSH. MobaSSH allows you to run commands and transfer files on a remote Windows PC from any operating system (GNU/Linux, Unix, HP-UX, AIX, Windows, …) through a fully secured and encrypted network connection. MobaSSH is 100% compatible with the Linux/Unix/HPUx/AIX SSH clients, but also with Putty or WinSCP on Windows.

It is very easy to install and setup.
Download it from here.

Using System Restore via Recovery Console

1. Boot your pc via WINDOWS XP BOOTABLE media
2. Choose Recovery Console Option
3. Then,

cd \
cd windows\system32\config
ren system system.bak
exit

Your maching should restart
Then again repeat Step 1 & 2
4. After that,

cd \
cd system~1\_resto~1\

You’ll see a list of restore point folders with names such as RP1, RP2 and so on. Pick the restore point you wish to use, using the folder date stamps to guide you.

Enter the commands:

cd rp360\snapshot

This takes you into the folder containing the restore point snapshot files. Copy the Registry backups so that they overwrite the existing Registry files.

COPY _Registry_machine_system C:\Windows\System32\Config\System
COPY _Registry_machine_software C:\Windows\System32\Config\Software
COPY _Registry_machine_sam C:\Windows\System32\Config\Sam
COPY _Registry_machine_security C:\Windows\System32\Config\Security
COPY _Registry_user_.default C:\Windows\System32\Config\Default

Type the command exit to close the Recovery Console and restart the PC.

Remove Viruses without installing any virus-scanner

Think a situation where your computer is very badly affected with the virus and your virus-scanning software is not doing anything, what you will do in such situation?

Engineers format their Windows in such situation. But there is another way also. Just download a superdat file from McAfee website. You have to extract the content of the dat file then run the executable files in command prompt.

Just go to Direct link

Create a new folder in c:
Rename it to scan
Place the SuperDat file into c:\scan folder
Click on Start > Run > cmd
Press enter it will open command prompt

Type there following command:

cd c:\scan
sdatXXX.exe /E

wait for a 2 minutes then run the following command

scan /ADL /ALL /SUB /CLEAN /REPORT C:\scan\virus.txt

This command will scan all drives and subdirectories and clean the infected file and also generate the report and save it in virus.txt file.

P.S. The SuperDat file generated on each day, so please download it on the day of virus scanning.
For better result do this procedure in Windows safe mode.

Basic Linux Commands

Following are the useful linux commands:
FILE COMMANDS
  • ls – directory listing
  • ls -al - formatted listing with hidden files
  • cd dir – change directory to dir
  • cd – change to home
  • pwd – show current directory
  • mkdir dir – create a directory dir
  • rm file – delete file
  • rm -r dir – delete directory dir
  • rm -f file – force remove file
  • rm -rf dir – force remove directory dir *
  • cp file1 file2 – copy file1 to file2
  • cp -r dir1 dir2 – copy dir1 to dir2; create dir2 if it doesn’t exit
  • mv file1 file2 - rename or move file1 to file2 if file2 is an existing directory, move file1 into directory file2
  • ln -s file link – create symbolic link link to file
  • touch file – create or update file
  • cat > file – places standard input into file
  • more file – output the contents of file
  • head file – output the first 10 lines of file
  • tail file – output the last 10 lines of file
  • tail -f file – output the contents of file as it grows, starting with the last 10 lines
SEARCHING
  • grep pattern files – search for pattern in files
  • grep -r pattern dir – search recursively for pattern in dir
  • command | grep pattern – search for pattern in the output of command
  • locate file – find all instances of file
PROCESS MANAGEMENT
  • ps – display your currently active proceess
  • top – display all running process
  • kill pid – kill process id pid
  • killall proc – kill all process named proc (use with extreme caution)
  • bg – lists stopped or backgrpund jobs; resume a stopped job in the backgrpund
  • fg – brings the most recent job to foreground
  • fg n – brings job n to the foreground
SYSTEM INFO
  • date - show the current date and time
  • cal – show this month’s calender
  • uptime – show current uptime
  • w – display who is online
  • whoami – who you are logged in as
  • finger user – display information about user
  • uname -a – show kernel information
  • cat /proc/cpuinfo – cpu information
  • cat /proc/meminfo – memory information
  • man command – show the manual for command
  • df - show disk usage
  • du – show directory space usage
  • free – show memory and swap usage
  • whereis app – show possible location of app
  • which app – show which app will be run by default
COMPRESSION
  • tar cf file.tar files - create a tar named file.tar containing files
  • tar xf files.tar – extract the files from file.tar
  • tar czf file.tar.gz files – create a tar with Gzip compression
  • tar xzf file.tar.gz – extract a tar using Gzip
  • tar cjf file.tar.bz2 – create a tar with Bzip2 compression
  • tar xjf file.tar.bz2 – extract a tar using Bzip2
  • gzip file – compress file and renamed it to file.gz
  • gzip -d file.gz – decompress file.gz back to file
NETWORK
  • ping host – ping host and output result
  • whois domain – get whois information for domain
  • dig domain – get DNS information for domain
  • dig -x host – reverse lookup host
  • wget file – download file
  • wget -c file – continue a stopped download
Page 18 of 20« First...10«151617181920»
rss twitter facbook

Categories

Archives