Linux @ 28 April 2012,
Comments Off on My first experiences with Ubuntu 12.04
I recently upgraded to Precise on my Laptop and my first experience was not so good. X session couldn’t started and I tried to find solutions for it. Firstly I chrooted on my ubuntu with a live USB. Then I realized that although xsession was not starting my wi-fi connection was available so with a hit at Ctrl+Alt+F1 I fell down to the terminal screen. I updated-upgraded my ubuntu but that was aslo not a solution. Then I found some command-line scripts from Ask-Ubuntu. When you type
All desktop managers are disabled and you are forwarded to the login screen. Before I had installed gnome-fallback with
sudo apt-get install gnome-session-fallback |
sudo apt-get install gnome-session-fallback
From the login screen I chose Ubuntu-2D. My problem is that usual Ubuntu session is not working
sudo apt-get install gnome-session-fallback
iPhone 4S 16GB Beyaz
Telefon hiç açılmamış jelatinli kutusundaydı. Amerika’dan yeni gelmişti. Beyazdır. Simfree yani istediğiniz hatla çalışır vaziyettedir.
1 yıl uluslararası garantisi vardır.
Güvenlik nedeni ile iade kabul etmeyeceğimi söylediğim halde telefonu kullanmayı bilmeyen bir kişi şarjı çabuk bitiyor iddiası ile ille de geri vermek istedi ben de geri aldım, yani telefon artık ikinci el olmuş oldu ve tekrar ilan açıyorum. Ben de kullandım ve belirtilen şikayet ile alakası yok telefonun. Takas ve pazarlık düşünmüyorum. Teşekkürler.
İyi alışverişler.
İlanı inceleyenlere önemli not : Bu siteden alışveriş yapmaya niyetliyseniz eğer her türlü riski göze alacaksınız “Ben garantili isterim” diyen varsa eğer mesaj atsın 2500 TL’den GET ile garantili ve faturalı telefon da satabilirim.
iPhone kullanmayı bilmeyenlere önemli not : Telefonun edge, 3G ve GPS’ini açıp da telefonu haldır huldur kullanırsanız şarjı tabi ki çabuk biter. Bunlar tam olarak telefon değil ki, bunlar akıllı telefon.
Şimdi de gelelim mesaj atanların cevaplarına :
1- Arkadaş bu fiyata bu kadar telefon olur mu? biraz kafayı çalıştırın, Bir de abi son fiyat mı, pazarlık var mı diye soranlar var, bunlara da üstüne para vermeyi düşünüyorum.
2- Telefoncu arkadaşlar koskoca simfree yazısını görmüyor, bir de “sen bana söyle ben anlarım ben telefoncuyum” diyor, memnun oldum ben de saksıyım!
3- Bir de kapıda ödemeciler var, arkadaşım gidin kendinize başka bir uğraş bulun. Bunu okuyan arkadaşlar da kapıda ödeme ile hiç uğraşmasın en basitinden açsın GET’ini alan adam her türlü alır. 5-10 liranın hesabını yapıyorlar.
use the command mkisofs as:
mkisofs -o /tmp/cd.iso /tmp/directory/
I used the info supplied by Felipe Xavier, A.K.A. FXtrEm
CUE/BIN to ISO: Open a terminal, go to the folder that the CUE/BIN file is located and type:
bchunk filename.bin filename.cue filename.iso
NRG to ISO: Open a terminal, go to the folder that the NRG file is located and type:
nrg2iso filename.nrg filename.iso
IMG to ISO: Open a terminal, go to the folder that the IMG file is located and type:
ccd2iso filename.img filename.iso
MDF to ISO: Open a terminal, go to the folder that the MDF file is located and type:
mdf2iso filename.mdf filename.iso
Nautilus scripts are really making use of Gnome easier. When I am away from my scripts I feel alone :). Do not forget to mark the files as executable.
- ToMp3 Script : For this script install pacpl
#!/bin/bash
cd $NAUTILUS_SCRIPT_CURRENT_URI
pacpl --to mp3 "$*" |
#!/bin/bash
cd $NAUTILUS_SCRIPT_CURRENT_URI
pacpl --to mp3 "$*"
for uri in $NAUTILUS_SCRIPT_SELECTED_URIS; do
gksudo "gnome-open $uri" &
done |
for uri in $NAUTILUS_SCRIPT_SELECTED_URIS; do
gksudo "gnome-open $uri" &
done
#!/bin/bash
# attach multiple files thunderbird.sh
#thunderbird -compose "attachment='file:////home/will/newfile,file:////home/will/newfile2'"
#-compose subject=Emailing %m,attachment=%u
if [ $* = "" ] ;then echo "no files given" ; exit 1 ;fi &>/dev/null
Y=`echo file://$* | sed 's/ \//,file:\/\/\//g' | sed 's/ /^^/g'` #this sed replaces all spaces with a ^^.
X=`echo $Y | sed 's/\^^/ /g'` #this sed replaces all ^^'s with a space
Z=`echo $Y | sed 's/,file:\/\// /g'`
ii=1 #that sed (below)replaces all ^^'s with a space
BODY=$(for file in $Z ;do C=`basename "$(echo $file | sed 's/\^^/ /g')"` ; echo ; echo -n "$ii) $C" ; ii=$(($ii+1)) ; done)
thunderbird -compose "attachment='$X'",body="P.S. - Attached Files: $BODY",subject="attached files" |
#!/bin/bash
# attach multiple files thunderbird.sh
#thunderbird -compose "attachment='file:////home/will/newfile,file:////home/will/newfile2'"
#-compose subject=Emailing %m,attachment=%u
if [ $* = "" ] ;then echo "no files given" ; exit 1 ;fi &>/dev/null
Y=`echo file://$* | sed 's/ \//,file:\/\/\//g' | sed 's/ /^^/g'` #this sed replaces all spaces with a ^^.
X=`echo $Y | sed 's/\^^/ /g'` #this sed replaces all ^^'s with a space
Z=`echo $Y | sed 's/,file:\/\// /g'`
ii=1 #that sed (below)replaces all ^^'s with a space
BODY=$(for file in $Z ;do C=`basename "$(echo $file | sed 's/\^^/ /g')"` ; echo ; echo -n "$ii) $C" ; ii=$(($ii+1)) ; done)
thunderbird -compose "attachment='$X'",body="P.S. - Attached Files: $BODY",subject="attached files"
- Mount (.iso files). As a side note “open with archive mounter” option is a better choice
#!/bin/bash
#
# nautilus-mount-iso
gksudo -u root -k /bin/echo "got r00t?"
sudo mkdir /media/"$*"
if sudo mount -o loop -t iso9660 "$*" /media/"$*"
then
if zenity --question --title "ISO Mounter" --text "$* Successfully Mounted.
Open Volume?"
then
nautilus /media/"$*" --no-desktop
fi
exit 0
else
sudo rmdir /media/"$*"
zenity --error --title "ISO Mounter" --text "Cannot mount $*!"
exit 1
fi |
#!/bin/bash
#
# nautilus-mount-iso
gksudo -u root -k /bin/echo "got r00t?"
sudo mkdir /media/"$*"
if sudo mount -o loop -t iso9660 "$*" /media/"$*"
then
if zenity --question --title "ISO Mounter" --text "$* Successfully Mounted.
Open Volume?"
then
nautilus /media/"$*" --no-desktop
fi
exit 0
else
sudo rmdir /media/"$*"
zenity --error --title "ISO Mounter" --text "Cannot mount $*!"
exit 1
fi
#!/bin/bash
#
for I in "$*"
do
foo=`gksudo -u root -k -m "enter your password for root terminal
access" /bin/echo "got r00t?"`
sudo umount "$I" && zenity --info --text "Successfully unmounted /media/$I/" && sudo rmdir "/media/$I/"
done
done
exit0 |
#!/bin/bash
#
for I in "$*"
do
foo=`gksudo -u root -k -m "enter your password for root terminal
access" /bin/echo "got r00t?"`
sudo umount "$I" && zenity --info --text "Successfully unmounted /media/$I/" && sudo rmdir "/media/$I/"
done
done
exit0
Rise against to new boot technology of Microsoft. Please read and be aware what is going on. Windows (Microsoft) is not a shit but forcing people do something is apperantly shit.
sometimes in the past I found a starter for ISE, but what is the use of it I can not remember
export DISPLAY=":0"
export PRINTER="lj4l"
export LC_ALL=
export LANG=
export LANGUAGE=
export LD_PRELOAD="/home/eneserdin/Xilinx92i/bin/lin/libtcl8.4.so"
source /home/eneserdin/Xilinx92i/settings.sh
/home/eneserdin/Xilinx92i/bin/lin/ise |
export DISPLAY=":0"
export PRINTER="lj4l"
export LC_ALL=
export LANG=
export LANGUAGE=
export LD_PRELOAD="/home/eneserdin/Xilinx92i/bin/lin/libtcl8.4.so"
source /home/eneserdin/Xilinx92i/settings.sh
/home/eneserdin/Xilinx92i/bin/lin/ise
Elimde Gevey sim kartlar var gittigidiyor.com veya sahibinden.com üzerinden satabilirim. Benle irtibata geçmeniz gerekir. Baseband 4.10.01 ve altı destekleniyor.
Bir arkadaş irtibata geçti ve hepsini gönderdim. Hayrını görsün.